summarylogtreecommitdiffstats
path: root/25_systemrescuecd
blob: 9a74ee7c991404e395bfbd08a99a2fe6caeff47d (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/bin/sh -e

echo "System Rescue CD" >&2

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

cat << EOF
submenu "System Rescue" {

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 (x86_64) in Memory" {
  linux ${BASE_DIR}/sysrescue/rescue64 subdir=${BASE_DIR}/sysrescue docache ${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 (i586) in Memory" {
  linux ${BASE_DIR}/sysrescue/rescue32 subdir=${BASE_DIR}/sysrescue docache ${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 x86_64) in Memory" {
  linux ${BASE_DIR}/sysrescue/altker64 subdir=${BASE_DIR}/sysrescue docache ${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
}

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

menuentry "MemTest+" {
  linux16 ${BASE_DIR}/sysrescue/bootdisk/memtestp
}

menuentry "NT Password Editor" {
  linux ${BASE_DIR}/sysrescue/ntpasswd/vmlinuz
  initrd ${BASE_DIR}/sysrescue/ntpasswd/initrd.cgz
# initrd ${BASE_DIR}/sysrescue/ntpasswd/scsi.cgz
}

menuentry "Super Grub2 Disk" {
  linux16 ${BASE_DIR}/sysrescue/memdisk raw floppy
  initrd16 ${BASE_DIR}/sysrescue/bootdisk/grubdisk.img
}

menuentry "FreeDOS" {
  linux16 ${BASE_DIR}/sysrescue/memdisk floppy
  initrd16 ${BASE_DIR}/sysrescue/bootdisk/freedos.img
}

menuentry "Netboot - Boot from Network" {
  linux16 ${BASE_DIR}/sysrescue/netboot
}

menuentry "HDT - Hardware Diagnostic Tool (recent)" {
  linux16 ${BASE_DIR}/sysrescue/memdisk floppy
  initrd16 ${BASE_DIR}/sysrescue/bootdisk/hdt.img
}

menuentry "Aida - Hardware Diagnostic Tool (old)" {
  linux16 ${BASE_DIR}/sysrescue/memdisk floppy
  initrd16 ${BASE_DIR}/sysrescue/bootdisk/aida.img
}

menuentry "GAG - Graphical Boot Manager" {
  linux16 ${BASE_DIR}/sysrescue/memdisk floppy
  initrd16 ${BASE_DIR}/sysrescue/bootdisk/gag.img
}

menuentry "DBAN - Erase all data" {
  linux ${BASE_DIR}/sysrescue/bootdisk/dban.bzi nuke="dwipe" silent
}

menuentry "MHDD - Low-level Hard Drive diagnostic tool" {
  linux16 ${BASE_DIR}/sysrescue/memdisk floppy
  initrd16 ${BASE_DIR}/sysrescue/bootdisk/mhdd.img
}

}
EOF