From 918293f1f4eacf7799612eacc51f86d471147064 Mon Sep 17 00:00:00 2001 From: Anton Midyukov Date: Tue, 9 Feb 2021 00:45:45 +0700 Subject: [PATCH] e2k: Use standard PATH for kernel in stage1 --- features.in/e2k/scripts.d/20-e2k-boot | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/features.in/e2k/scripts.d/20-e2k-boot b/features.in/e2k/scripts.d/20-e2k-boot index e2e04806..90ba1d3a 100755 --- a/features.in/e2k/scripts.d/20-e2k-boot +++ b/features.in/e2k/scripts.d/20-e2k-boot @@ -33,15 +33,15 @@ for i in live altinst rescue; do label=$label partition=0 - image=/alt0/vmlinux.0 + image=/boot/image cmdline=console=ttyS0,115200 console=tty0 hardreset fastboot live automatic=method:cdrom ${stage2:+$stage2 }${GLOBAL_STAGE2_BOOTARGS:+$GLOBAL_STAGE2_BOOTARGS }${GLOBAL_BOOT_LANG:+lang=$GLOBAL_BOOT_LANG} - initrd=/alt0/full.cz + initrd=/boot/full.cz label=${label}_flash partition=0 - image=/alt0/vmlinux.0 + image=/boot/image cmdline=console=ttyS0,115200 console=tty0 hardreset fastboot live lowmem automatic=method:disk,label:altinst,directory:/ ${stage2:+$stage2 }${GLOBAL_STAGE2_BOOTARGS:+$GLOBAL_STAGE2_BOOTARGS }${GLOBAL_BOOT_LANG:+lang=$GLOBAL_BOOT_LANG} - initrd=/alt0/full.cz + initrd=/boot/full.cz EOF done