Adjust bsd entry for network boot and drop grub entries for network boot.
[grml-terminalserver.git] / templates / grub-pxelinux_config
1 # the following variables are available in the template:
2 #
3 # $INTERFACE_     (interface for the terminalserver)
4 # $IP_            (ip for the terminalserver to bind)
5 # $NETMASK_       (network mask)
6 # $GW_            (gateway)
7 # $NAMESERVERS_   (nameservers for the nodes)
8 # $IPRANGE_FROM_  (user configured iprange, first ip)
9 # $IPRANGE_TO_    (user configured iprange, last ip)
10 # $NETWORK_       (first ip in this subnet)
11 # $OPTIONS_       (options for grml-terminalserver)
12 # $BOOT_ARGS_     (boot arguments for the nodes)
13 #
14 # NOTE:
15 # templates are shellscript fragments and will be sourced from the
16 # terminalserver
17 #
18 # GLOBAL_README_END
19
20 if grep -q live-media-path= /proc/cmdline 2>/dev/null ; then
21     live_media_path_="live-media-path=$(awk -F live-media-path= '{print $2}' /proc/cmdline)"
22 fi
23
24 # default boot arguments used for both grub and pxelinux
25 if [ -e '/live/cow' ]; then
26     default_boot_args_="root=/dev/nfs rw nfsroot=$IP_:$MOUNT_POINT_ \
27 nodhcp noprompt noeject"
28 else
29     default_boot_args_="ramdisk_size=24000 root=/dev/ram0 rw \
30 init=/etc/init nfsdir=$IP_:$MOUNT_POINT_ nodhcp noprompt noeject \
31 apm=power-off nomce"
32 fi
33
34 # special boot arguments required by grub
35 grub_def_boot_args_="/linux26 $default_boot_args_"
36
37 # special boot arguments required by pxelinux
38 pxe_def_boot_args_="$default_boot_args_ initrd=minirt26.gz"
39
40 # default arguments for framebuffer console
41 def_fb_args_="vga=791"
42 no_fb_args_="vga=normal"
43
44 ###
45 ## create grub config
46 ###
47
48 cat >"$TFTPD_DATA_DIR_/menu.lst" <<EOT
49 default=0
50 timeout=10
51 title GRML
52   root (nd)
53   kernel $grub_def_boot_args_ $def_fb_args_ $BOOT_ARGS_
54   initrd /minirt26.gz
55
56 title GRML no framebuffer
57   root (nd)
58   kernel $grub_def_boot_args_ $no_fb_args_ $BOOT_ARGS_
59
60 title GRML small
61   root (nd)
62   kernel $grub_def_boot_args_ small $def_fb_args_ $BOOT_ARGS_
63   initrd /minirt26.gz
64
65 title GRML small nofb
66   root (nd)
67   kernel $grub_def_boot_args_ small $no_fb_args_ $BOOT_ARGS_
68   initrd /minirt26.gz
69
70 title GRML debuginit
71   root (nd)
72   kernel $grub_def_boot_args_ debuginitrd $def_fb_args_ $BOOT_ARGS_
73   initrd /minirt26.gz
74
75 title GRML debuginit nofb
76   root (nd)
77   kernel $grub_def_boot_args_ debuginitrd $no_fb_args_ $BOOT_ARGS_
78   initrd /minirt26.gz
79
80 title GRML rescue
81   root (nd)
82   kernel $grub_def_boot_args_ $no_fb_args_
83   initrd /minirt26.gz
84
85 title memtest
86   root (nd)
87   kernel /memtest
88
89 title Reload config
90   configfile (nd)/menu.lst
91 EOT
92
93 ret_=$?
94
95
96 ###
97 ## create pxelinux config
98 ###
99 DEST_DIR=$(mktemp -d)
100 grml2usb --bootloader-only --remove-bootoption='initrd=/boot/[a-z0-9/.]*/initrd.gz' \
101     --remove-bootoption='live-media-path=[a-z0-9/.-]+/' \
102     --bootoptions="$pxe_def_boot_args_ $BOOT_ARGS_" /live/image "$DEST_DIR"
103
104 mv "$DEST_DIR"/boot/syslinux/* "$TFTPD_DATA_DIR_/"
105 rmdir "$DEST_DIR"/boot/syslinux
106
107 mv "$DEST_DIR"/boot/ "$TFTPD_DATA_DIR_"
108
109 # remove normal kernel path and use our image
110 sed -i -e 's/.*kernel.*linux26/kernel linux26/' "$TFTPD_DATA_DIR_/"*.cfg 2>/dev/null
111
112 # only append live-media-path if needed
113 if [ ! -z "$live_media_path_" ] ; then
114     sed -i -e 's/\(.*append.*\)/\1 live-media-path='$live_media_path_'/' "$TFTPD_DATA_DIR_/"*.cfg  2>/dev/null
115 fi
116
117 # adjust ldbsd.com bootline
118 sed -i -e 's#\(.*kernel .*/ldbsd.com\)#\1 set image /boot/addons/bsd4grml/bsd.rd`echo Type "boot" to load MirOS bsd4grml via keeppxe#' "$TFTPD_DATA_DIR_/"addon_*_bsd.cfg
119
120 # remove grub entries
121 rm "$TFTPD_DATA_DIR_/"addon_*grub*.cfg
122
123 mv "$TFTPD_DATA_DIR_/syslinux.cfg" "$TFTPD_DATA_DIR_/pxelinux.cfg/default"
124 rm -rf "$DEST_DIR"
125
126 let ret_=$ret_+$?
127 return $ret_