15 lines
584 B
Cheetah
15 lines
584 B
Cheetah
#!ipxe
|
|
set timeout 0
|
|
set timeout-style hidden
|
|
set ISODIR ogLive
|
|
set default 0
|
|
set kernelargs ro boot=oginit quiet splash irqpoll acpi=on og2nd=sqfs ogprotocol=smb ogactiveadmin=true ogdebug=true ogtmpfs=15 oglivedir=${ISODIR} LANG=es_ES.UTF-8 ip=IP_ADDRESS:192.168.2.1:192.168.2.1:255.255.255.0:HOSTNAME:eth0:none group=Aula_virtual ogrepo=192.168.2.1 oglive=192.168.2.1 oglog=192.168.2.1 ogshare=192.168.2.1 ogprof=false vga=788
|
|
echo "OgLive $ISODIR"
|
|
ifopen net0
|
|
route
|
|
kernel tftp://__SERVERIP__/ogLive/ogvmlinuz ${kernelargs}
|
|
initrd tftp://__SERVERIP__/ogLive/oginitrd.img
|
|
boot
|
|
|
|
|