From be0527da42575dacb47becf64013e35198c15f4e Mon Sep 17 00:00:00 2001 From: Mykola Malkov Date: Thu, 22 Mar 2018 11:07:29 +0100 Subject: [PATCH] TT#32751 Fix booting from HDD It is necessary to use chainloader in order to boot from local HDD from isolinux Change-Id: I692e61aa29c8374d115d89b0f220969d74d78dbf --- isolinux.cfg | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/isolinux.cfg b/isolinux.cfg index 6ad9643..f5b35a3 100644 --- a/isolinux.cfg +++ b/isolinux.cfg @@ -311,7 +311,8 @@ label ipxe label hd1 menu label ^Boot from primary local boot device - localboot 0x80 + kernel /boot/addons/chain.c32 + append hd0 0 text help Boot from 1st local boot device - if present and bootable. @@ -319,7 +320,8 @@ label hd1 label hd2 menu label ^Boot from secondary local boot device - localboot 0x81 + kernel /boot/addons/chain.c32 + append hd1 0 text help Boot from 2nd local boot device - if present and bootable. @@ -327,7 +329,8 @@ label hd2 label hd3 menu label ^Boot from third local boot device - localboot 0x82 + kernel /boot/addons/chain.c32 + append hd2 0 text help Boot from 3rd local boot device - if present and bootable. @@ -335,7 +338,8 @@ label hd3 label hd4 menu label ^Boot from fourth local boot device - localboot 0x83 + kernel /boot/addons/chain.c32 + append hd3 0 text help Boot from 4th local boot device - if present and bootable.