summaryrefslogtreecommitdiffstats
path: root/source/k/packaging-x86
diff options
context:
space:
mode:
Diffstat (limited to 'source/k/packaging-x86')
-rwxr-xr-xsource/k/packaging-x86/kernel-generic-smp/kernel-generic-smp.SlackBuild78
-rw-r--r--source/k/packaging-x86/kernel-generic-smp/slack-desc19
-rwxr-xr-xsource/k/packaging-x86/kernel-generic/kernel-generic.SlackBuild77
-rw-r--r--source/k/packaging-x86/kernel-generic/slack-desc19
-rwxr-xr-xsource/k/packaging-x86/kernel-huge-smp/kernel-huge-smp.SlackBuild78
-rw-r--r--source/k/packaging-x86/kernel-huge-smp/slack-desc19
-rwxr-xr-xsource/k/packaging-x86/kernel-huge/kernel-huge.SlackBuild78
-rw-r--r--source/k/packaging-x86/kernel-huge/slack-desc19
-rwxr-xr-xsource/k/packaging-x86/kernel-modules-smp/kernel-modules-smp.SlackBuild57
-rw-r--r--source/k/packaging-x86/kernel-modules-smp/slack-desc20
-rwxr-xr-xsource/k/packaging-x86/kernel-modules/kernel-modules.SlackBuild57
-rw-r--r--source/k/packaging-x86/kernel-modules/slack-desc19
12 files changed, 0 insertions, 540 deletions
diff --git a/source/k/packaging-x86/kernel-generic-smp/kernel-generic-smp.SlackBuild b/source/k/packaging-x86/kernel-generic-smp/kernel-generic-smp.SlackBuild
deleted file mode 100755
index 5e6606b7c..000000000
--- a/source/k/packaging-x86/kernel-generic-smp/kernel-generic-smp.SlackBuild
+++ /dev/null
@@ -1,78 +0,0 @@
-#!/bin/sh
-TMP=/tmp
-CWD=`pwd`
-PKG=/tmp/package-kernel
-
-# Fill this stuff in:
-
-KERNNAME=generic-smp
-VERSION=${VERSION:-4.4.14}
-ARCH=${ARCH:-i686}
-BUILD=${BUILD:-1}
-
-# First try to find the loot in the current dir, then look
-# in /usr/src/linux-$VERSION:
-if [ -r $CWD/bzImage ]; then
- KERNEL=$CWD/bzImage
-elif [ -r $CWD/vmlinuz ]; then
- KERNEL=$CWD/vmlinuz
-elif [ -r $CWD/vmlinuz* ]; then
- KERNEL=$CWD/vmlinuz*
-else
- KERNEL=/usr/src/linux-$VERSION/arch/i386/boot/bzImage
-fi
-
-if [ -r $CWD/System.map.gz ]; then
- gzip -d $CWD/System.map.gz
-elif [ -r $CWD/System.map.bz2 ]; then
- bzip2 -d $CWD/System.map.bz2
-fi
-
-if [ -r $CWD/System.map ]; then
- SYSMAP=$CWD/System.map
-elif [ -r $CWD/System.map* ]; then
- SYSMAP=$CWD/System.map*
-else
- SYSMAP=/usr/src/linux-$VERSION/System.map
-fi
-if [ -r $CWD/config ]; then
- CONFIG=$CWD/config
-elif [ -r $CWD/config* ]; then
- CONFIG=$CWD/config*
-elif [ -r $CWD/.config ]; then
- CONFIG=$CWD/.config
-else
- CONFIG=/usr/src/linux-$VERSION/.config
-fi
-
-cat << EOF
-Building kernel-$KERNNAME-${VERSION}_smp-$ARCH-$BUILD.txz
-using these source files:
-
-KERNEL = $KERNEL
-SYSMAP = $SYSMAP
-CONFIG = $CONFIG
-
-EOF
-
-rm -rf $PKG
-mkdir -p $PKG
-mkdir -p $PKG/boot
-cp $KERNEL $PKG/boot/vmlinuz-$KERNNAME-${VERSION}-smp
-( cd $PKG/boot ; ln -sf vmlinuz-$KERNNAME-${VERSION}-smp vmlinuz )
-( cd $PKG/boot ; ln -sf vmlinuz-$KERNNAME-${VERSION}-smp vmlinuz-generic-smp )
-cp $SYSMAP $PKG/boot/System.map-$KERNNAME-${VERSION}-smp
-( cd $PKG/boot ; ln -sf System.map-$KERNNAME-${VERSION}-smp System.map )
-cp $CONFIG $PKG/boot/config-$KERNNAME-${VERSION}-smp
-( cd $PKG/boot ; ln -sf config-$KERNNAME-${VERSION}-smp config )
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-
-# Build the package:
-cd $PKG
-makepkg -l y -c n $TMP/kernel-$KERNNAME-$(echo ${VERSION} | tr - _)_smp-$ARCH-$BUILD.txz
-
-# Clean up the extra stuff:
-if [ "$1" = "--cleanup" ]; then
- rm -rf $PKG
-fi
diff --git a/source/k/packaging-x86/kernel-generic-smp/slack-desc b/source/k/packaging-x86/kernel-generic-smp/slack-desc
deleted file mode 100644
index 5576aeaae..000000000
--- a/source/k/packaging-x86/kernel-generic-smp/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# HOW TO EDIT THIS FILE:
-# The "handy ruler" below makes it easier to edit a package description. Line
-# up the first '|' above the ':' following the base package name, and the '|'
-# on the right side marks the last column you can put a character in. You must
-# make exactly 11 lines for the formatting to be correct. It's also
-# customary to leave one space after the ':'.
-
- |-----handy-ruler------------------------------------------------------|
-kernel-generic-smp: kernel-generic-smp (a general purpose SMP Linux kernel)
-kernel-generic-smp:
-kernel-generic-smp: This is a Linux kernel with built-in support for most disk
-kernel-generic-smp: controllers. To use filesystems, or to load support for a SCSI or
-kernel-generic-smp: other controller, then you'll need to load one or more kernel
-kernel-generic-smp: modules using an initial ramdisk, or initrd. For more information
-kernel-generic-smp: about creating an initrd, see the README.initrd file in the /boot
-kernel-generic-smp: directory.
-kernel-generic-smp:
-kernel-generic-smp: SMP is "Symmetric multiprocessing", or multiple CPU/core support.
-kernel-generic-smp:
diff --git a/source/k/packaging-x86/kernel-generic/kernel-generic.SlackBuild b/source/k/packaging-x86/kernel-generic/kernel-generic.SlackBuild
deleted file mode 100755
index 5d97ad285..000000000
--- a/source/k/packaging-x86/kernel-generic/kernel-generic.SlackBuild
+++ /dev/null
@@ -1,77 +0,0 @@
-TMP=/tmp
-CWD=`pwd`
-PKG=/tmp/package-kernel
-
-# Fill this stuff in:
-
-KERNNAME=generic
-VERSION=${VERSION:-4.4.14}
-ARCH=${ARCH:-i586}
-BUILD=${BUILD:-1}
-
-# First try to find the loot in the current dir, then look
-# in /usr/src/linux-$VERSION:
-if [ -r $CWD/bzImage ]; then
- KERNEL=$CWD/bzImage
-elif [ -r $CWD/vmlinuz ]; then
- KERNEL=$CWD/vmlinuz
-elif [ -r $CWD/vmlinuz* ]; then
- KERNEL=$CWD/vmlinuz*
-else
- KERNEL=/usr/src/linux-$VERSION/arch/i386/boot/bzImage
-fi
-
-if [ -r $CWD/System.map.gz ]; then
- gzip -d $CWD/System.map.gz
-elif [ -r $CWD/System.map.bz2 ]; then
- bzip2 -d $CWD/System.map.bz2
-fi
-
-if [ -r $CWD/System.map ]; then
- SYSMAP=$CWD/System.map
-elif [ -r $CWD/System.map* ]; then
- SYSMAP=$CWD/System.map*
-else
- SYSMAP=/usr/src/linux-$VERSION/System.map
-fi
-if [ -r $CWD/config ]; then
- CONFIG=$CWD/config
-elif [ -r $CWD/config* ]; then
- CONFIG=$CWD/config*
-elif [ -r $CWD/.config ]; then
- CONFIG=$CWD/.config
-else
- CONFIG=/usr/src/linux-$VERSION/.config
-fi
-
-cat << EOF
-Building kernel-$KERNNAME-${VERSION}-$ARCH-$BUILD.txz
-using these source files:
-
-KERNEL = $KERNEL
-SYSMAP = $SYSMAP
-CONFIG = $CONFIG
-
-EOF
-
-rm -rf $PKG
-mkdir -p $PKG
-mkdir -p $PKG/boot
-cp $KERNEL $PKG/boot/vmlinuz-$KERNNAME-${VERSION}
-( cd $PKG/boot ; ln -sf vmlinuz-$KERNNAME-${VERSION} vmlinuz )
-( cd $PKG/boot ; ln -sf vmlinuz-$KERNNAME-${VERSION} vmlinuz-generic )
-cp $SYSMAP $PKG/boot/System.map-$KERNNAME-${VERSION}
-( cd $PKG/boot ; ln -sf System.map-$KERNNAME-${VERSION} System.map )
-cp $CONFIG $PKG/boot/config-$KERNNAME-${VERSION}
-( cd $PKG/boot ; ln -sf config-$KERNNAME-${VERSION} config )
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-
-# Build the package:
-cd $PKG
-makepkg -l y -c n $TMP/kernel-$KERNNAME-${VERSION}-$ARCH-$BUILD.txz
-
-# Clean up the extra stuff:
-if [ "$1" = "--cleanup" ]; then
- rm -rf $PKG
-fi
diff --git a/source/k/packaging-x86/kernel-generic/slack-desc b/source/k/packaging-x86/kernel-generic/slack-desc
deleted file mode 100644
index 120edbc17..000000000
--- a/source/k/packaging-x86/kernel-generic/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# HOW TO EDIT THIS FILE:
-# The "handy ruler" below makes it easier to edit a package description. Line
-# up the first '|' above the ':' following the base package name, and the '|'
-# on the right side marks the last column you can put a character in. You must
-# make exactly 11 lines for the formatting to be correct. It's also
-# customary to leave one space after the ':'.
-
- |-----handy-ruler------------------------------------------------------|
-kernel-generic: kernel-generic (a general purpose single processor Linux kernel)
-kernel-generic:
-kernel-generic: A Linux kernel with built-in support for most disk controllers.
-kernel-generic: For filesystem support, or if you need to load support for a SCSI or
-kernel-generic: other controller, then you'll need to load one or more kernel modules
-kernel-generic: using an initial ramdisk, or initrd. For more information about
-kernel-generic: creating an initrd, see the README.initrd file in the /boot directory.
-kernel-generic:
-kernel-generic:
-kernel-generic:
-kernel-generic:
diff --git a/source/k/packaging-x86/kernel-huge-smp/kernel-huge-smp.SlackBuild b/source/k/packaging-x86/kernel-huge-smp/kernel-huge-smp.SlackBuild
deleted file mode 100755
index ee51df325..000000000
--- a/source/k/packaging-x86/kernel-huge-smp/kernel-huge-smp.SlackBuild
+++ /dev/null
@@ -1,78 +0,0 @@
-#!/bin/sh
-TMP=/tmp
-CWD=`pwd`
-PKG=/tmp/package-kernel
-
-# Fill this stuff in:
-
-KERNNAME=huge-smp
-VERSION=${VERSION:-4.4.14}
-ARCH=${ARCH:-i686}
-BUILD=${BUILD:-1}
-
-# First try to find the loot in the current dir, then look
-# in /usr/src/linux-$VERSION:
-if [ -r $CWD/bzImage ]; then
- KERNEL=$CWD/bzImage
-elif [ -r $CWD/vmlinuz ]; then
- KERNEL=$CWD/vmlinuz
-elif [ -r $CWD/vmlinuz* ]; then
- KERNEL=$CWD/vmlinuz*
-else
- KERNEL=/usr/src/linux-$VERSION/arch/i386/boot/bzImage
-fi
-
-if [ -r $CWD/System.map.gz ]; then
- gzip -d $CWD/System.map.gz
-elif [ -r $CWD/System.map.bz2 ]; then
- bzip2 -d $CWD/System.map.bz2
-fi
-
-if [ -r $CWD/System.map ]; then
- SYSMAP=$CWD/System.map
-elif [ -r $CWD/System.map* ]; then
- SYSMAP=$CWD/System.map*
-else
- SYSMAP=/usr/src/linux-$VERSION/System.map
-fi
-if [ -r $CWD/config ]; then
- CONFIG=$CWD/config
-elif [ -r $CWD/config* ]; then
- CONFIG=$CWD/config*
-elif [ -r $CWD/.config ]; then
- CONFIG=$CWD/.config
-else
- CONFIG=/usr/src/linux-$VERSION/.config
-fi
-
-cat << EOF
-Building kernel-$KERNNAME-${VERSION}_smp-$ARCH-$BUILD.txz
-using these source files:
-
-KERNEL = $KERNEL
-SYSMAP = $SYSMAP
-CONFIG = $CONFIG
-
-EOF
-
-rm -rf $PKG
-mkdir -p $PKG
-mkdir -p $PKG/boot
-cp $KERNEL $PKG/boot/vmlinuz-$KERNNAME-${VERSION}-smp
-( cd $PKG/boot ; ln -sf vmlinuz-$KERNNAME-${VERSION}-smp vmlinuz )
-( cd $PKG/boot ; ln -sf vmlinuz-$KERNNAME-${VERSION}-smp vmlinuz-huge-smp )
-cp $SYSMAP $PKG/boot/System.map-$KERNNAME-${VERSION}-smp
-( cd $PKG/boot ; ln -sf System.map-$KERNNAME-${VERSION}-smp System.map )
-cp $CONFIG $PKG/boot/config-$KERNNAME-${VERSION}-smp
-( cd $PKG/boot ; ln -sf config-$KERNNAME-${VERSION}-smp config )
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-
-# Build the package:
-cd $PKG
-makepkg -l y -c n $TMP/kernel-$KERNNAME-$(echo ${VERSION} | tr - _)_smp-$ARCH-$BUILD.txz
-
-# Clean up the extra stuff:
-if [ "$1" = "--cleanup" ]; then
- rm -rf $PKG
-fi
diff --git a/source/k/packaging-x86/kernel-huge-smp/slack-desc b/source/k/packaging-x86/kernel-huge-smp/slack-desc
deleted file mode 100644
index 3feb59850..000000000
--- a/source/k/packaging-x86/kernel-huge-smp/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# HOW TO EDIT THIS FILE:
-# The "handy ruler" below makes it easier to edit a package description. Line
-# up the first '|' above the ':' following the base package name, and the '|'
-# on the right side marks the last column you can put a character in. You must
-# make exactly 11 lines for the formatting to be correct. It's also
-# customary to leave one space after the ':'.
-
- |-----handy-ruler------------------------------------------------------|
-kernel-huge-smp: kernel-huge-smp (a fully-loaded SMP Linux kernel)
-kernel-huge-smp:
-kernel-huge-smp: This is a Linux kernel with built-in support for most disk
-kernel-huge-smp: controllers. If you're looking for a more stripped down kernel
-kernel-huge-smp: (this one contains everything but the kitchen sink ;-), then install
-kernel-huge-smp: the kernel-generic-smp in the /boot directory along with an initrd to
-kernel-huge-smp: load support for your boot device and filesystem. For instructions
-kernel-huge-smp: on the initrd, see README.initrd in the /boot directory.
-kernel-huge-smp:
-kernel-huge-smp: SMP is "Symmetric multiprocessing", or multiple CPU/core support.
-kernel-huge-smp:
diff --git a/source/k/packaging-x86/kernel-huge/kernel-huge.SlackBuild b/source/k/packaging-x86/kernel-huge/kernel-huge.SlackBuild
deleted file mode 100755
index df65dc6d1..000000000
--- a/source/k/packaging-x86/kernel-huge/kernel-huge.SlackBuild
+++ /dev/null
@@ -1,78 +0,0 @@
-#!/bin/sh
-TMP=/tmp
-CWD=`pwd`
-PKG=/tmp/package-kernel
-
-# Fill this stuff in:
-
-KERNNAME=huge
-VERSION=${VERSION:-4.4.14}
-ARCH=${ARCH:-i586}
-BUILD=${BUILD:-1}
-
-# First try to find the loot in the current dir, then look
-# in /usr/src/linux-$VERSION:
-if [ -r $CWD/bzImage ]; then
- KERNEL=$CWD/bzImage
-elif [ -r $CWD/vmlinuz ]; then
- KERNEL=$CWD/vmlinuz
-elif [ -r $CWD/vmlinuz* ]; then
- KERNEL=$CWD/vmlinuz*
-else
- KERNEL=/usr/src/linux-$VERSION/arch/i386/boot/bzImage
-fi
-
-if [ -r $CWD/System.map.gz ]; then
- gzip -d $CWD/System.map.gz
-elif [ -r $CWD/System.map.bz2 ]; then
- bzip2 -d $CWD/System.map.bz2
-fi
-
-if [ -r $CWD/System.map ]; then
- SYSMAP=$CWD/System.map
-elif [ -r $CWD/System.map* ]; then
- SYSMAP=$CWD/System.map*
-else
- SYSMAP=/usr/src/linux-$VERSION/System.map
-fi
-if [ -r $CWD/config ]; then
- CONFIG=$CWD/config
-elif [ -r $CWD/config* ]; then
- CONFIG=$CWD/config*
-elif [ -r $CWD/.config ]; then
- CONFIG=$CWD/.config
-else
- CONFIG=/usr/src/linux-$VERSION/.config
-fi
-
-cat << EOF
-Building kernel-$KERNNAME-${VERSION}-$ARCH-$BUILD.txz
-using these source files:
-
-KERNEL = $KERNEL
-SYSMAP = $SYSMAP
-CONFIG = $CONFIG
-
-EOF
-
-rm -rf $PKG
-mkdir -p $PKG
-mkdir -p $PKG/boot
-cp $KERNEL $PKG/boot/vmlinuz-$KERNNAME-${VERSION}
-( cd $PKG/boot ; ln -sf vmlinuz-$KERNNAME-${VERSION} vmlinuz )
-( cd $PKG/boot ; ln -sf vmlinuz-$KERNNAME-${VERSION} vmlinuz-huge )
-cp $SYSMAP $PKG/boot/System.map-$KERNNAME-${VERSION}
-( cd $PKG/boot ; ln -sf System.map-$KERNNAME-${VERSION} System.map )
-cp $CONFIG $PKG/boot/config-$KERNNAME-${VERSION}
-( cd $PKG/boot ; ln -sf config-$KERNNAME-${VERSION} config )
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-
-# Build the package:
-cd $PKG
-makepkg -l y -c n $TMP/kernel-$KERNNAME-${VERSION}-$ARCH-$BUILD.txz
-
-# Clean up the extra stuff:
-if [ "$1" = "--cleanup" ]; then
- rm -rf $PKG
-fi
diff --git a/source/k/packaging-x86/kernel-huge/slack-desc b/source/k/packaging-x86/kernel-huge/slack-desc
deleted file mode 100644
index 3c17276fd..000000000
--- a/source/k/packaging-x86/kernel-huge/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# HOW TO EDIT THIS FILE:
-# The "handy ruler" below makes it easier to edit a package description. Line
-# up the first '|' above the ':' following the base package name, and the '|'
-# on the right side marks the last column you can put a character in. You must
-# make exactly 11 lines for the formatting to be correct. It's also
-# customary to leave one space after the ':'.
-
- |-----handy-ruler------------------------------------------------------|
-kernel-huge: kernel-huge (a fully-loaded single processor Linux kernel)
-kernel-huge:
-kernel-huge: This is a Linux kernel with built-in support for most disk controllers
-kernel-huge: and filesystems. If you're looking for a more stripped down kernel
-kernel-huge: (this one contains everything but the kitchen sink ;-), then install
-kernel-huge: the kernel-generic from the /boot directory along with an initrd to
-kernel-huge: load support for your boot device and filesystem. For instructions
-kernel-huge: on the initrd, see README.initrd in the /boot directory.
-kernel-huge:
-kernel-huge:
-kernel-huge:
diff --git a/source/k/packaging-x86/kernel-modules-smp/kernel-modules-smp.SlackBuild b/source/k/packaging-x86/kernel-modules-smp/kernel-modules-smp.SlackBuild
deleted file mode 100755
index ab0673f94..000000000
--- a/source/k/packaging-x86/kernel-modules-smp/kernel-modules-smp.SlackBuild
+++ /dev/null
@@ -1,57 +0,0 @@
-#!/bin/sh
-
-# Copyright 2006, 2008, 2009, 2016 Patrick J. Volkerding, Sebeka, MN, USA
-# All rights reserved.
-#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
-# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-CWD=`pwd`
-TMP=${TMP:-/tmp}
-PKG=$TMP/package-kernel-modules-smp
-
-VERSION=${VERSION:-4.4.14}
-KERNELRELEASE=${KERNELRELEASE:-4.4.14-smp}
-ARCH=${ARCH:-i686}
-BUILD=${BUILD:-1}
-
-if [ ! -d $TMP ]; then
- mkdir -p $TMP
-fi
-rm -rf $PKG
-mkdir -p $PKG
-echo "Using /lib/modules/${KERNELRELEASE}/"
-echo "Make sure these are *ready*... compressed, or not."
-echo "However you want 'em."
-sleep 5
-mkdir -p $PKG/lib/modules
-cp -a /lib/modules/${KERNELRELEASE} $PKG/lib/modules
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-
-# Write out the doinst.sh:
-cat << EOF > $PKG/install/doinst.sh
-# A good idea whenever kernel modules are added or changed:
-if [ -x sbin/depmod ]; then
- chroot . /sbin/depmod -a ${KERNELRELEASE} 1> /dev/null 2> /dev/null
-fi
-
-EOF
-
-cd $PKG
-makepkg -l y -c n $TMP/kernel-modules-smp-$(echo ${VERSION} | tr - _)_smp-$ARCH-$BUILD.txz
-
diff --git a/source/k/packaging-x86/kernel-modules-smp/slack-desc b/source/k/packaging-x86/kernel-modules-smp/slack-desc
deleted file mode 100644
index 4084f6642..000000000
--- a/source/k/packaging-x86/kernel-modules-smp/slack-desc
+++ /dev/null
@@ -1,20 +0,0 @@
-# HOW TO EDIT THIS FILE:
-# The "handy ruler" below makes it easier to edit a package description. Line
-# up the first '|' above the ':' following the base package name, and the '|'
-# on the right side marks the last column you can put a character in. You must
-# make exactly 11 lines for the formatting to be correct. It's also
-# customary to leave one space after the ':'.
-
- |-----handy-ruler------------------------------------------------------|
-kernel-modules-smp: kernel-modules (SMP Linux kernel modules)
-kernel-modules-smp:
-kernel-modules-smp: Kernel modules are pieces of code that can be loaded and unloaded into
-kernel-modules-smp: the kernel upon demand. They extend the functionality of the kernel
-kernel-modules-smp: without the need to reboot the system. These modules provide support
-kernel-modules-smp: for hardware such as USB devices, RAID controllers, network
-kernel-modules-smp: interfaces, and display devices, or add other additional capabilities
-kernel-modules-smp: to the kernel.
-kernel-modules-smp:
-kernel-modules-smp:
-kernel-modules-smp:
-
diff --git a/source/k/packaging-x86/kernel-modules/kernel-modules.SlackBuild b/source/k/packaging-x86/kernel-modules/kernel-modules.SlackBuild
deleted file mode 100755
index 400baf1ad..000000000
--- a/source/k/packaging-x86/kernel-modules/kernel-modules.SlackBuild
+++ /dev/null
@@ -1,57 +0,0 @@
-#!/bin/sh
-
-# Copyright 2006, 2008, 2009, 2016 Patrick J. Volkerding, Sebeka, MN, USA
-# All rights reserved.
-#
-# Redistribution and use of this script, with or without modification, is
-# permitted provided that the following conditions are met:
-#
-# 1. Redistributions of this script must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-#
-# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
-# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
-# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
-# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
-# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
-VERSION=${VERSION:-4.4.14}
-KERNELRELEASE=${KERNELRELEASE:-4.4.14}
-ARCH=${ARCH:-i586}
-BUILD=${BUILD:-1}
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp}
-PKG=$TMP/package-kernel-modules
-
-rm -rf $PKG
-mkdir -p $TMP $PKG
-
-echo "Using /lib/modules/${KERNELRELEASE}/"
-echo "Make sure these are *ready*... compressed, or not."
-echo "However you want 'em."
-sleep 5
-mkdir -p $PKG/lib/modules
-cp -a /lib/modules/${KERNELRELEASE} $PKG/lib/modules
-
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-
-# Write out the doinst.sh:
-cat << EOF > $PKG/install/doinst.sh
-# A good idea whenever kernel modules are added or changed:
-if [ -x sbin/depmod ]; then
- chroot . /sbin/depmod -a ${KERNELRELEASE} 1> /dev/null 2> /dev/null
-fi
-
-EOF
-
-cd $PKG
-/sbin/makepkg -l y -c n $TMP/kernel-modules-$(echo ${VERSION} | tr - _)-$ARCH-$BUILD.txz
-
diff --git a/source/k/packaging-x86/kernel-modules/slack-desc b/source/k/packaging-x86/kernel-modules/slack-desc
deleted file mode 100644
index 6bdea0215..000000000
--- a/source/k/packaging-x86/kernel-modules/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# HOW TO EDIT THIS FILE:
-# The "handy ruler" below makes it easier to edit a package description. Line
-# up the first '|' above the ':' following the base package name, and the '|'
-# on the right side marks the last column you can put a character in. You must
-# make exactly 11 lines for the formatting to be correct. It's also
-# customary to leave one space after the ':'.
-
- |-----handy-ruler------------------------------------------------------|
-kernel-modules: kernel-modules (Linux kernel modules)
-kernel-modules:
-kernel-modules: Kernel modules are pieces of code that can be loaded and unloaded into
-kernel-modules: the kernel upon demand. They extend the functionality of the kernel
-kernel-modules: without the need to reboot the system. These modules provide support
-kernel-modules: for hardware such as USB devices, RAID controllers, network
-kernel-modules: interfaces, and display devices, or add other additional capabilities
-kernel-modules: to the kernel.
-kernel-modules:
-kernel-modules:
-kernel-modules: