wok diff ipxe/stuff/ipxe.cmd @ rev 19323

syslinux: fix isofs checksum
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Jul 14 10:16:48 2016 +0200 (2016-07-14)
parents f6ecd4224bf8
children e27bc578d1f6
line diff
     1.1 --- a/ipxe/stuff/ipxe.cmd	Sun Jan 24 17:48:50 2016 +0100
     1.2 +++ b/ipxe/stuff/ipxe.cmd	Thu Jul 14 10:16:48 2016 +0200
     1.3 @@ -1,18 +1,20 @@
     1.4  #!ipxe
     1.5  
     1.6  set menu-timeout 3000
     1.7 -dhcp ||
     1.8 +dhcp || echo No DHCP
     1.9  
    1.10  :menu
    1.11 -menu SliTaz net boot menu
    1.12 +menu SliTaz net boot menu ${ip} ${gateway} ${dns}
    1.13  item --key b boot	Local boot
    1.14 -item --key l lan	Your PXE boot
    1.15 +item --key l lan	Your PXE boot ${filename}
    1.16  item --key w web	SliTaz WEB boot
    1.17  item --key r rolling	SliTaz development version
    1.18  item --key c config	iPXE configuration
    1.19  item --key e exit	iPXE command line
    1.20  choose --timeout ${menu-timeout} --default web target || goto exit
    1.21  set menu-timeout 0
    1.22 +isset $(ip} || dhcp || echo No DHCP again
    1.23 +isset ${dns} || set dns 8.8.8.8
    1.24  goto ${target}
    1.25  
    1.26  :boot