summarylogtreecommitdiffstats
path: root/25_systemrescuecd
blob: 6e41d51ebf20f50852309d7555213436e19c9c77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh -e

echo "System Rescue CD" >&2

if [ -r /etc/default/systemrescuecd ] ; then
  . /etc/default/systemrescuecd
fi

cat << EOF
menuentry "System Rescue (x86_64)"{
  linux ${BASE_DIR}/sysrescue/rescue64 subdir=${BASE_DIR}/sysrescue ${CUSTOM_BOOTOPTIONS}
  initrd ${BASE_DIR}/sysrescue/initram.igz
}

menuentry "System Rescue (i586)"{
	linux ${BASE_DIR}/sysrescue/rescue32 subdir=${BASE_DIR}/sysrescue ${CUSTOM_BOOTOPTIONS}
	initrd ${BASE_DIR}/sysrescue/initram.igz
}

menuentry "System Rescue (alternative x86_64)"{
  linux ${BASE_DIR}/sysrescue/altker64 subdir=${BASE_DIR}/sysrescue ${CUSTOM_BOOTOPTIONS}
  initrd ${BASE_DIR}/sysrescue/initram.igz
}

menuentry "System Rescue (alternative i586)"{
  linux ${BASE_DIR}/sysrescue/altker32 subdir=${BASE_DIR}/sysrescue ${CUSTOM_BOOTOPTIONS}
  initrd ${BASE_DIR}/sysrescue/initram.igz
}
EOF