diff options
author | Eric Hameleers <alien@slackware.com> | 2016-06-10 15:22:57 +0200 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2016-06-10 15:22:57 +0200 |
commit | 2505df82083f10a10828518f0be35b7d05153380 (patch) | |
tree | 8c6a5db6e0c1c5048a03f795d5c4962a64c0ba85 | |
parent | 8d3aef31b97ff8c1db1b397ba59b47db18832d7c (diff) | |
download | liveslak-2505df82083f10a10828518f0be35b7d05153380.tar.gz liveslak-2505df82083f10a10828518f0be35b7d05153380.tar.xz |
On 32bit, use the non-SMP kernel by default.
You can define SMP32="YES" in the script or in its .conf file,
if you want your Live ISO to boot the 32bit SMP kernel instead.
-rwxr-xr-x | make_slackware_live.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make_slackware_live.sh b/make_slackware_live.sh index cf7bd5b..89eedea 100755 --- a/make_slackware_live.sh +++ b/make_slackware_live.sh @@ -65,8 +65,8 @@ BOOTLOADSIZE=${BOOTLOADSIZE:-4} # Therefore we disable 32bit EFI by default. Enable at your own peril: EFI32=${EFI32:-"NO"} -# Set to NO if you want to use the non-SMP kernel on 32bit Slackware: -SMP32=${SMP32:-"YES"} +# Set to YES if you want to use the SMP kernel on 32bit Slackware: +SMP32=${SMP32:-"NO"} # Include support for NFS root (PXE boot), will increase size of the initrd: NFSROOTSUP=${NFSROOTSUP:-"YES"} |