blob: 8b633464b59cdbeff6c66c8f7f1de9e4ebc85ee0 (
plain)
1
2
3
4
5
6
7
8
9
|
version ?= 5.16.9
host ?= $(shell hostname)
url = https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-$(version).tar.xz
configure_cmd = cp ../config-$(host) .config
build_cmd = make -j4 Image modules
install_cmd = sudo make modules_install && scp arch/arm64/boot/Image m1:.vm/$(host)
include ../build.mk
|