summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2017-07-23 21:05:51 +0200
committer Eric Hameleers <alien@slackware.com>2017-07-23 21:05:51 +0200
commitaa03c44155c69ae80fbb2cd23d32717e7e07e5e3 (patch)
tree47774fdb14041de1596f0012926ab8497d9c7d7a
parent35b31ec24bef6f2bc25aaee6837127c013b1b39c (diff)
downloadliveslak-aa03c44155c69ae80fbb2cd23d32717e7e07e5e3.tar.gz
liveslak-aa03c44155c69ae80fbb2cd23d32717e7e07e5e3.tar.xz
Rearrange some variable definitions to create a re-usable block for upslak
The 'upslak.sh' script will be added in the near future, it allows (among others) to upgrade the liveslak kernel and its modules on your liveslak USB stick.
-rwxr-xr-xmake_slackware_live.sh18
1 files changed, 10 insertions, 8 deletions
diff --git a/make_slackware_live.sh b/make_slackware_live.sh
index 572536c..37f95eb 100755
--- a/make_slackware_live.sh
+++ b/make_slackware_live.sh
@@ -194,23 +194,25 @@ SEQ_DLACK="tagfile:a,ap,d,e,f,k,l,n,t,tcl,x,xap pkglist:slackextra,systemd,dlack
# - each will become a squashfs module:
SEQ_STUDW="tagfile:a,ap,d,e,f,k,kde,l,n,t,tcl,x,xap,xfce,y pkglist:slackextra,studioware,slackpkgplus"
+# -- START: Used verbatim in upslak.sh -- #
# List of kernel modules required for a live medium to boot properly;
# Lots of HID modules added to support keyboard input for LUKS password entry:
KMODS=${KMODS:-"squashfs:overlay:loop:xhci-pci:ohci-pci:ehci-pci:xhci-hcd:uhci-hcd:ehci-hcd:mmc-core:mmc-block:sdhci:sdhci-pci:sdhci-acpi:usb-storage:hid:usbhid:i2c-hid:hid-generic:hid-apple:hid-cherry:hid-logitech:hid-logitech-dj:hid-logitech-hidpp:hid-lenovo:hid-microsoft:hid_multitouch:jbd:mbcache:ext3:ext4:isofs:fat:nls_cp437:nls_iso8859-1:msdos:vfat:ntfs"}
-# If any Live variant needs additional 'append' parameters, define them here,
-# either using a variable name 'KAPPEND_<LIVEDE>', or by defining 'KAPPEND' in the .conf file:
-KAPPEND_SLACKWARE=""
-KAPPEND_STUDIOWARE="threadirqs"
-
-# Firmware for wired network cards required for NFS root support:
-NETFIRMWARE="3com acenic adaptec bnx tigon e100 sun kaweth tr_smctr cxgb3"
-
# Network kernel modules to include for NFS root support:
NETMODS="kernel/drivers/net"
# Network kernel modules to exclude from above list:
NETEXCL="appletalk arcnet bonding can dummy.ko hamradio hippi ifb.ko irda macvlan.ko macvtap.ko pcmcia sb1000.ko team tokenring tun.ko usb veth.ko wan wimax wireless xen-netback.ko"
+# -- END: Used verbatim in upslak.sh -- #
+
+# Firmware for wired network cards required for NFS root support:
+NETFIRMWARE="3com acenic adaptec bnx tigon e100 sun kaweth tr_smctr cxgb3"
+
+# If any Live variant needs additional 'append' parameters, define them here,
+# either using a variable name 'KAPPEND_<LIVEDE>', or by defining 'KAPPEND' in the .conf file:
+KAPPEND_SLACKWARE=""
+KAPPEND_STUDIOWARE="threadirqs"
#
# ---------------------------------------------------------------------------