mirror of
https://github.com/nchevsky/systemrescue-zfs.git
synced 2026-04-07 23:33:39 +00:00
SystemRescueCd-6.0.0
This commit is contained in:
commit
5a6aec2276
61 changed files with 1887 additions and 0 deletions
5
syslinux/syslinux.cfg
Normal file
5
syslinux/syslinux.cfg
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
DEFAULT loadconfig
|
||||
|
||||
LABEL loadconfig
|
||||
CONFIG sysresccd.cfg
|
||||
APPEND ../../
|
||||
11
syslinux/sysresccd.cfg
Normal file
11
syslinux/sysresccd.cfg
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
DEFAULT select
|
||||
|
||||
LABEL select
|
||||
COM32 boot/syslinux/whichsys.c32
|
||||
APPEND -pxe- pxe -sys- sys -iso- sys
|
||||
|
||||
LABEL pxe
|
||||
CONFIG boot/syslinux/sysresccd_pxe.cfg
|
||||
|
||||
LABEL sys
|
||||
CONFIG boot/syslinux/sysresccd_sys.cfg
|
||||
24
syslinux/sysresccd_head.cfg
Normal file
24
syslinux/sysresccd_head.cfg
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
SERIAL 0 38400
|
||||
UI boot/syslinux/vesamenu.c32
|
||||
MENU TITLE SYSTEM-RESCUE-CD %ISO_VERSION% (www.system-rescue-cd.org)
|
||||
MENU BACKGROUND #c00090f0
|
||||
|
||||
MENU WIDTH 78
|
||||
MENU MARGIN 4
|
||||
MENU ROWS 15
|
||||
MENU TABMSGROW 22
|
||||
MENU CMDLINEROW 22
|
||||
MENU HELPMSGROW 24
|
||||
MENU HELPMSGENDROW 37
|
||||
|
||||
# Refer to http://syslinux.zytor.com/wiki/index.php/Doc/menu
|
||||
|
||||
MENU COLOR border 30;44 #40ffffff #a0000000 std
|
||||
MENU color title 1;31;40 #FFFF0000 #00000000 std
|
||||
MENU color sel 7;37;40 #FF000000 #FFC0C0C0 all
|
||||
MENU color unsel 37;44 #FF000000 #00000000 none
|
||||
MENU COLOR help 37;40 #c0ffffff #a0000000 std
|
||||
MENU COLOR timeout_msg 37;40 #80ffffff #00000000 std
|
||||
MENU COLOR timeout 1;37;40 #c0ffffff #00000000 std
|
||||
MENU COLOR msg07 37;40 #90ffffff #a0000000 std
|
||||
MENU color tabmsg 1;31;40 #FFFFFF00 #00000000 std
|
||||
36
syslinux/sysresccd_pxe.cfg
Normal file
36
syslinux/sysresccd_pxe.cfg
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
INCLUDE boot/syslinux/sysresccd_head.cfg
|
||||
|
||||
LABEL sysresccd_nbd
|
||||
TEXT HELP
|
||||
Boot the SystemRescueCd live medium (Using NBD).
|
||||
It allows you to install Arch Linux or perform system maintenance.
|
||||
ENDTEXT
|
||||
MENU LABEL Boot SystemRescueCd (NBD)
|
||||
LINUX boot/x86_64/vmlinuz
|
||||
INITRD boot/intel_ucode.img,boot/amd_ucode.img,boot/x86_64/sysresccd.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% archiso_nbd_srv=${pxeserver}
|
||||
SYSAPPEND 3
|
||||
|
||||
LABEL sysresccd_nfs
|
||||
TEXT HELP
|
||||
Boot the SystemRescueCd live medium (Using NFS).
|
||||
It allows you to install Arch Linux or perform system maintenance.
|
||||
ENDTEXT
|
||||
MENU LABEL Boot SystemRescueCd (NFS)
|
||||
LINUX boot/x86_64/vmlinuz
|
||||
INITRD boot/intel_ucode.img,boot/amd_ucode.img,boot/x86_64/sysresccd.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archiso_nfs_srv=${pxeserver}:/run/sysresccd/bootmnt
|
||||
SYSAPPEND 3
|
||||
|
||||
LABEL sysresccd_http
|
||||
TEXT HELP
|
||||
Boot the SystemRescueCd live medium (Using HTTP).
|
||||
It allows you to install Arch Linux or perform system maintenance.
|
||||
ENDTEXT
|
||||
MENU LABEL Boot SystemRescueCd (HTTP)
|
||||
LINUX boot/x86_64/vmlinuz
|
||||
INITRD boot/intel_ucode.img,boot/amd_ucode.img,boot/x86_64/sysresccd.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archiso_http_srv=http://${pxeserver}/
|
||||
SYSAPPEND 3
|
||||
|
||||
INCLUDE boot/syslinux/sysresccd_tail.cfg
|
||||
21
syslinux/sysresccd_sys.cfg
Normal file
21
syslinux/sysresccd_sys.cfg
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
INCLUDE boot/syslinux/sysresccd_head.cfg
|
||||
|
||||
LABEL sysresccd
|
||||
TEXT HELP
|
||||
Boot the SystemRescueCd live medium.
|
||||
ENDTEXT
|
||||
MENU LABEL Boot SystemRescueCd using default options
|
||||
LINUX boot/x86_64/vmlinuz
|
||||
INITRD boot/intel_ucode.img,boot/amd_ucode.img,boot/x86_64/sysresccd.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL%
|
||||
|
||||
LABEL sysresccd_copytoram
|
||||
TEXT HELP
|
||||
Boot the SystemRescueCd live medium and copy system to RAM
|
||||
ENDTEXT
|
||||
MENU LABEL Boot SystemRescueCd and copy system to RAM
|
||||
LINUX boot/x86_64/vmlinuz
|
||||
INITRD boot/intel_ucode.img,boot/amd_ucode.img,boot/x86_64/sysresccd.img
|
||||
APPEND archisobasedir=%INSTALL_DIR% archisolabel=%ARCHISO_LABEL% copytoram
|
||||
|
||||
INCLUDE boot/syslinux/sysresccd_tail.cfg
|
||||
27
syslinux/sysresccd_tail.cfg
Normal file
27
syslinux/sysresccd_tail.cfg
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
LABEL existing
|
||||
TEXT HELP
|
||||
Boot an existing operating system.
|
||||
Press TAB to edit the disk and partition number to boot.
|
||||
ENDTEXT
|
||||
MENU LABEL Boot existing OS
|
||||
COM32 boot/syslinux/chain.c32
|
||||
APPEND hd0 0
|
||||
|
||||
# http://www.memtest.org/
|
||||
LABEL memtest
|
||||
MENU LABEL Run Memtest86+ (RAM test)
|
||||
LINUX boot/memtest
|
||||
|
||||
# http://hdt-project.org/
|
||||
#LABEL hdt
|
||||
#MENU LABEL Hardware Information (HDT)
|
||||
#COM32 boot/syslinux/hdt.c32
|
||||
#APPEND modules_alias=boot/syslinux/hdt/modalias.gz pciids=boot/syslinux/hdt/pciids.gz
|
||||
|
||||
LABEL reboot
|
||||
MENU LABEL Reboot
|
||||
COM32 boot/syslinux/reboot.c32
|
||||
|
||||
LABEL poweroff
|
||||
MENU LABEL Power Off
|
||||
COM32 boot/syslinux/poweroff.c32
|
||||
Loading…
Add table
Add a link
Reference in a new issue