Displaying 1 result from an estimated 1 matches for "system6".
Did you mean:
  system
  
2006 Mar 23
2
Global append and Label append
...I'd like to do something like this:
	display text.msg
	append text kssendmac ksdevice=eth1 ks=http://1.2.3.4/footprint/
	default localboot
	label localboot
		localboot 0x80
	label system?5
		kernel vmlinuz
		append initrd=initrd.img ip=1.2.3.5 netmask=255.255.255.192 gateway=1.2.3.1
	label system6
		kernel vmlinuz
		append initrd=initrd.img ip=1.2.3.6 netmask=255.255.255.192 gateway=1.2.3.1
	
	label rescue
		kernel vmlinuz
		append - initrd=initrd.img rescue
Reading the syslinux documentation that should be possible (at least 
that's what I think). But it doesn't work, can someone s...