adjust default loader location in boot2

看板DFBSD_submit作者時間16年前 (2010/02/19 03:32), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串1/1
adjust the default location where boot2 looks for loader to match the new default setups with a separate /boot partition. With this patch it is possible again to just keep hitting <Enter> to speed up booting. Johannes diff --git a/sys/boot/pc32/boot2/boot2.c b/sys/boot/pc32/boot2/boot2.c index 775c6bd..b36601b 100644 --- a/sys/boot/pc32/boot2/boot2.c +++ b/sys/boot/pc32/boot2/boot2.c @@ -104,8 +104,8 @@ #define RBX_MASK 0x2005ffff #define PATH_CONFIG "/boot.config" -#define PATH_BOOT3 "/boot/loader" /* /boot in root */ -#define PATH_BOOT3_ALT "/loader" /* /boot partition */ +#define PATH_BOOT3 "/loader" /* /boot partition */ +#define PATH_BOOT3_ALT "/boot/loader" /* /boot in root */ #define PATH_KERNEL "/kernel" #define NDEV 3
文章代碼(AID): #1BVPMtLQ (DFBSD_submit)