diff options
author | Philipp Deppenwiese <zaolin@das-labor.org> | 2018-08-30 23:07:02 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-09-04 12:36:43 +0000 |
commit | 9569ebeab894d22b31d5681348bbe9e65d686683 (patch) | |
tree | d3f09d2180f343c3293904ceca395c33de866f70 /payloads/external/LinuxBoot/Kconfig | |
parent | 3b5351d0444f028ebdb5d06ee51197e516b0c31e (diff) |
payloads/LinuxBoot: Fix remaining issues
* Update kernel versions
* Fix initrd path handling
Change-Id: Ia0641fd0c0db1e47ee4829b73871af662d4a6370
Signed-off-by: Philipp Deppenwiese <zaolin@das-labor.org>
Reviewed-on: https://review.coreboot.org/28401
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: David Hendricks <david.hendricks@gmail.com>
Diffstat (limited to 'payloads/external/LinuxBoot/Kconfig')
-rw-r--r-- | payloads/external/LinuxBoot/Kconfig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/payloads/external/LinuxBoot/Kconfig b/payloads/external/LinuxBoot/Kconfig index 7a40645535..8acb542215 100644 --- a/payloads/external/LinuxBoot/Kconfig +++ b/payloads/external/LinuxBoot/Kconfig @@ -50,12 +50,12 @@ choice default LINUXBOOT_KERNEL_STABLE config LINUXBOOT_KERNEL_STABLE - bool "4.15.3" + bool "4.14.67" help Stable kernel version config LINUXBOOT_KERNEL_LATEST - bool "4.17.11" + bool "4.18.5" help Latest kernel version @@ -63,8 +63,8 @@ endchoice config LINUXBOOT_KERNEL_VERSION string - default "4.17.11" if LINUXBOOT_KERNEL_LATEST - default "4.15.3" if LINUXBOOT_KERNEL_STABLE + default "4.18.5" if LINUXBOOT_KERNEL_LATEST + default "4.14.67" if LINUXBOOT_KERNEL_STABLE config LINUXBOOT_KERNEL_CONFIGFILE string "Kernel config file" |