Slackware-Libre/README.md

75 lines
2.6 KiB
Markdown
Raw Permalink Normal View History

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 liberated.
2023-06-13 01:38:17 +02:00
There are 4 scripts in total:
# slackware-libre.sh
2023-06-13 01:49:54 +02:00
This is a meta-script that just runs the other three with necessary arguments.
Needs to be run as root.
2023-06-13 18:01:26 +02:00
# remove-blacklist-nonfree-packages.sh
This removes and blacklists all non-free packages as per freenix.net.
This script can probably be run on any Slackware-based derivative, as long as slackpkg is present.
arguments:
2023-06-14 19:18:48 +02:00
- BLACKLISTFILE = the location of your slackpkg blacklist file (default = /etc/slackpkg/blacklist)
2023-06-13 18:01:26 +02:00
# linux-libre-kernel-build-instsall.sh
This builds and installs the Linux-Libre kernel, headers, modules.
Modifies stock kernel-configs and SlackBuild files.
arguments:
2023-06-14 19:18:48 +02:00
- STOCKVERSION = version of stock kernel to use kernel-configs from (default grabs latest from repo)
2023-06-14 19:18:48 +02:00
- MAJORVERSION = branch of libre kernel to build from (defaults to stock kernel branch, i.e. 5.15)
2023-06-14 19:18:48 +02:00
- LIBREVERSION = version of Linux-libre acutally being builg (defaults to latest version in MAJORVERSION branch)
2023-06-14 19:18:48 +02:00
- RELEASE = release version of Slackware (i.e. 15.0). Fetches from running system by default.
2023-06-14 19:18:48 +02:00
- REPOURL = URL of your preferred repo. (default = https://mirrors.slackware.com)
2023-06-14 19:18:48 +02:00
- BUILDDIR = directory to build kernels in. THIS GETS DELETED, SO DON'T PASS AN IMPORTANT DIRECTORY YOU NEED TO KEEP! (default =/tmp/slackware-libre)
2023-06-14 19:18:48 +02:00
- BLACKLISTFILE = the location of your slackpkg blacklist file (default = /etc/slackpkg/blacklist)
2023-06-14 19:18:48 +02:00
- INSTALL_KERNEL = install packages after building them (default = no)
2023-06-13 18:01:26 +02:00
# linux-libre-firmware-build-install.sh
This builds and installs the Linux-libre firmware.
Modifies stock SlackBuild file.
arguments:
2023-06-14 19:18:48 +02:00
- RELEASE = release version of Slackware (i.e. 15.0). Fetches from running system by default.
2023-06-14 19:18:48 +02:00
- REPOURL = URL of your preferred repo. (default = https://mirrors.slackware.com)
2023-06-14 19:18:48 +02:00
- BUILDDIR = directory to build firmware in. THIS GETS DELETED, SO DON'T PASS AN IMPORTANT DIRECTORY YOU NEED TO KEEP! (default =/tmp/slackware-libre)
2023-06-14 19:18:48 +02:00
- BLACKLISTFILE = the location of your slackpkg blacklist file (default = /etc/slackpkg/blacklist)
2023-06-14 19:18:48 +02:00
- INSTALL_FIRMWARE = install packages after building them (default = no)
2023-06-14 19:18:48 +02:00
## NOTES:
- The script DOES NOT clean up after itself.
- You are invited to delete any leftover files and directories in /tmp/ .
- However, the modified SlackBuild scripts and kernel packages all reside there.
- You may want to save or share these before clearing out /tmp/ .
- You will need about 10GB-12GB of free space for the full build.