Post Reply 
 
Thread Rating:
  • 1 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
iPXE boot failed but 'boot || goto boot_menu' reback to boot menu NOT work
2016-08-16, 09:37 (This post was last modified: 2016-08-16 10:50 by MultimediaMan.)
Post: #2
RE: iPXE boot failed but 'boot || goto boot_menu' reback to boot menu NOT work
Instead of this:

Code:
:clone
kernel http=//192.168.10.199/iso/7/images/pxeboot/vmlinuz net.ifnames=0 biosdevname=0 inst.sshd ipv6.disable=1 inst.stage2=http=//192.168.10.199/iso/7 inst.ks=http=//192.168.10.199/ks/ks-centos-7-kvm.cfg ks.device
=bootif BOOTIF=01-${net0/mac:hexhyp}
initrd http=//192.168.10.199/iso/7/images/pxeboot/initrd.img
boot || goto boot_menu
goto boot_menu

Try this:

Code:
:clone
initrd http://192.168.10.199/iso/7/images/pxeboot/initrd.img ||
chain http://192.168.10.199/iso/7/images/pxeboot/vmlinuz net.ifnames=0 biosdevname=0 inst.sshd ipv6.disable=1 inst.stage2=http://192.168.10.199/iso/7 inst.ks=http://192.168.10.199/ks/ks-centos-7-kvm.cfg ks.device
=bootif BOOTIF=01-${net0/mac:hexhyp} ||
goto boot_menu

"Thus far, you have been adrift within the sheltered harbor of my patience..."
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: iPXE boot failed but 'boot || goto boot_menu' reback to boot menu NOT work - MultimediaMan - 2016-08-16 09:37



User(s) browsing this thread: 1 Guest(s)