mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 04:57:55 +00:00
36 lines
992 B
Plaintext
36 lines
992 B
Plaintext
modules += linux
|
|
|
|
linux_version := 4.9.7
|
|
linux_dir := linux-$(linux_version)
|
|
linux_tar := linux-$(linux_version).tar.xz
|
|
linux_url := https://cdn.kernel.org/pub/linux/kernel/v4.x/$(linux_tar)
|
|
|
|
linux-4.9.7_hash := 0b61283b71c7397cb6b5ac3497845d3cdf8137ecd16ab39c8ac6cf5bb90e33dc
|
|
|
|
linux_hash := $(linux-$(linux_version)_hash)
|
|
|
|
linux_configure := \
|
|
$(MAKE) \
|
|
CROSS_COMPILE=$(pwd)/crossgcc/x86_64-linux-musl/bin/x86_64-linux-musl- \
|
|
oldconfig \
|
|
|
|
linux_output := arch/x86/boot/bzImage
|
|
linux_config := linux.config
|
|
|
|
EXTRA_FLAGS := -fdebug-prefix-map=$(pwd)=heads -gno-record-gcc-switches
|
|
|
|
linux_target := \
|
|
CROSS_COMPILE=$(pwd)/crossgcc/x86_64-linux-musl/bin/x86_64-linux-musl- \
|
|
AFLAGS_KERNEL="$(EXTRA_FLAGS)" \
|
|
CFLAGS_KERNEL="$(EXTRA_FLAGS)" \
|
|
CFLAGS_MODULE="$(EXTRA_FLAGS)" \
|
|
KBUILD_BUILD_USER=user \
|
|
KBUILD_BUILD_HOST=heads-build \
|
|
KBUILD_BUILD_TIMESTAMP="1970-00-00" \
|
|
KBUILD_BUILD_VERSION=0 \
|
|
-j $(MAKE_JOBS) \
|
|
bzImage
|
|
|
|
# We cross compile linux now
|
|
linux_depends := $(musl_dep)
|