removed Freenix branding

changed name to Slackware-Libre
This commit is contained in:
shelldweller 2023-06-14 11:11:39 -05:00
parent a93ac9ab41
commit 8f0e00a844
5 changed files with 11 additions and 11 deletions

View file

@ -1,9 +1,9 @@
A project in the works to convert an installed Slackware-15.0 system into a Freenix-15.0 system. A project in the works to remove non-free packages from an installed Slackware-15.0 system.
Both 64-bit and 32-bit versions can be converted. Both 64-bit and 32-bit versions can be liberated.
There are 4 scripts in total: There are 4 scripts in total:
# slackware2freenix.sh # slackware-libre.sh
This is a meta-script that just runs the other three with necessary arguments. This is a meta-script that just runs the other three with necessary arguments.
Needs to be run as root. Needs to be run as root.
@ -36,7 +36,7 @@ RELEASE = release version of Slackware (i.e. 15.0). Fetches from running system
REPOURL = URL of your preferred repo. (default = https://mirrors.slackware.com) REPOURL = URL of your preferred repo. (default = https://mirrors.slackware.com)
BUILDDIR = directory to build kernels in. (default =/tmp/linux-libre-4-freenix) BUILDDIR = directory to build kernels in. (default =/tmp/slackware-libre)
BLACKLISTFILE = the location of your slackpkg blacklist file (default = /etc/slackpkg/blacklist) BLACKLISTFILE = the location of your slackpkg blacklist file (default = /etc/slackpkg/blacklist)
@ -54,7 +54,7 @@ RELEASE = release version of Slackware (i.e. 15.0). Fetches from running system
REPOURL = URL of your preferred repo. (default = https://mirrors.slackware.com) REPOURL = URL of your preferred repo. (default = https://mirrors.slackware.com)
BUILDDIR = directory to build kernels in. (default =/tmp/linux-libre-4-freenix) BUILDDIR = directory to build kernels in. (default =/tmp/slackware-libre)
BLACKLISTFILE = the location of your slackpkg blacklist file (default = /etc/slackpkg/blacklist) BLACKLISTFILE = the location of your slackpkg blacklist file (default = /etc/slackpkg/blacklist)

View file

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
####################################################################### #######################################################################
# Slackware(64)-15.0 to Freenix(64)-15.0 script, part 3 # Slackware(64)-Libre script, part 3
# Linux-Libre firmware builder and installer # Linux-Libre firmware builder and installer
# written by krt@beauxbead.com / krt.beauxbead.com # written by krt@beauxbead.com / krt.beauxbead.com
# Released under the WTFPL 2.0 http://www.wtfpl.net/ # Released under the WTFPL 2.0 http://www.wtfpl.net/
@ -25,7 +25,7 @@ RELEASE=${RELEASE:-$(grep '^VERSION=' /etc/os-release | cut -d '=' -f 2 | sed 's
REPOURL=${REPOURL:-'https://mirrors.slackware.com'} REPOURL=${REPOURL:-'https://mirrors.slackware.com'}
# prepare for kernel building # prepare for kernel building
BUILDDIR=${BUILDDIR:-'/tmp/linux-libre-4-freenix'} BUILDDIR=${BUILDDIR:-'/tmp/slackware-libre'}
# Set blacklist file, just in case... # Set blacklist file, just in case...
BLACKLISTFILE=${BLACKLISTFILE:-'/etc/slackpkg/blacklist'} BLACKLISTFILE=${BLACKLISTFILE:-'/etc/slackpkg/blacklist'}

View file

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
####################################################################### #######################################################################
# Slackware(64)-15.0 to Freenix(64)-15.0 script, part 2: # Slackware(64)-Libre script, part 2:
# Linux-Libre kernel builder and package installer # Linux-Libre kernel builder and package installer
# written by krt@beauxbead.com / krt.beauxbead.com # written by krt@beauxbead.com / krt.beauxbead.com
# Released under the WTFPL 2.0 http://www.wtfpl.net/ # Released under the WTFPL 2.0 http://www.wtfpl.net/
@ -28,7 +28,7 @@ INSTALL_KERNEL=${INSTALL_KERNEL:-'no'}
RELEASE=$(grep '^VERSION=' /etc/os-release | cut -d '=' -f 2 | sed 's/"//g') RELEASE=$(grep '^VERSION=' /etc/os-release | cut -d '=' -f 2 | sed 's/"//g')
# prepare for kernel building # prepare for kernel building
BUILDDIR=${BUILDDIR:-'/tmp/linux-libre-4-freenix'} BUILDDIR=${BUILDDIR:-'/tmp/slackware-libre'}
rm -r ${BUILDDIR} rm -r ${BUILDDIR}
mkdir ${BUILDDIR} mkdir ${BUILDDIR}
cd ${BUILDDIR} cd ${BUILDDIR}

View file

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
################################################################################### ###################################################################################
# Slackware(64)-15.0 to Freenix(64)-15.0 script, part 1: # Slackware(64)-Libre script, part 1:
# Non-free package remover and blacklister # Non-free package remover and blacklister
# written by krt@beauxbead.com / krt.beauxbead.com # written by krt@beauxbead.com / krt.beauxbead.com
# Released under the WTFPL 2.0 http://www.wtfpl.net/ # Released under the WTFPL 2.0 http://www.wtfpl.net/

View file

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
####################################################################### #######################################################################
# Slackware(64)-15.0 to Freenix(64)-15.0 script, all three parts: # Slackware(64)-Libre script, all three parts:
# Remove nonfree packages, build & install libre kernel & firmware # Remove nonfree packages, build & install libre kernel & firmware
# written by krt@beauxbead.com / krt.beauxbead.com # written by krt@beauxbead.com / krt.beauxbead.com
# Released under the WTFPL 2.0 http://www.wtfpl.net/ # Released under the WTFPL 2.0 http://www.wtfpl.net/