Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mkimage-profiles
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
2
Issues
2
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ximper Linux
mkimage-profiles
Commits
79d02088
Commit
79d02088
authored
Apr 04, 2016
by
Michael Shigorin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
syslinux: added RESCUE_BOOTARGS support
This one is just like STAGE2_BOOTARGS but for rescue images (which don't do that one for quite a few reasons).
parent
ae088e3b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
4 deletions
+8
-4
80rescue.cfg
features.in/syslinux/cfg.in/80rescue.cfg
+1
-1
82rescue_rw.cfg
features.in/syslinux/cfg.in/82rescue_rw.cfg
+1
-1
83rescue_fm.cfg
features.in/syslinux/cfg.in/83rescue_fm.cfg
+1
-1
84rescue_remote.cfg
features.in/syslinux/cfg.in/84rescue_remote.cfg
+1
-1
generate.mk
features.in/syslinux/generate.mk
+4
-0
No files found.
features.in/syslinux/cfg.in/80rescue.cfg
View file @
79d02088
label rescue
label rescue
menu label ^Rescue LiveCD
menu label ^Rescue LiveCD
kernel alt0/vmlinuz
kernel alt0/vmlinuz
append initrd=alt0/full.cz fastboot live showopts automatic=method:cdrom ramdisk_size=@rescue_size@ stagename=rescue
append initrd=alt0/full.cz fastboot live showopts automatic=method:cdrom ramdisk_size=@rescue_size@ stagename=rescue
@rescue_bootargs@
features.in/syslinux/cfg.in/82rescue_rw.cfg
View file @
79d02088
label rescue_session
label rescue_session
menu label Rescue with sess^ions support
menu label Rescue with sess^ions support
kernel alt0/vmlinuz
kernel alt0/vmlinuz
append initrd=alt0/full.cz fastboot live showopts automatic=method:cdrom ramdisk_size=@rescue_size@ stagename=rescue live_rw
append initrd=alt0/full.cz fastboot live showopts automatic=method:cdrom ramdisk_size=@rescue_size@ stagename=rescue live_rw
@rescue_bootargs@
features.in/syslinux/cfg.in/83rescue_fm.cfg
View file @
79d02088
label rescue_forensic
label rescue_forensic
menu label ^Forensic mode (leave disks alone)
menu label ^Forensic mode (leave disks alone)
kernel alt0/vmlinuz
kernel alt0/vmlinuz
append initrd=alt0/full.cz fastboot live showopts automatic=method:cdrom ramdisk_size=@rescue_size@ stagename=rescue max_loop=16 forensic hash=@rescue_hash@
append initrd=alt0/full.cz fastboot live showopts automatic=method:cdrom ramdisk_size=@rescue_size@ stagename=rescue max_loop=16 forensic hash=@rescue_hash@
@rescue_bootargs@
features.in/syslinux/cfg.in/84rescue_remote.cfg
View file @
79d02088
label rescue_remote
label rescue_remote
menu label Rescue with remote SSH ^access (DHCP)
menu label Rescue with remote SSH ^access (DHCP)
kernel alt0/vmlinuz
kernel alt0/vmlinuz
append initrd=alt0/full.cz fastboot live showopts automatic=method:cdrom ramdisk_size=@rescue_size@ stagename=rescue quiet ip=dhcp port=22 rootpw=AUTO
append initrd=alt0/full.cz fastboot live showopts automatic=method:cdrom ramdisk_size=@rescue_size@ stagename=rescue quiet ip=dhcp port=22 rootpw=AUTO
@rescue_bootargs@
features.in/syslinux/generate.mk
View file @
79d02088
...
@@ -81,6 +81,10 @@ bootargs: clean
...
@@ -81,6 +81,10 @@ bootargs: clean
sed -i "s,@bootargs@,$(STAGE2_BOOTARGS)," $(DSTDIR)/*.cfg; \
sed -i "s,@bootargs@,$(STAGE2_BOOTARGS)," $(DSTDIR)/*.cfg; \
fi; \
fi; \
sed -i "s,@bootargs@,," $(DSTDIR)/*.cfg
sed -i "s,@bootargs@,," $(DSTDIR)/*.cfg
@if [ -n "$(RESCUE_BOOTARGS)" ]; then \
sed -i "s,@rescue_bootargs@,$(RESCUE_BOOTARGS)," $(DSTDIR)/*.cfg; \
fi; \
sed -i "s,@rescue_bootargs@,," $(DSTDIR)/*.cfg
clean: copy
clean: copy
@if [ "$(SYSLINUX_UI)" = gfxboot ]; then \
@if [ "$(SYSLINUX_UI)" = gfxboot ]; then \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment