diff options
author | Eric Hameleers <alien@slackware.com> | 2017-09-19 20:51:34 +0200 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2017-09-19 20:51:34 +0200 |
commit | 888d2a08730e0dc7343696945769e4ab4f8b4659 (patch) | |
tree | 9cc3c4f675ac461fb43870d8981e14836faf5c3e /make_slackware_live.sh | |
parent | 0ddc28312087bd711b49240361177309ed3641e7 (diff) | |
download | liveslak-888d2a08730e0dc7343696945769e4ab4f8b4659.tar.gz liveslak-888d2a08730e0dc7343696945769e4ab4f8b4659.tar.xz |
Add upslak.sh, a script to tweak the Live USB stick.
Purpose: to update the content of a Slackware Live USB stick.
upslak.sh accepts the following parameters:
-b|--nobackup Do not try to backup original kernel and modules.
-d|--devices List removable devices on this computer.
-h|--help This help.
-i|--init <filename> Replacement init script.
-k|--kernel <filename> The kernel file (or package).
-m|--kmoddir <name> The kernel modules directory (or package).
-n|--netsupport Add network boot support if not yet present.
-o|--outdev <filename> The device name of your USB drive.
-p|--persistence Move persistent data into new Live module.
-r|--restore Restore previous kernel and modules.
-s|--scan Scan for insertion of new USB device instead of
providing a devicename (using option '-o').
-v|--verbose Show verbose messages.
-w|--wait<number> Add <number> seconds wait time to initialize USB.
Diffstat (limited to 'make_slackware_live.sh')
-rwxr-xr-x | make_slackware_live.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make_slackware_live.sh b/make_slackware_live.sh index c10ec51..ba1f458 100755 --- a/make_slackware_live.sh +++ b/make_slackware_live.sh @@ -1389,7 +1389,7 @@ fi # Add our scripts to the Live OS: mkdir -p ${LIVE_ROOTDIR}/usr/local/sbin -install -m0755 ${LIVE_TOOLDIR}/makemod ${LIVE_TOOLDIR}/iso2usb.sh ${LIVE_ROOTDIR}/usr/local/sbin/ +install -m0755 ${LIVE_TOOLDIR}/makemod ${LIVE_TOOLDIR}/iso2usb.sh ${LIVE_TOOLDIR}/upslak.sh ${LIVE_ROOTDIR}/usr/local/sbin/ # Add PXE Server infrastructure: mkdir -p ${LIVE_ROOTDIR}/var/lib/tftpboot/pxelinux.cfg |