pxe: try fixing kernel and initrd
This commit is contained in:
parent
3725f4d42c
commit
0d8dd533ed
|
@ -48,12 +48,14 @@ install_netboot() {
|
||||||
cd "${tftp_path}"
|
cd "${tftp_path}"
|
||||||
wget http://ftp.debian.org/debian/dists/${VERSION_CODENAME}/main/installer-amd64/current/images/netboot/netboot.tar.gz
|
wget http://ftp.debian.org/debian/dists/${VERSION_CODENAME}/main/installer-amd64/current/images/netboot/netboot.tar.gz
|
||||||
tar xvf netboot.tar.gz
|
tar xvf netboot.tar.gz
|
||||||
|
cp debian-installer/amd64/linux .
|
||||||
|
cp debian-installer/amd64/initrd.gz .
|
||||||
cat > "${tftp_path}/pxelinux.cfg/default" <<END
|
cat > "${tftp_path}/pxelinux.cfg/default" <<END
|
||||||
default wb
|
default wb
|
||||||
|
|
||||||
label wb
|
label wb
|
||||||
KERNEL debian-installer/amd64/linux
|
KERNEL linux
|
||||||
INITRD debian-installer/amd64/initd.gz
|
INITRD initrd.gz
|
||||||
APPEND ip=dhcp netboot=nfs nfsroot=${server_ip}:${nfs_path}/ boot=live text forcepae
|
APPEND ip=dhcp netboot=nfs nfsroot=${server_ip}:${nfs_path}/ boot=live text forcepae
|
||||||
END
|
END
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue