summarylogtreecommitdiffstats
path: root/25_systemrescuecd
diff options
context:
space:
mode:
authorPyro Devil2015-06-09 20:03:16 +0200
committerPyro Devil2015-06-09 20:43:24 +0200
commit53f914012d828c9bf2a39f7c62c6386454782916 (patch)
tree27638009d400e73bfd69d4c90de9346c8bd4b054 /25_systemrescuecd
downloadaur-53f914012d828c9bf2a39f7c62c6386454782916.tar.gz
version 4.5.3-1
Signed-off-by: Pyro Devil <p.devil@gmail.com>
Diffstat (limited to '25_systemrescuecd')
-rwxr-xr-x25_systemrescuecd29
1 files changed, 29 insertions, 0 deletions
diff --git a/25_systemrescuecd b/25_systemrescuecd
new file mode 100755
index 000000000000..6e41d51ebf20
--- /dev/null
+++ b/25_systemrescuecd
@@ -0,0 +1,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