mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-21 05:53:14 +00:00
a6520772dc
No patches are required to boot 4.9 as a coreboot payload, unlike the 4.7 kernel that required a head_64.S patch. The new kernel is about 40 KB larger than the 4.7; the config might be shrinkable. Close issue #61.
18 lines
618 B
Plaintext
18 lines
618 B
Plaintext
modules += linux
|
|
|
|
linux_version := 4.9
|
|
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.6.4_hash := 8568d41c7104e941989b14a380d167129f83db42c04e950d8d9337fe6012ff7e
|
|
linux-4.7_hash := 5190c3d1209aeda04168145bf50569dc0984f80467159b1dc50ad731e3285f10
|
|
linux-4.9_hash := 029098dcffab74875e086ae970e3828456838da6e0ba22ce3f64ef764f3d7f1a
|
|
|
|
linux_hash := $(linux-$(linux_version)_hash)
|
|
|
|
linux_configure := make oldconfig
|
|
linux_output := arch/x86/boot/bzImage
|
|
linux_config := linux.config
|
|
linux_target := -j 8 bzImage
|