38 lines
883 B
Python
38 lines
883 B
Python
name = "linux"
|
|
version = "7.0.9"
|
|
revision = 1
|
|
description = "Linux kernel"
|
|
license = "GPL-2.0-only"
|
|
|
|
source = {
|
|
"url": f"https://cdn.kernel.org/pub/linux/kernel/v7.x/linux-{version}.tar.xz",
|
|
"sha256": "ac07acdf76cf4621cc5187a2670270a1a699533c8a6b225e4878c416ad83f1c4",
|
|
"strip_components": 1,
|
|
}
|
|
|
|
host_deps = ["binutils", "gcc"]
|
|
|
|
def _make_args(ctx, *args):
|
|
result = [
|
|
"make",
|
|
"-C", ctx.source_dir,
|
|
"O=" + ctx.build_dir,
|
|
"ARCH=x86_64",
|
|
"CROSS_COMPILE=" + OPTIONS.target_triple + "-",
|
|
"-j" + str(ctx.jobs),
|
|
]
|
|
result.extend(args)
|
|
return result
|
|
|
|
def configure(ctx):
|
|
ctx.run(_make_args(ctx, "defconfig"))
|
|
|
|
def build(ctx):
|
|
ctx.run(_make_args(ctx, "bzImage"))
|
|
|
|
def install(ctx, pkg):
|
|
ctx.install(
|
|
ctx.build_dir + "/arch/x86/boot/bzImage",
|
|
pkg.destdir + "/boot/vmlinuz-" + version,
|
|
)
|