1baf1a17fb
The kernel fork (submodule/kernel bd1b251f) now provides a proper
'install' target honoring DESTDIR, so the recipe no longer hand-rolls
the staging copy. Fork also gains post-merge compile fixes (import
dedup + UnmapVec).
17 lines
464 B
TOML
17 lines
464 B
TOML
[package]
|
|
name = "kernel"
|
|
version = "0.1.0"
|
|
|
|
# Kernel is built from the local fork at local/sources/kernel/.
|
|
# The fork is synced to upstream and has all Red Bear changes applied directly.
|
|
# Old patches are preserved in local/patches/kernel/ for reference only.
|
|
[source]
|
|
path = "../../../local/sources/kernel"
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
make -f ${COOKBOOK_SOURCE}/Makefile
|
|
make -f ${COOKBOOK_SOURCE}/Makefile install DESTDIR="${COOKBOOK_STAGE}"
|
|
"""
|