mirror of
git://slackware.nl/current.git
synced 2025-01-30 08:38:10 +01:00
Sat Oct 23 18:57:30 UTC 2021
a/aaa_terminfo-6.3-x86_64-1.txz: Upgraded. a/glibc-zoneinfo-2021e-noarch-1.txz: Upgraded. ap/itstool-2.0.7-x86_64-2.txz: Rebuilt. Rebuilt with PYTHON=/usr/bin/python3. Thanks to USUARIONUEVO. ap/mpg123-1.29.2-x86_64-1.txz: Upgraded. d/meson-0.59.3-x86_64-1.txz: Upgraded. d/parallel-20211022-noarch-1.txz: Upgraded. d/python-pip-21.3.1-x86_64-1.txz: Upgraded. d/python-setuptools-58.3.0-x86_64-1.txz: Upgraded. l/exiv2-0.27.5-x86_64-1.txz: Upgraded. l/ncurses-6.3-x86_64-1.txz: Upgraded. n/php-7.4.25-x86_64-1.txz: Upgraded. This update fixes bugs and a security issue: FPM: PHP-FPM oob R/W in root process leading to privilege escalation. For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-21703 (* Security fix *) xap/mozilla-thunderbird-91.2.1-x86_64-1.txz: Upgraded. This is a bugfix release. For more information, see: https://www.mozilla.org/en-US/thunderbird/91.2.1/releasenotes/ testing/packages/linux-5.14.x/kernel-generic-5.14.14-x86_64-2.txz: Rebuilt. testing/packages/linux-5.14.x/kernel-headers-5.14.14-x86-2.txz: Rebuilt. testing/packages/linux-5.14.x/kernel-huge-5.14.14-x86_64-2.txz: Rebuilt. testing/packages/linux-5.14.x/kernel-modules-5.14.14-x86_64-2.txz: Rebuilt. testing/packages/linux-5.14.x/kernel-source-5.14.14-noarch-2.txz: Rebuilt. These kernels enable CONFIG_PREEMPT=y and CONFIG_PREEMPT_DYNAMIC=y allowing the kernel preemption model to be specified on the kernel command line with one of these options: preempt=none, preempt=voluntary, and preempt=full. Since there is no .config option to set a default, and the default in the kernel sources is "full" (which is probably not a good default), the kernel-source.SlackBuild has been modified to add support for an environment variable CONFIG_PREEMPT_DEFAULT_MODE which can be set to none, voluntary, or full to set the default kernel preemption model when a command line option is not provided. These kernels have been built with a preemption model of "none" (presumably the safest choice which will behave like the kernels we have shipped before.) The runtime overhead on 64-bit should be negligible. On 32-bit we lack support for HAVE_STATIC_CALL_INLINE, so spinlocks and mutexes will have to be approached through a trampoline, adding a very small amount of overhead. I feel this is probably worth it in order to have the option to run a kernel with voluntary or full preemption, especially for gaming or desktop purposes. The reduction in input lag with these modes is actually quite noticable. To check the current preemption model, you may use debugfs: mount -t debugfs none /sys/kernel/debug cat /sys/kernel/debug/sched/preempt (none) voluntary full You may change to a different preemption model on the fly once debugfs is mounted: echo voluntary > /sys/kernel/debug/sched/preempt cat /sys/kernel/debug/sched/preempt none (voluntary) full Thanks to Daedra. -DRM_I810 n -INLINE_READ_UNLOCK y -INLINE_READ_UNLOCK_IRQ y -INLINE_SPIN_UNLOCK_IRQ y -INLINE_WRITE_UNLOCK y -INLINE_WRITE_UNLOCK_IRQ y PREEMPT n -> y PREEMPT_VOLUNTARY y -> n +CEC_GPIO n +DEBUG_PREEMPT y +PREEMPTION y +PREEMPT_COUNT y +PREEMPT_DYNAMIC y +PREEMPT_RCU y +PREEMPT_TRACER n +RCU_BOOST n +TASKS_RCU y +UNINLINE_SPIN_UNLOCK y
This commit is contained in:
parent
1bb03caa09
commit
9d31c53bf5
34 changed files with 62250 additions and 115 deletions
|
@ -11,9 +11,90 @@
|
|||
<description>Tracking Slackware development in git.</description>
|
||||
<language>en-us</language>
|
||||
<id xmlns="http://www.w3.org/2005/Atom">urn:uuid:c964f45e-6732-11e8-bbe5-107b4450212f</id>
|
||||
<pubDate>Thu, 21 Oct 2021 19:36:32 GMT</pubDate>
|
||||
<lastBuildDate>Fri, 22 Oct 2021 06:59:49 GMT</lastBuildDate>
|
||||
<pubDate>Sat, 23 Oct 2021 18:57:30 GMT</pubDate>
|
||||
<lastBuildDate>Sun, 24 Oct 2021 06:59:47 GMT</lastBuildDate>
|
||||
<generator>maintain_current_git.sh v 1.12</generator>
|
||||
<item>
|
||||
<title>Sat, 23 Oct 2021 18:57:30 GMT</title>
|
||||
<pubDate>Sat, 23 Oct 2021 18:57:30 GMT</pubDate>
|
||||
<link>https://git.slackware.nl/current/tag/?h=20211023185730</link>
|
||||
<guid isPermaLink="false">20211023185730</guid>
|
||||
<description>
|
||||
<![CDATA[<pre>
|
||||
a/aaa_terminfo-6.3-x86_64-1.txz: Upgraded.
|
||||
a/glibc-zoneinfo-2021e-noarch-1.txz: Upgraded.
|
||||
ap/itstool-2.0.7-x86_64-2.txz: Rebuilt.
|
||||
Rebuilt with PYTHON=/usr/bin/python3. Thanks to USUARIONUEVO.
|
||||
ap/mpg123-1.29.2-x86_64-1.txz: Upgraded.
|
||||
d/meson-0.59.3-x86_64-1.txz: Upgraded.
|
||||
d/parallel-20211022-noarch-1.txz: Upgraded.
|
||||
d/python-pip-21.3.1-x86_64-1.txz: Upgraded.
|
||||
d/python-setuptools-58.3.0-x86_64-1.txz: Upgraded.
|
||||
l/exiv2-0.27.5-x86_64-1.txz: Upgraded.
|
||||
l/ncurses-6.3-x86_64-1.txz: Upgraded.
|
||||
n/php-7.4.25-x86_64-1.txz: Upgraded.
|
||||
This update fixes bugs and a security issue:
|
||||
FPM: PHP-FPM oob R/W in root process leading to privilege escalation.
|
||||
For more information, see:
|
||||
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-21703
|
||||
(* Security fix *)
|
||||
xap/mozilla-thunderbird-91.2.1-x86_64-1.txz: Upgraded.
|
||||
This is a bugfix release.
|
||||
For more information, see:
|
||||
https://www.mozilla.org/en-US/thunderbird/91.2.1/releasenotes/
|
||||
testing/packages/linux-5.14.x/kernel-generic-5.14.14-x86_64-2.txz: Rebuilt.
|
||||
testing/packages/linux-5.14.x/kernel-headers-5.14.14-x86-2.txz: Rebuilt.
|
||||
testing/packages/linux-5.14.x/kernel-huge-5.14.14-x86_64-2.txz: Rebuilt.
|
||||
testing/packages/linux-5.14.x/kernel-modules-5.14.14-x86_64-2.txz: Rebuilt.
|
||||
testing/packages/linux-5.14.x/kernel-source-5.14.14-noarch-2.txz: Rebuilt.
|
||||
These kernels enable CONFIG_PREEMPT=y and CONFIG_PREEMPT_DYNAMIC=y allowing
|
||||
the kernel preemption model to be specified on the kernel command line
|
||||
with one of these options: preempt=none, preempt=voluntary, and preempt=full.
|
||||
Since there is no .config option to set a default, and the default in the
|
||||
kernel sources is "full" (which is probably not a good default), the
|
||||
kernel-source.SlackBuild has been modified to add support for an environment
|
||||
variable CONFIG_PREEMPT_DEFAULT_MODE which can be set to none, voluntary, or
|
||||
full to set the default kernel preemption model when a command line option
|
||||
is not provided. These kernels have been built with a preemption model of
|
||||
"none" (presumably the safest choice which will behave like the kernels we
|
||||
have shipped before.) The runtime overhead on 64-bit should be negligible.
|
||||
On 32-bit we lack support for HAVE_STATIC_CALL_INLINE, so spinlocks and
|
||||
mutexes will have to be approached through a trampoline, adding a very small
|
||||
amount of overhead. I feel this is probably worth it in order to have the
|
||||
option to run a kernel with voluntary or full preemption, especially for
|
||||
gaming or desktop purposes. The reduction in input lag with these modes is
|
||||
actually quite noticable.
|
||||
To check the current preemption model, you may use debugfs:
|
||||
mount -t debugfs none /sys/kernel/debug
|
||||
cat /sys/kernel/debug/sched/preempt
|
||||
(none) voluntary full
|
||||
You may change to a different preemption model on the fly once debugfs is
|
||||
mounted:
|
||||
echo voluntary > /sys/kernel/debug/sched/preempt
|
||||
cat /sys/kernel/debug/sched/preempt
|
||||
none (voluntary) full
|
||||
Thanks to Daedra.
|
||||
-DRM_I810 n
|
||||
-INLINE_READ_UNLOCK y
|
||||
-INLINE_READ_UNLOCK_IRQ y
|
||||
-INLINE_SPIN_UNLOCK_IRQ y
|
||||
-INLINE_WRITE_UNLOCK y
|
||||
-INLINE_WRITE_UNLOCK_IRQ y
|
||||
PREEMPT n -> y
|
||||
PREEMPT_VOLUNTARY y -> n
|
||||
+CEC_GPIO n
|
||||
+DEBUG_PREEMPT y
|
||||
+PREEMPTION y
|
||||
+PREEMPT_COUNT y
|
||||
+PREEMPT_DYNAMIC y
|
||||
+PREEMPT_RCU y
|
||||
+PREEMPT_TRACER n
|
||||
+RCU_BOOST n
|
||||
+TASKS_RCU y
|
||||
+UNINLINE_SPIN_UNLOCK y
|
||||
</pre>]]>
|
||||
</description>
|
||||
</item>
|
||||
<item>
|
||||
<title>Thu, 21 Oct 2021 19:36:32 GMT</title>
|
||||
<pubDate>Thu, 21 Oct 2021 19:36:32 GMT</pubDate>
|
||||
|
|
|
@ -1,3 +1,76 @@
|
|||
Sat Oct 23 18:57:30 UTC 2021
|
||||
a/aaa_terminfo-6.3-x86_64-1.txz: Upgraded.
|
||||
a/glibc-zoneinfo-2021e-noarch-1.txz: Upgraded.
|
||||
ap/itstool-2.0.7-x86_64-2.txz: Rebuilt.
|
||||
Rebuilt with PYTHON=/usr/bin/python3. Thanks to USUARIONUEVO.
|
||||
ap/mpg123-1.29.2-x86_64-1.txz: Upgraded.
|
||||
d/meson-0.59.3-x86_64-1.txz: Upgraded.
|
||||
d/parallel-20211022-noarch-1.txz: Upgraded.
|
||||
d/python-pip-21.3.1-x86_64-1.txz: Upgraded.
|
||||
d/python-setuptools-58.3.0-x86_64-1.txz: Upgraded.
|
||||
l/exiv2-0.27.5-x86_64-1.txz: Upgraded.
|
||||
l/ncurses-6.3-x86_64-1.txz: Upgraded.
|
||||
n/php-7.4.25-x86_64-1.txz: Upgraded.
|
||||
This update fixes bugs and a security issue:
|
||||
FPM: PHP-FPM oob R/W in root process leading to privilege escalation.
|
||||
For more information, see:
|
||||
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-21703
|
||||
(* Security fix *)
|
||||
xap/mozilla-thunderbird-91.2.1-x86_64-1.txz: Upgraded.
|
||||
This is a bugfix release.
|
||||
For more information, see:
|
||||
https://www.mozilla.org/en-US/thunderbird/91.2.1/releasenotes/
|
||||
testing/packages/linux-5.14.x/kernel-generic-5.14.14-x86_64-2.txz: Rebuilt.
|
||||
testing/packages/linux-5.14.x/kernel-headers-5.14.14-x86-2.txz: Rebuilt.
|
||||
testing/packages/linux-5.14.x/kernel-huge-5.14.14-x86_64-2.txz: Rebuilt.
|
||||
testing/packages/linux-5.14.x/kernel-modules-5.14.14-x86_64-2.txz: Rebuilt.
|
||||
testing/packages/linux-5.14.x/kernel-source-5.14.14-noarch-2.txz: Rebuilt.
|
||||
These kernels enable CONFIG_PREEMPT=y and CONFIG_PREEMPT_DYNAMIC=y allowing
|
||||
the kernel preemption model to be specified on the kernel command line
|
||||
with one of these options: preempt=none, preempt=voluntary, and preempt=full.
|
||||
Since there is no .config option to set a default, and the default in the
|
||||
kernel sources is "full" (which is probably not a good default), the
|
||||
kernel-source.SlackBuild has been modified to add support for an environment
|
||||
variable CONFIG_PREEMPT_DEFAULT_MODE which can be set to none, voluntary, or
|
||||
full to set the default kernel preemption model when a command line option
|
||||
is not provided. These kernels have been built with a preemption model of
|
||||
"none" (presumably the safest choice which will behave like the kernels we
|
||||
have shipped before.) The runtime overhead on 64-bit should be negligible.
|
||||
On 32-bit we lack support for HAVE_STATIC_CALL_INLINE, so spinlocks and
|
||||
mutexes will have to be approached through a trampoline, adding a very small
|
||||
amount of overhead. I feel this is probably worth it in order to have the
|
||||
option to run a kernel with voluntary or full preemption, especially for
|
||||
gaming or desktop purposes. The reduction in input lag with these modes is
|
||||
actually quite noticable.
|
||||
To check the current preemption model, you may use debugfs:
|
||||
mount -t debugfs none /sys/kernel/debug
|
||||
cat /sys/kernel/debug/sched/preempt
|
||||
(none) voluntary full
|
||||
You may change to a different preemption model on the fly once debugfs is
|
||||
mounted:
|
||||
echo voluntary > /sys/kernel/debug/sched/preempt
|
||||
cat /sys/kernel/debug/sched/preempt
|
||||
none (voluntary) full
|
||||
Thanks to Daedra.
|
||||
-DRM_I810 n
|
||||
-INLINE_READ_UNLOCK y
|
||||
-INLINE_READ_UNLOCK_IRQ y
|
||||
-INLINE_SPIN_UNLOCK_IRQ y
|
||||
-INLINE_WRITE_UNLOCK y
|
||||
-INLINE_WRITE_UNLOCK_IRQ y
|
||||
PREEMPT n -> y
|
||||
PREEMPT_VOLUNTARY y -> n
|
||||
+CEC_GPIO n
|
||||
+DEBUG_PREEMPT y
|
||||
+PREEMPTION y
|
||||
+PREEMPT_COUNT y
|
||||
+PREEMPT_DYNAMIC y
|
||||
+PREEMPT_RCU y
|
||||
+PREEMPT_TRACER n
|
||||
+RCU_BOOST n
|
||||
+TASKS_RCU y
|
||||
+UNINLINE_SPIN_UNLOCK y
|
||||
+--------------------------+
|
||||
Thu Oct 21 19:36:32 UTC 2021
|
||||
a/lvm2-2.03.13-x86_64-1.txz: Upgraded.
|
||||
Reverted to working version.
|
||||
|
|
256
FILELIST.TXT
256
FILELIST.TXT
|
@ -1,20 +1,20 @@
|
|||
Thu Oct 21 19:40:03 UTC 2021
|
||||
Sat Oct 23 19:06:27 UTC 2021
|
||||
|
||||
Here is the file list for this directory. If you are using a
|
||||
mirror site and find missing or extra files in the disk
|
||||
subdirectories, please have the archive administrator refresh
|
||||
the mirror.
|
||||
|
||||
drwxr-xr-x 12 root root 4096 2021-10-21 19:36 .
|
||||
drwxr-xr-x 12 root root 4096 2021-10-23 18:57 .
|
||||
-rw-r--r-- 1 root root 10064 2016-06-30 18:39 ./ANNOUNCE.14_2
|
||||
-rw-r--r-- 1 root root 15590 2021-08-07 23:14 ./CHANGES_AND_HINTS.TXT
|
||||
-rw-r--r-- 1 root root 1084902 2021-10-20 19:34 ./CHECKSUMS.md5
|
||||
-rw-r--r-- 1 root root 163 2021-10-20 19:34 ./CHECKSUMS.md5.asc
|
||||
-rw-r--r-- 1 root root 1084999 2021-10-21 19:40 ./CHECKSUMS.md5
|
||||
-rw-r--r-- 1 root root 163 2021-10-21 19:40 ./CHECKSUMS.md5.asc
|
||||
-rw-r--r-- 1 root root 17976 1994-06-10 02:28 ./COPYING
|
||||
-rw-r--r-- 1 root root 35147 2007-06-30 04:21 ./COPYING3
|
||||
-rw-r--r-- 1 root root 19573 2016-06-23 20:08 ./COPYRIGHT.TXT
|
||||
-rw-r--r-- 1 root root 616 2006-10-02 04:37 ./CRYPTO_NOTICE.TXT
|
||||
-rw-r--r-- 1 root root 1722818 2021-10-21 19:36 ./ChangeLog.txt
|
||||
-rw-r--r-- 1 root root 1726221 2021-10-23 18:57 ./ChangeLog.txt
|
||||
drwxr-xr-x 3 root root 4096 2013-03-20 22:17 ./EFI
|
||||
drwxr-xr-x 2 root root 4096 2021-10-20 19:29 ./EFI/BOOT
|
||||
-rw-r--r-- 1 root root 1187840 2021-06-15 19:16 ./EFI/BOOT/bootx64.efi
|
||||
|
@ -25,9 +25,9 @@ drwxr-xr-x 2 root root 4096 2021-10-20 19:29 ./EFI/BOOT
|
|||
-rwxr-xr-x 1 root root 2504 2019-07-05 18:54 ./EFI/BOOT/make-grub.sh
|
||||
-rw-r--r-- 1 root root 10722 2013-09-21 19:02 ./EFI/BOOT/osdetect.cfg
|
||||
-rw-r--r-- 1 root root 1273 2013-08-12 21:08 ./EFI/BOOT/tools.cfg
|
||||
-rw-r--r-- 1 root root 1412340 2021-10-20 19:33 ./FILELIST.TXT
|
||||
-rw-r--r-- 1 root root 1412453 2021-10-21 19:40 ./FILELIST.TXT
|
||||
-rw-r--r-- 1 root root 1572 2012-08-29 18:27 ./GPG-KEY
|
||||
-rw-r--r-- 1 root root 856953 2021-10-21 19:39 ./PACKAGES.TXT
|
||||
-rw-r--r-- 1 root root 856937 2021-10-23 19:05 ./PACKAGES.TXT
|
||||
-rw-r--r-- 1 root root 8564 2016-06-28 21:33 ./README.TXT
|
||||
-rw-r--r-- 1 root root 3635 2021-10-20 19:11 ./README.initrd
|
||||
-rw-r--r-- 1 root root 34412 2017-12-01 17:44 ./README_CRYPT.TXT
|
||||
|
@ -715,13 +715,13 @@ drwxr-xr-x 2 root root 4096 2012-09-20 18:06 ./patches
|
|||
-rw-r--r-- 1 root root 575 2012-09-20 18:06 ./patches/FILE_LIST
|
||||
-rw-r--r-- 1 root root 14 2012-09-20 18:06 ./patches/MANIFEST.bz2
|
||||
-rw-r--r-- 1 root root 224 2012-09-20 18:06 ./patches/PACKAGES.TXT
|
||||
drwxr-xr-x 17 root root 4096 2021-10-21 19:39 ./slackware64
|
||||
-rw-r--r-- 1 root root 334792 2021-10-21 19:39 ./slackware64/CHECKSUMS.md5
|
||||
-rw-r--r-- 1 root root 163 2021-10-21 19:39 ./slackware64/CHECKSUMS.md5.asc
|
||||
-rw-r--r-- 1 root root 415307 2021-10-21 19:38 ./slackware64/FILE_LIST
|
||||
-rw-r--r-- 1 root root 4165449 2021-10-21 19:39 ./slackware64/MANIFEST.bz2
|
||||
drwxr-xr-x 17 root root 4096 2021-10-23 19:05 ./slackware64
|
||||
-rw-r--r-- 1 root root 334744 2021-10-23 19:05 ./slackware64/CHECKSUMS.md5
|
||||
-rw-r--r-- 1 root root 163 2021-10-23 19:05 ./slackware64/CHECKSUMS.md5.asc
|
||||
-rw-r--r-- 1 root root 415261 2021-10-23 19:04 ./slackware64/FILE_LIST
|
||||
-rw-r--r-- 1 root root 4166040 2021-10-23 19:05 ./slackware64/MANIFEST.bz2
|
||||
lrwxrwxrwx 1 root root 15 2009-08-23 23:34 ./slackware64/PACKAGES.TXT -> ../PACKAGES.TXT
|
||||
drwxr-xr-x 2 root root 32768 2021-10-21 17:35 ./slackware64/a
|
||||
drwxr-xr-x 2 root root 32768 2021-10-23 19:04 ./slackware64/a
|
||||
-rw-r--r-- 1 root root 327 2021-07-17 17:47 ./slackware64/a/aaa_base-15.0-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 10788 2021-07-17 17:47 ./slackware64/a/aaa_base-15.0-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-07-17 17:47 ./slackware64/a/aaa_base-15.0-x86_64-1.txz.asc
|
||||
|
@ -731,9 +731,9 @@ drwxr-xr-x 2 root root 32768 2021-10-21 17:35 ./slackware64/a
|
|||
-rw-r--r-- 1 root root 413 2021-10-09 07:23 ./slackware64/a/aaa_libraries-15.0-x86_64-10.txt
|
||||
-rw-r--r-- 1 root root 9307620 2021-10-09 07:23 ./slackware64/a/aaa_libraries-15.0-x86_64-10.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-09 07:23 ./slackware64/a/aaa_libraries-15.0-x86_64-10.txz.asc
|
||||
-rw-r--r-- 1 root root 503 2021-10-10 21:31 ./slackware64/a/aaa_terminfo-6.2_20211009-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 50460 2021-10-10 21:31 ./slackware64/a/aaa_terminfo-6.2_20211009-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-10 21:31 ./slackware64/a/aaa_terminfo-6.2_20211009-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 503 2021-10-22 17:59 ./slackware64/a/aaa_terminfo-6.3-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 51588 2021-10-22 17:59 ./slackware64/a/aaa_terminfo-6.3-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-22 17:59 ./slackware64/a/aaa_terminfo-6.3-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 414 2021-03-16 17:16 ./slackware64/a/acl-2.3.1-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 129136 2021-03-16 17:16 ./slackware64/a/acl-2.3.1-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-03-16 17:16 ./slackware64/a/acl-2.3.1-x86_64-1.txz.asc
|
||||
|
@ -836,9 +836,9 @@ drwxr-xr-x 2 root root 32768 2021-10-21 17:35 ./slackware64/a
|
|||
-rw-r--r-- 1 root root 279 2021-02-13 11:03 ./slackware64/a/gettext-0.21-x86_64-3.txt
|
||||
-rw-r--r-- 1 root root 424856 2021-02-13 11:03 ./slackware64/a/gettext-0.21-x86_64-3.txz
|
||||
-rw-r--r-- 1 root root 163 2021-02-13 11:03 ./slackware64/a/gettext-0.21-x86_64-3.txz.asc
|
||||
-rw-r--r-- 1 root root 503 2021-10-17 18:08 ./slackware64/a/glibc-zoneinfo-2021d-noarch-1.txt
|
||||
-rw-r--r-- 1 root root 205436 2021-10-17 18:08 ./slackware64/a/glibc-zoneinfo-2021d-noarch-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-17 18:08 ./slackware64/a/glibc-zoneinfo-2021d-noarch-1.txz.asc
|
||||
-rw-r--r-- 1 root root 503 2021-10-22 18:29 ./slackware64/a/glibc-zoneinfo-2021e-noarch-1.txt
|
||||
-rw-r--r-- 1 root root 205652 2021-10-22 18:29 ./slackware64/a/glibc-zoneinfo-2021e-noarch-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-22 18:29 ./slackware64/a/glibc-zoneinfo-2021e-noarch-1.txz.asc
|
||||
-rw-r--r-- 1 root root 324 2021-02-13 11:03 ./slackware64/a/gpm-1.20.7-x86_64-9.txt
|
||||
-rw-r--r-- 1 root root 165672 2021-02-13 11:03 ./slackware64/a/gpm-1.20.7-x86_64-9.txz
|
||||
-rw-r--r-- 1 root root 163 2021-02-13 11:03 ./slackware64/a/gpm-1.20.7-x86_64-9.txz.asc
|
||||
|
@ -1102,7 +1102,7 @@ drwxr-xr-x 2 root root 32768 2021-10-21 17:35 ./slackware64/a
|
|||
-rw-r--r-- 1 root root 540 2021-02-13 11:22 ./slackware64/a/zoo-2.10_22-x86_64-4.txt
|
||||
-rw-r--r-- 1 root root 56160 2021-02-13 11:22 ./slackware64/a/zoo-2.10_22-x86_64-4.txz
|
||||
-rw-r--r-- 1 root root 163 2021-02-13 11:22 ./slackware64/a/zoo-2.10_22-x86_64-4.txz.asc
|
||||
drwxr-xr-x 2 root root 20480 2021-10-19 01:11 ./slackware64/ap
|
||||
drwxr-xr-x 2 root root 20480 2021-10-23 19:04 ./slackware64/ap
|
||||
-rw-r--r-- 1 root root 291 2021-02-13 11:23 ./slackware64/ap/a2ps-4.14-x86_64-9.txt
|
||||
-rw-r--r-- 1 root root 703580 2021-02-13 11:23 ./slackware64/ap/a2ps-4.14-x86_64-9.txz
|
||||
-rw-r--r-- 1 root root 163 2021-02-13 11:23 ./slackware64/ap/a2ps-4.14-x86_64-9.txz.asc
|
||||
|
@ -1198,9 +1198,9 @@ drwxr-xr-x 2 root root 20480 2021-10-19 01:11 ./slackware64/ap
|
|||
-rw-r--r-- 1 root root 597 2021-06-04 17:48 ./slackware64/ap/ispell-3.4.04-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 347356 2021-06-04 17:48 ./slackware64/ap/ispell-3.4.04-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-06-04 17:48 ./slackware64/ap/ispell-3.4.04-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 381 2021-09-26 17:45 ./slackware64/ap/itstool-2.0.7-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 41544 2021-09-26 17:45 ./slackware64/ap/itstool-2.0.7-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-09-26 17:45 ./slackware64/ap/itstool-2.0.7-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 381 2021-10-22 18:17 ./slackware64/ap/itstool-2.0.7-x86_64-2.txt
|
||||
-rw-r--r-- 1 root root 41548 2021-10-22 18:17 ./slackware64/ap/itstool-2.0.7-x86_64-2.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-22 18:17 ./slackware64/ap/itstool-2.0.7-x86_64-2.txz.asc
|
||||
-rw-r--r-- 1 root root 478 2021-02-13 11:31 ./slackware64/ap/jed-0.99_19-x86_64-5.txt
|
||||
-rw-r--r-- 1 root root 530420 2021-02-13 11:31 ./slackware64/ap/jed-0.99_19-x86_64-5.txz
|
||||
-rw-r--r-- 1 root root 163 2021-02-13 11:31 ./slackware64/ap/jed-0.99_19-x86_64-5.txz.asc
|
||||
|
@ -1254,9 +1254,9 @@ drwxr-xr-x 2 root root 20480 2021-10-19 01:11 ./slackware64/ap
|
|||
-rw-r--r-- 1 root root 376 2021-02-13 11:40 ./slackware64/ap/most-5.1.0-x86_64-3.txt
|
||||
-rw-r--r-- 1 root root 46904 2021-02-13 11:40 ./slackware64/ap/most-5.1.0-x86_64-3.txz
|
||||
-rw-r--r-- 1 root root 163 2021-02-13 11:40 ./slackware64/ap/most-5.1.0-x86_64-3.txz.asc
|
||||
-rw-r--r-- 1 root root 331 2021-10-18 16:54 ./slackware64/ap/mpg123-1.29.1-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 474548 2021-10-18 16:54 ./slackware64/ap/mpg123-1.29.1-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-18 16:54 ./slackware64/ap/mpg123-1.29.1-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 331 2021-10-23 18:29 ./slackware64/ap/mpg123-1.29.2-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 474772 2021-10-23 18:29 ./slackware64/ap/mpg123-1.29.2-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-23 18:29 ./slackware64/ap/mpg123-1.29.2-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 430 2021-10-06 18:02 ./slackware64/ap/nano-5.9-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 616820 2021-10-06 18:02 ./slackware64/ap/nano-5.9-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-06 18:02 ./slackware64/ap/nano-5.9-x86_64-1.txz.asc
|
||||
|
@ -1357,7 +1357,7 @@ drwxr-xr-x 2 root root 20480 2021-10-19 01:11 ./slackware64/ap
|
|||
-rw-r--r-- 1 root root 506 2021-02-13 11:48 ./slackware64/ap/zsh-5.8-x86_64-3.txt
|
||||
-rw-r--r-- 1 root root 3056824 2021-02-13 11:48 ./slackware64/ap/zsh-5.8-x86_64-3.txz
|
||||
-rw-r--r-- 1 root root 163 2021-02-13 11:48 ./slackware64/ap/zsh-5.8-x86_64-3.txz.asc
|
||||
drwxr-xr-x 2 root root 20480 2021-10-21 19:38 ./slackware64/d
|
||||
drwxr-xr-x 2 root root 20480 2021-10-23 19:04 ./slackware64/d
|
||||
-rw-r--r-- 1 root root 360 2021-10-09 03:35 ./slackware64/d/Cython-0.29.24-x86_64-2.txt
|
||||
-rw-r--r-- 1 root root 2402828 2021-10-09 03:35 ./slackware64/d/Cython-0.29.24-x86_64-2.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-09 03:35 ./slackware64/d/Cython-0.29.24-x86_64-2.txz.asc
|
||||
|
@ -1485,9 +1485,9 @@ drwxr-xr-x 2 root root 20480 2021-10-21 19:38 ./slackware64/d
|
|||
-rw-r--r-- 1 root root 659 2021-10-09 03:52 ./slackware64/d/mercurial-5.9.2-x86_64-2.txt
|
||||
-rw-r--r-- 1 root root 4572564 2021-10-09 03:52 ./slackware64/d/mercurial-5.9.2-x86_64-2.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-09 03:52 ./slackware64/d/mercurial-5.9.2-x86_64-2.txz.asc
|
||||
-rw-r--r-- 1 root root 410 2021-10-09 03:35 ./slackware64/d/meson-0.59.2-x86_64-2.txt
|
||||
-rw-r--r-- 1 root root 1115124 2021-10-09 03:35 ./slackware64/d/meson-0.59.2-x86_64-2.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-09 03:35 ./slackware64/d/meson-0.59.2-x86_64-2.txz.asc
|
||||
-rw-r--r-- 1 root root 410 2021-10-23 18:28 ./slackware64/d/meson-0.59.3-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 1116240 2021-10-23 18:28 ./slackware64/d/meson-0.59.3-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-23 18:28 ./slackware64/d/meson-0.59.3-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 339 2021-02-13 10:39 ./slackware64/d/nasm-2.15.05-x86_64-3.txt
|
||||
-rw-r--r-- 1 root root 411484 2021-02-13 10:39 ./slackware64/d/nasm-2.15.05-x86_64-3.txz
|
||||
-rw-r--r-- 1 root root 163 2021-02-13 10:39 ./slackware64/d/nasm-2.15.05-x86_64-3.txz.asc
|
||||
|
@ -1503,9 +1503,9 @@ drwxr-xr-x 2 root root 20480 2021-10-21 19:38 ./slackware64/d
|
|||
-rw-r--r-- 1 root root 543 2021-02-13 10:40 ./slackware64/d/p2c-2.01-x86_64-3.txt
|
||||
-rw-r--r-- 1 root root 306912 2021-02-13 10:40 ./slackware64/d/p2c-2.01-x86_64-3.txz
|
||||
-rw-r--r-- 1 root root 163 2021-02-13 10:40 ./slackware64/d/p2c-2.01-x86_64-3.txz.asc
|
||||
-rw-r--r-- 1 root root 398 2021-09-23 16:37 ./slackware64/d/parallel-20210922-noarch-1.txt
|
||||
-rw-r--r-- 1 root root 475848 2021-09-23 16:37 ./slackware64/d/parallel-20210922-noarch-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-09-23 16:37 ./slackware64/d/parallel-20210922-noarch-1.txz.asc
|
||||
-rw-r--r-- 1 root root 398 2021-10-23 18:29 ./slackware64/d/parallel-20211022-noarch-1.txt
|
||||
-rw-r--r-- 1 root root 475676 2021-10-23 18:29 ./slackware64/d/parallel-20211022-noarch-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-23 18:29 ./slackware64/d/parallel-20211022-noarch-1.txz.asc
|
||||
-rw-r--r-- 1 root root 469 2021-08-06 17:31 ./slackware64/d/patchelf-0.13-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 64992 2021-08-06 17:31 ./slackware64/d/patchelf-0.13-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-08-06 17:31 ./slackware64/d/patchelf-0.13-x86_64-1.txz.asc
|
||||
|
@ -1521,12 +1521,12 @@ drwxr-xr-x 2 root root 20480 2021-10-21 19:38 ./slackware64/d
|
|||
-rw-r--r-- 1 root root 398 2021-06-05 17:57 ./slackware64/d/poke-1.3-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 604676 2021-06-05 17:57 ./slackware64/d/poke-1.3-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-06-05 17:57 ./slackware64/d/poke-1.3-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 270 2021-10-11 21:42 ./slackware64/d/python-pip-21.3-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 1838700 2021-10-11 21:42 ./slackware64/d/python-pip-21.3-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-11 21:42 ./slackware64/d/python-pip-21.3-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 562 2021-10-09 03:35 ./slackware64/d/python-setuptools-58.2.0-x86_64-2.txt
|
||||
-rw-r--r-- 1 root root 676696 2021-10-09 03:35 ./slackware64/d/python-setuptools-58.2.0-x86_64-2.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-09 03:35 ./slackware64/d/python-setuptools-58.2.0-x86_64-2.txz.asc
|
||||
-rw-r--r-- 1 root root 270 2021-10-22 18:04 ./slackware64/d/python-pip-21.3.1-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 1838304 2021-10-22 18:04 ./slackware64/d/python-pip-21.3.1-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-22 18:04 ./slackware64/d/python-pip-21.3.1-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 562 2021-10-23 04:46 ./slackware64/d/python-setuptools-58.3.0-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 676748 2021-10-23 04:46 ./slackware64/d/python-setuptools-58.3.0-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-23 04:46 ./slackware64/d/python-setuptools-58.3.0-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 484 2021-02-13 10:45 ./slackware64/d/python2-2.7.18-x86_64-4.txt
|
||||
-rw-r--r-- 1 root root 13018740 2021-02-13 10:45 ./slackware64/d/python2-2.7.18-x86_64-4.txz
|
||||
-rw-r--r-- 1 root root 163 2021-02-13 10:45 ./slackware64/d/python2-2.7.18-x86_64-4.txz.asc
|
||||
|
@ -2707,7 +2707,7 @@ drwxr-xr-x 2 root root 86016 2021-10-19 18:12 ./slackware64/kde
|
|||
-rw-r--r-- 1 root root 296 2021-10-09 06:27 ./slackware64/kde/zeroconf-ioslave-21.08.2-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 50044 2021-10-09 06:27 ./slackware64/kde/zeroconf-ioslave-21.08.2-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-09 06:27 ./slackware64/kde/zeroconf-ioslave-21.08.2-x86_64-1.txz.asc
|
||||
drwxr-xr-x 2 root root 77824 2021-10-21 19:38 ./slackware64/l
|
||||
drwxr-xr-x 2 root root 77824 2021-10-23 19:04 ./slackware64/l
|
||||
-rw-r--r-- 1 root root 329 2021-02-13 05:56 ./slackware64/l/GConf-3.2.6-x86_64-7.txt
|
||||
-rw-r--r-- 1 root root 928148 2021-02-13 05:56 ./slackware64/l/GConf-3.2.6-x86_64-7.txz
|
||||
-rw-r--r-- 1 root root 163 2021-02-13 05:56 ./slackware64/l/GConf-3.2.6-x86_64-7.txz.asc
|
||||
|
@ -2726,7 +2726,7 @@ drwxr-xr-x 2 root root 77824 2021-10-21 19:38 ./slackware64/l
|
|||
-rw-r--r-- 1 root root 667 2021-10-09 03:42 ./slackware64/l/QScintilla-2.11.6-x86_64-4.txt
|
||||
-rw-r--r-- 1 root root 2079408 2021-10-09 03:42 ./slackware64/l/QScintilla-2.11.6-x86_64-4.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-09 03:42 ./slackware64/l/QScintilla-2.11.6-x86_64-4.txz.asc
|
||||
-rw-r--r-- 1 root root 248 2021-10-10 21:46 ./slackware64/l/QtAV-20210414_305e5404-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 248 2021-10-10 21:46 ./slackware64/l/QtAV-20210414_305e5404-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 918264 2021-10-10 21:46 ./slackware64/l/QtAV-20210414_305e5404-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-10 21:46 ./slackware64/l/QtAV-20210414_305e5404-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 377 2021-08-11 18:14 ./slackware64/l/SDL2-2.0.16-x86_64-1.txt
|
||||
|
@ -2876,9 +2876,9 @@ drwxr-xr-x 2 root root 77824 2021-10-21 19:38 ./slackware64/l
|
|||
-rw-r--r-- 1 root root 572 2021-02-13 06:26 ./slackware64/l/espeak-ng-1.50-x86_64-3.txt
|
||||
-rw-r--r-- 1 root root 2453020 2021-02-13 06:26 ./slackware64/l/espeak-ng-1.50-x86_64-3.txz
|
||||
-rw-r--r-- 1 root root 163 2021-02-13 06:26 ./slackware64/l/espeak-ng-1.50-x86_64-3.txz.asc
|
||||
-rw-r--r-- 1 root root 257 2021-06-16 18:00 ./slackware64/l/exiv2-0.27.4-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 1839408 2021-06-16 18:00 ./slackware64/l/exiv2-0.27.4-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-06-16 18:00 ./slackware64/l/exiv2-0.27.4-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 257 2021-10-23 04:43 ./slackware64/l/exiv2-0.27.5-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 1827568 2021-10-23 04:43 ./slackware64/l/exiv2-0.27.5-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-23 04:43 ./slackware64/l/exiv2-0.27.5-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 301 2021-05-23 19:02 ./slackware64/l/expat-2.4.1-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 126160 2021-05-23 19:02 ./slackware64/l/expat-2.4.1-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-05-23 19:02 ./slackware64/l/expat-2.4.1-x86_64-1.txz.asc
|
||||
|
@ -3495,9 +3495,9 @@ drwxr-xr-x 2 root root 77824 2021-10-21 19:38 ./slackware64/l
|
|||
-rw-r--r-- 1 root root 586 2021-02-13 07:24 ./slackware64/l/mpfr-4.1.0-x86_64-3.txt
|
||||
-rw-r--r-- 1 root root 1492696 2021-02-13 07:24 ./slackware64/l/mpfr-4.1.0-x86_64-3.txz
|
||||
-rw-r--r-- 1 root root 163 2021-02-13 07:24 ./slackware64/l/mpfr-4.1.0-x86_64-3.txz.asc
|
||||
-rw-r--r-- 1 root root 493 2021-10-10 21:31 ./slackware64/l/ncurses-6.2_20211009-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 1335920 2021-10-10 21:31 ./slackware64/l/ncurses-6.2_20211009-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-10 21:31 ./slackware64/l/ncurses-6.2_20211009-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 493 2021-10-22 17:59 ./slackware64/l/ncurses-6.3-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 1334348 2021-10-22 17:59 ./slackware64/l/ncurses-6.3-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-22 17:59 ./slackware64/l/ncurses-6.3-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 345 2021-09-22 04:09 ./slackware64/l/neon-0.32.1-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 215068 2021-09-22 04:09 ./slackware64/l/neon-0.32.1-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-09-22 04:09 ./slackware64/l/neon-0.32.1-x86_64-1.txz.asc
|
||||
|
@ -3817,7 +3817,7 @@ drwxr-xr-x 2 root root 77824 2021-10-21 19:38 ./slackware64/l
|
|||
-rw-r--r-- 1 root root 463 2021-05-15 18:01 ./slackware64/l/zstd-1.5.0-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 458040 2021-05-15 18:01 ./slackware64/l/zstd-1.5.0-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-05-15 18:01 ./slackware64/l/zstd-1.5.0-x86_64-1.txz.asc
|
||||
drwxr-xr-x 2 root root 32768 2021-10-21 19:38 ./slackware64/n
|
||||
drwxr-xr-x 2 root root 32768 2021-10-23 19:04 ./slackware64/n
|
||||
-rw-r--r-- 1 root root 357 2021-09-27 06:13 ./slackware64/n/ModemManager-1.18.2-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 2111876 2021-09-27 06:13 ./slackware64/n/ModemManager-1.18.2-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-09-27 06:13 ./slackware64/n/ModemManager-1.18.2-x86_64-1.txz.asc
|
||||
|
@ -4167,9 +4167,9 @@ drwxr-xr-x 2 root root 32768 2021-10-21 19:38 ./slackware64/n
|
|||
-rw-r--r-- 1 root root 478 2021-03-26 17:48 ./slackware64/n/pam-krb5-4.10-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 71480 2021-03-26 17:48 ./slackware64/n/pam-krb5-4.10-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-03-26 17:48 ./slackware64/n/pam-krb5-4.10-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 345 2021-09-24 18:03 ./slackware64/n/php-7.4.24-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 5821300 2021-09-24 18:03 ./slackware64/n/php-7.4.24-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-09-24 18:03 ./slackware64/n/php-7.4.24-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 345 2021-10-22 18:03 ./slackware64/n/php-7.4.25-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 5827052 2021-10-22 18:03 ./slackware64/n/php-7.4.25-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-22 18:03 ./slackware64/n/php-7.4.25-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 576 2021-02-13 12:24 ./slackware64/n/pidentd-3.0.19-x86_64-6.txt
|
||||
-rw-r--r-- 1 root root 42736 2021-02-13 12:24 ./slackware64/n/pidentd-3.0.19-x86_64-6.txz
|
||||
-rw-r--r-- 1 root root 163 2021-02-13 12:24 ./slackware64/n/pidentd-3.0.19-x86_64-6.txz.asc
|
||||
|
@ -5278,7 +5278,7 @@ drwxr-xr-x 2 root root 65536 2021-10-21 19:38 ./slackware64/x
|
|||
-rw-r--r-- 1 root root 213 2021-02-13 13:14 ./slackware64/x/xwud-1.0.5-x86_64-4.txt
|
||||
-rw-r--r-- 1 root root 25428 2021-02-13 13:14 ./slackware64/x/xwud-1.0.5-x86_64-4.txz
|
||||
-rw-r--r-- 1 root root 163 2021-02-13 13:14 ./slackware64/x/xwud-1.0.5-x86_64-4.txz.asc
|
||||
drwxr-xr-x 2 root root 16384 2021-10-21 19:38 ./slackware64/xap
|
||||
drwxr-xr-x 2 root root 16384 2021-10-23 19:04 ./slackware64/xap
|
||||
-rw-r--r-- 1 root root 625 2021-04-18 18:11 ./slackware64/xap/MPlayer-20210418-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 2738724 2021-04-18 18:11 ./slackware64/xap/MPlayer-20210418-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-04-18 18:11 ./slackware64/xap/MPlayer-20210418-x86_64-1.txz.asc
|
||||
|
@ -5358,9 +5358,9 @@ drwxr-xr-x 2 root root 16384 2021-10-21 19:38 ./slackware64/xap
|
|||
-rw-r--r-- 1 root root 570 2021-10-05 17:15 ./slackware64/xap/mozilla-firefox-91.2.0esr-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 56649680 2021-10-05 17:15 ./slackware64/xap/mozilla-firefox-91.2.0esr-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-05 17:15 ./slackware64/xap/mozilla-firefox-91.2.0esr-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 663 2021-10-06 18:32 ./slackware64/xap/mozilla-thunderbird-91.2.0-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 53251476 2021-10-06 18:32 ./slackware64/xap/mozilla-thunderbird-91.2.0-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-06 18:32 ./slackware64/xap/mozilla-thunderbird-91.2.0-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 663 2021-10-22 18:26 ./slackware64/xap/mozilla-thunderbird-91.2.1-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 53182500 2021-10-22 18:26 ./slackware64/xap/mozilla-thunderbird-91.2.1-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-22 18:26 ./slackware64/xap/mozilla-thunderbird-91.2.1-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 359 2021-09-10 17:57 ./slackware64/xap/network-manager-applet-1.24.0-x86_64-2.txt
|
||||
-rw-r--r-- 1 root root 860376 2021-09-10 17:57 ./slackware64/xap/network-manager-applet-1.24.0-x86_64-2.txz
|
||||
-rw-r--r-- 1 root root 163 2021-09-10 17:57 ./slackware64/xap/network-manager-applet-1.24.0-x86_64-2.txz.asc
|
||||
|
@ -5507,7 +5507,7 @@ drwxr-xr-x 2 root root 12288 2021-10-14 19:41 ./slackware64/xfce
|
|||
-rw-r--r-- 1 root root 318644 2021-02-13 13:53 ./slackware64/xfce/xfce4-session-4.16.0-x86_64-3.txz
|
||||
-rw-r--r-- 1 root root 163 2021-02-13 13:53 ./slackware64/xfce/xfce4-session-4.16.0-x86_64-3.txz.asc
|
||||
-rw-r--r-- 1 root root 377 2021-06-09 04:53 ./slackware64/xfce/xfce4-settings-4.16.2-x86_64-1.txt
|
||||
-rw-r--r-- 1 root root 803988 2021-06-09 04:53 ./slackware64/xfce/xfce4-settings-4.16.2-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 803988 2021-06-09 04:53 ./slackware64/xfce/xfce4-settings-4.16.2-x86_64-1.txz
|
||||
-rw-r--r-- 1 root root 163 2021-06-09 04:53 ./slackware64/xfce/xfce4-settings-4.16.2-x86_64-1.txz.asc
|
||||
-rw-r--r-- 1 root root 402 2021-02-13 13:53 ./slackware64/xfce/xfce4-systemload-plugin-1.2.4-x86_64-4.txt
|
||||
-rw-r--r-- 1 root root 41468 2021-02-13 13:53 ./slackware64/xfce/xfce4-systemload-plugin-1.2.4-x86_64-4.txz
|
||||
|
@ -5545,11 +5545,11 @@ drwxr-xr-x 2 root root 4096 2021-02-15 19:33 ./slackware64/y
|
|||
-rw-r--r-- 1 root root 1486956 2021-02-13 13:56 ./slackware64/y/nethack-3.6.6-x86_64-3.txz
|
||||
-rw-r--r-- 1 root root 163 2021-02-13 13:56 ./slackware64/y/nethack-3.6.6-x86_64-3.txz.asc
|
||||
-rw-r--r-- 1 root root 26 2020-12-30 21:55 ./slackware64/y/tagfile
|
||||
drwxr-xr-x 18 root root 4096 2021-10-21 19:40 ./source
|
||||
-rw-r--r-- 1 root root 578879 2021-10-21 19:40 ./source/CHECKSUMS.md5
|
||||
-rw-r--r-- 1 root root 163 2021-10-21 19:40 ./source/CHECKSUMS.md5.asc
|
||||
-rw-r--r-- 1 root root 805624 2021-10-21 19:39 ./source/FILE_LIST
|
||||
-rw-r--r-- 1 root root 23355780 2021-10-21 19:39 ./source/MANIFEST.bz2
|
||||
drwxr-xr-x 18 root root 4096 2021-10-23 19:05 ./source
|
||||
-rw-r--r-- 1 root root 578681 2021-10-23 19:05 ./source/CHECKSUMS.md5
|
||||
-rw-r--r-- 1 root root 163 2021-10-23 19:05 ./source/CHECKSUMS.md5.asc
|
||||
-rw-r--r-- 1 root root 805378 2021-10-23 19:05 ./source/FILE_LIST
|
||||
-rw-r--r-- 1 root root 23302727 2021-10-23 19:05 ./source/MANIFEST.bz2
|
||||
-rw-r--r-- 1 root root 1314 2006-10-02 04:40 ./source/README.TXT
|
||||
drwxr-xr-x 122 root root 4096 2021-10-21 17:33 ./source/a
|
||||
-rw-r--r-- 1 root root 1591 2021-04-06 18:09 ./source/a/FTBFSlog
|
||||
|
@ -5871,7 +5871,7 @@ drwxr-xr-x 2 root root 4096 2021-02-13 05:31 ./source/a/gettext
|
|||
-rwxr-xr-x 1 root root 4480 2021-02-13 05:31 ./source/a/gettext/gettext.SlackBuild
|
||||
-rw-r--r-- 1 root root 734 2018-02-27 06:13 ./source/a/gettext/slack-desc
|
||||
-rw-r--r-- 1 root root 1089 2018-02-27 06:13 ./source/a/gettext/slack-desc.gettext-tools
|
||||
drwxr-xr-x 3 root root 4096 2021-10-17 17:42 ./source/a/glibc-zoneinfo
|
||||
drwxr-xr-x 3 root root 4096 2021-10-22 18:29 ./source/a/glibc-zoneinfo
|
||||
-rw-r--r-- 1 root root 1221 2021-04-19 18:23 ./source/a/glibc-zoneinfo/doinst.sh.gz
|
||||
-rwxr-xr-x 1 root root 5586 2021-01-24 20:11 ./source/a/glibc-zoneinfo/glibc-zoneinfo.SlackBuild
|
||||
-rw-r--r-- 1 root root 965 2021-05-11 18:44 ./source/a/glibc-zoneinfo/slack-desc
|
||||
|
@ -5886,10 +5886,10 @@ drwxr-xr-x 2 root root 4096 2006-12-03 23:10 ./source/a/glibc-zoneinfo/ti
|
|||
-rw-r--r-- 1 root root 87 2006-12-03 23:10 ./source/a/glibc-zoneinfo/timezone-scripts/parts/README
|
||||
-rw-r--r-- 1 root root 66 2003-02-16 21:17 ./source/a/glibc-zoneinfo/timezone-scripts/setup.timeconfig
|
||||
-rw-r--r-- 1 root root 28680 2020-12-09 20:12 ./source/a/glibc-zoneinfo/timezone-scripts/timeconfig
|
||||
-rw-r--r-- 1 root root 273588 2021-10-15 21:20 ./source/a/glibc-zoneinfo/tzcode2021d.tar.gz
|
||||
-rw-r--r-- 1 root root 833 2021-10-15 21:20 ./source/a/glibc-zoneinfo/tzcode2021d.tar.gz.asc
|
||||
-rw-r--r-- 1 root root 422399 2021-10-15 21:20 ./source/a/glibc-zoneinfo/tzdata2021d.tar.gz
|
||||
-rw-r--r-- 1 root root 833 2021-10-15 21:20 ./source/a/glibc-zoneinfo/tzdata2021d.tar.gz.asc
|
||||
-rw-r--r-- 1 root root 273644 2021-10-22 02:20 ./source/a/glibc-zoneinfo/tzcode2021e.tar.gz
|
||||
-rw-r--r-- 1 root root 833 2021-10-22 02:20 ./source/a/glibc-zoneinfo/tzcode2021e.tar.gz.asc
|
||||
-rw-r--r-- 1 root root 422509 2021-10-22 02:20 ./source/a/glibc-zoneinfo/tzdata2021e.tar.gz
|
||||
-rw-r--r-- 1 root root 833 2021-10-22 02:20 ./source/a/glibc-zoneinfo/tzdata2021e.tar.gz.asc
|
||||
-rw-r--r-- 1 root root 178 2020-10-12 18:03 ./source/a/glibc-zoneinfo/zic.default.fat.diff.gz
|
||||
drwxr-xr-x 2 root root 4096 2021-02-13 05:31 ./source/a/gpm
|
||||
-rw-r--r-- 1 root root 361 2013-02-13 03:15 ./source/a/gpm/gpm-1.20.1-lib-silent.patch.gz
|
||||
|
@ -6815,7 +6815,7 @@ drwxr-xr-x 2 root root 4096 2021-06-04 17:47 ./source/ap/ispell
|
|||
-rw-r--r-- 1 root root 1051 2018-02-27 06:12 ./source/ap/ispell/slack-desc
|
||||
drwxr-xr-x 2 root root 4096 2021-09-26 17:45 ./source/ap/itstool
|
||||
-rw-r--r-- 1 root root 95809 2021-09-25 15:16 ./source/ap/itstool/itstool-2.0.7.tar.lz
|
||||
-rwxr-xr-x 1 root root 3830 2021-09-26 17:45 ./source/ap/itstool/itstool.SlackBuild
|
||||
-rwxr-xr-x 1 root root 3856 2021-10-22 18:16 ./source/ap/itstool/itstool.SlackBuild
|
||||
-rw-r--r-- 1 root root 868 2018-02-27 06:12 ./source/ap/itstool/slack-desc
|
||||
drwxr-xr-x 2 root root 4096 2021-02-13 05:31 ./source/ap/jed
|
||||
-rw-r--r-- 1 root root 884198 2009-12-14 02:30 ./source/ap/jed/jed-0.99-19.tar.bz2
|
||||
|
@ -6970,8 +6970,8 @@ drwxr-xr-x 2 root root 4096 2021-02-13 05:31 ./source/ap/most
|
|||
-rwxr-xr-x 1 root root 3306 2021-02-13 05:31 ./source/ap/most/most.SlackBuild
|
||||
-rw-r--r-- 1 root root 39 2019-03-06 19:02 ./source/ap/most/most.url
|
||||
-rw-r--r-- 1 root root 828 2018-02-27 06:12 ./source/ap/most/slack-desc
|
||||
drwxr-xr-x 2 root root 4096 2021-10-18 16:54 ./source/ap/mpg123
|
||||
-rw-r--r-- 1 root root 883691 2021-10-17 21:00 ./source/ap/mpg123/mpg123-1.29.1.tar.lz
|
||||
drwxr-xr-x 2 root root 4096 2021-10-23 18:28 ./source/ap/mpg123
|
||||
-rw-r--r-- 1 root root 886568 2021-10-23 11:43 ./source/ap/mpg123/mpg123-1.29.2.tar.lz
|
||||
-rwxr-xr-x 1 root root 6313 2021-10-18 16:54 ./source/ap/mpg123/mpg123.SlackBuild
|
||||
-rw-r--r-- 1 root root 250 2021-09-18 19:47 ./source/ap/mpg123/mpg123.lib64.diff.gz
|
||||
-rw-r--r-- 1 root root 27 2019-08-26 18:16 ./source/ap/mpg123/mpg123.url
|
||||
|
@ -7479,14 +7479,13 @@ drwxr-xr-x 2 root root 4096 2021-10-08 17:54 ./source/d/mercurial
|
|||
-rwxr-xr-x 1 root root 4114 2021-10-08 17:54 ./source/d/mercurial/mercurial.SlackBuild
|
||||
-rw-r--r-- 1 root root 38 2017-12-02 19:13 ./source/d/mercurial/mercurial.url
|
||||
-rw-r--r-- 1 root root 1245 2018-02-27 06:13 ./source/d/mercurial/slack-desc
|
||||
drwxr-xr-x 2 root root 4096 2021-10-08 17:54 ./source/d/meson
|
||||
drwxr-xr-x 2 root root 4096 2021-10-23 18:28 ./source/d/meson
|
||||
-rw-r--r-- 1 root root 756 2021-05-11 18:50 ./source/d/meson/39bb5e07eab736b525abfc66eb5ad0dd626aedc6.patch.gz
|
||||
-rw-r--r-- 1 root root 3438004 2021-09-28 12:35 ./source/d/meson/meson-0.59.2.tar.lz
|
||||
-rwxr-xr-x 1 root root 3004 2021-10-08 17:54 ./source/d/meson/meson.SlackBuild
|
||||
-rw-r--r-- 1 root root 3439483 2021-10-21 04:52 ./source/d/meson/meson-0.59.3.tar.lz
|
||||
-rwxr-xr-x 1 root root 3004 2021-10-23 18:28 ./source/d/meson/meson.SlackBuild
|
||||
-rw-r--r-- 1 root root 185 2021-05-11 18:55 ./source/d/meson/meson.import.copy.diff.gz
|
||||
-rw-r--r-- 1 root root 36 2018-11-09 03:24 ./source/d/meson/meson.url
|
||||
-rw-r--r-- 1 root root 895 2018-02-27 06:13 ./source/d/meson/slack-desc
|
||||
-rw-r--r-- 1 root root 4053385 2021-09-29 03:59 ./source/d/meson/v0.59.2.tar.gz
|
||||
drwxr-xr-x 2 root root 4096 2021-02-13 05:31 ./source/d/nasm
|
||||
-rw-r--r-- 1 root root 995732 2020-08-28 16:04 ./source/d/nasm/nasm-2.15.05.tar.xz
|
||||
-rwxr-xr-x 1 root root 3182 2021-02-13 05:31 ./source/d/nasm/nasm.SlackBuild
|
||||
|
@ -7510,8 +7509,8 @@ drwxr-xr-x 2 root root 4096 2021-02-13 05:31 ./source/d/p2c
|
|||
-rwxr-xr-x 1 root root 5093 2021-02-13 05:31 ./source/d/p2c/p2c.SlackBuild
|
||||
-rw-r--r-- 1 root root 50 2019-02-21 19:17 ./source/d/p2c/p2c.url
|
||||
-rw-r--r-- 1 root root 994 2018-02-27 06:13 ./source/d/p2c/slack-desc
|
||||
drwxr-xr-x 2 root root 4096 2021-09-23 16:37 ./source/d/parallel
|
||||
-rw-r--r-- 1 root root 1777392 2021-09-22 21:19 ./source/d/parallel/parallel-20210922.tar.lz
|
||||
drwxr-xr-x 2 root root 4096 2021-10-23 18:29 ./source/d/parallel
|
||||
-rw-r--r-- 1 root root 1777139 2021-10-22 19:54 ./source/d/parallel/parallel-20211022.tar.lz
|
||||
-rwxr-xr-x 1 root root 4533 2021-02-22 20:43 ./source/d/parallel/parallel.SlackBuild
|
||||
-rw-r--r-- 1 root root 857 2018-04-21 03:27 ./source/d/parallel/slack-desc
|
||||
drwxr-xr-x 2 root root 4096 2021-08-06 17:30 ./source/d/patchelf
|
||||
|
@ -7562,15 +7561,15 @@ drwxr-xr-x 2 root root 4096 2021-06-05 17:57 ./source/d/poke
|
|||
-rw-r--r-- 1 root root 2976530 2021-06-05 11:13 ./source/d/poke/poke-1.3.tar.lz
|
||||
-rwxr-xr-x 1 root root 4522 2021-02-27 04:46 ./source/d/poke/poke.SlackBuild
|
||||
-rw-r--r-- 1 root root 850 2021-02-27 04:48 ./source/d/poke/slack-desc
|
||||
drwxr-xr-x 2 root root 4096 2021-10-11 21:41 ./source/d/python-pip
|
||||
-rw-r--r-- 1 root root 1167904 2021-10-11 19:42 ./source/d/python-pip/pip-21.3.tar.lz
|
||||
drwxr-xr-x 2 root root 4096 2021-10-22 18:03 ./source/d/python-pip
|
||||
-rw-r--r-- 1 root root 1168884 2021-10-22 15:57 ./source/d/python-pip/pip-21.3.1.tar.lz
|
||||
-rw-r--r-- 1 root root 33 2018-03-29 06:10 ./source/d/python-pip/pip.url
|
||||
-rwxr-xr-x 1 root root 2876 2021-10-11 21:41 ./source/d/python-pip/python-pip.SlackBuild
|
||||
-rw-r--r-- 1 root root 760 2018-02-27 06:13 ./source/d/python-pip/slack-desc
|
||||
drwxr-xr-x 2 root root 4096 2021-10-08 17:54 ./source/d/python-setuptools
|
||||
-rwxr-xr-x 1 root root 3206 2021-10-08 17:54 ./source/d/python-setuptools/python-setuptools.SlackBuild
|
||||
drwxr-xr-x 2 root root 4096 2021-10-23 04:45 ./source/d/python-setuptools
|
||||
-rwxr-xr-x 1 root root 3206 2021-10-23 04:46 ./source/d/python-setuptools/python-setuptools.SlackBuild
|
||||
-rw-r--r-- 1 root root 40 2017-11-28 22:11 ./source/d/python-setuptools/python-setuptools.url
|
||||
-rw-r--r-- 1 root root 1307644 2021-10-02 03:11 ./source/d/python-setuptools/setuptools-58.2.0.tar.lz
|
||||
-rw-r--r-- 1 root root 1307611 2021-10-22 20:56 ./source/d/python-setuptools/setuptools-58.3.0.tar.lz
|
||||
-rw-r--r-- 1 root root 1059 2018-02-27 06:13 ./source/d/python-setuptools/slack-desc
|
||||
drwxr-xr-x 2 root root 4096 2021-02-13 05:31 ./source/d/python2
|
||||
-rw-r--r-- 1 root root 12854736 2020-04-19 21:50 ./source/d/python2/Python-2.7.18.tar.xz
|
||||
|
@ -9479,7 +9478,7 @@ drwxr-xr-x 2 root root 4096 2021-10-10 17:54 ./source/kde/kde/src/framewo
|
|||
-rw-r--r-- 1 root root 1410660 2021-10-02 19:33 ./source/kde/kde/src/frameworks/threadweaver-5.87.0.tar.xz
|
||||
-rw-r--r-- 1 root root 488 2021-10-02 19:33 ./source/kde/kde/src/frameworks/threadweaver-5.87.0.tar.xz.sig
|
||||
drwxr-xr-x 2 root root 12288 2021-10-19 16:40 ./source/kde/kde/src/plasma
|
||||
drwxr-xr-x 2 root root 4096 2021-10-10 21:38 ./source/kde/kde/src/plasma-extra
|
||||
drwxr-xr-x 2 root root 4096 2021-10-23 19:00 ./source/kde/kde/src/plasma-extra
|
||||
-rwxr-xr-x 1 root root 2071 2020-07-12 21:54 ./source/kde/kde/src/plasma-extra/fetch-wacomtablet.sh
|
||||
-rw-r--r-- 1 root root 13424 2019-12-07 18:49 ./source/kde/kde/src/plasma-extra/kpeoplevcard-0.1.tar.xz
|
||||
-rw-r--r-- 1 root root 488 2019-12-07 18:49 ./source/kde/kde/src/plasma-extra/kpeoplevcard-0.1.tar.xz.sig
|
||||
|
@ -9491,7 +9490,6 @@ drwxr-xr-x 2 root root 4096 2021-10-10 21:38 ./source/kde/kde/src/plasma-
|
|||
-rw-r--r-- 1 root root 34148 2021-05-27 13:20 ./source/kde/kde/src/plasma-extra/pulseaudio-qt-1.3.tar.xz
|
||||
-rw-r--r-- 1 root root 488 2021-05-27 13:20 ./source/kde/kde/src/plasma-extra/pulseaudio-qt-1.3.tar.xz.sig
|
||||
-rw-r--r-- 1 root root 3406056 2020-11-03 09:57 ./source/kde/kde/src/plasma-extra/sddm-0.19.0.tar.xz
|
||||
-rw-r--r-- 1 root root 867984 2021-08-12 19:23 ./source/kde/kde/src/plasma-extra/v0.10.0.tar.gz
|
||||
-rw-r--r-- 1 root root 501371 2021-09-06 01:29 ./source/kde/kde/src/plasma-extra/wacomtablet-20210906_d1e216a.tar.lz
|
||||
-rw-r--r-- 1 root root 169056 2021-10-19 15:41 ./source/kde/kde/src/plasma/bluedevil-5.23.1.tar.xz
|
||||
-rw-r--r-- 1 root root 833 2021-10-19 15:42 ./source/kde/kde/src/plasma/bluedevil-5.23.1.tar.xz.sig
|
||||
|
@ -9894,8 +9892,8 @@ drwxr-xr-x 2 root root 4096 2021-02-13 05:31 ./source/l/espeak-ng
|
|||
-rwxr-xr-x 1 root root 3903 2021-02-13 05:31 ./source/l/espeak-ng/espeak-ng.SlackBuild
|
||||
-rw-r--r-- 1 root root 39 2020-07-29 01:37 ./source/l/espeak-ng/espeak-ng.url
|
||||
-rw-r--r-- 1 root root 1063 2020-07-29 02:35 ./source/l/espeak-ng/slack-desc
|
||||
drwxr-xr-x 2 root root 4096 2021-06-16 18:00 ./source/l/exiv2
|
||||
-rw-r--r-- 1 root root 1741714 2021-06-15 14:08 ./source/l/exiv2/exiv2-0.27.4-Source.tar.lz
|
||||
drwxr-xr-x 2 root root 4096 2021-10-23 04:43 ./source/l/exiv2
|
||||
-rw-r--r-- 1 root root 1757050 2021-10-21 17:01 ./source/l/exiv2/exiv2-0.27.5-Source.tar.lz
|
||||
-rwxr-xr-x 1 root root 4434 2021-06-16 18:00 ./source/l/exiv2/exiv2.SlackBuild
|
||||
-rwxr-xr-x 1 root root 1897 2020-09-29 00:01 ./source/l/exiv2/paredown.sh
|
||||
-rw-r--r-- 1 root root 710 2019-11-10 03:11 ./source/l/exiv2/slack-desc
|
||||
|
@ -10998,15 +10996,15 @@ drwxr-xr-x 3 root root 4096 2021-02-13 05:32 ./source/l/mpfr
|
|||
-rwxr-xr-x 1 root root 4497 2021-02-13 05:32 ./source/l/mpfr/mpfr.SlackBuild
|
||||
drwxr-xr-x 2 root root 4096 2011-04-05 02:53 ./source/l/mpfr/patches
|
||||
-rw-r--r-- 1 root root 1038 2018-02-27 06:12 ./source/l/mpfr/slack-desc
|
||||
drwxr-xr-x 3 root root 4096 2021-10-10 21:27 ./source/l/ncurses
|
||||
drwxr-xr-x 3 root root 4096 2021-10-22 17:56 ./source/l/ncurses
|
||||
-rwxr-xr-x 1 root root 3292 2021-10-10 21:28 ./source/l/ncurses/aaa_terminfo.SlackBuild
|
||||
-rw-r--r-- 1 root root 139 2018-06-22 20:33 ./source/l/ncurses/doinst.sh.gz
|
||||
-rw-r--r-- 1 root root 2044796 2021-10-10 00:55 ./source/l/ncurses/ncurses-6.2-20211009.tar.lz
|
||||
-rw-r--r-- 1 root root 2042800 2021-10-22 00:36 ./source/l/ncurses/ncurses-6.3.tar.lz
|
||||
-rwxr-xr-x 1 root root 7649 2021-10-10 21:28 ./source/l/ncurses/ncurses.SlackBuild
|
||||
-rw-r--r-- 1 root root 272 2019-04-22 19:10 ./source/l/ncurses/ncurses.mkhashsize.diff.gz
|
||||
-rw-r--r-- 1 root root 948 2018-03-26 18:28 ./source/l/ncurses/slack-desc
|
||||
-rw-r--r-- 1 root root 963 2018-02-27 06:13 ./source/l/ncurses/slack-desc.aaa_terminfo
|
||||
drwxr-xr-x 2 root root 4096 2018-11-13 22:15 ./source/l/ncurses/terminfo
|
||||
drwxr-xr-x 2 root root 4096 2021-10-22 17:58 ./source/l/ncurses/terminfo
|
||||
-rw-r--r-- 1 root root 231 2017-05-23 23:23 ./source/l/ncurses/terminfo/tmux.terminfo
|
||||
-rw-r--r-- 1 root root 131 2017-05-24 02:22 ./source/l/ncurses/terminfo/tmux.terminfo.README
|
||||
-rw-r--r-- 1 root root 47612 2018-04-14 17:34 ./source/l/ncurses/terminfo/xterm.terminfo
|
||||
|
@ -12015,10 +12013,10 @@ drwxr-xr-x 2 root root 4096 2021-08-23 18:09 ./source/n/libgcrypt
|
|||
-rw-r--r-- 1 root root 702 2018-02-27 06:13 ./source/n/libgcrypt/slack-desc
|
||||
drwxr-xr-x 2 root root 4096 2021-03-22 18:29 ./source/n/libgpg-error
|
||||
-rw-r--r-- 1 root root 779694 2021-03-22 10:53 ./source/n/libgpg-error/libgpg-error-1.42.tar.lz
|
||||
-rwxr-xr-x 1 root root 4768 2021-03-22 18:29 ./source/n/libgpg-error/libgpg-error.SlackBuild
|
||||
-rw-r--r-- 1 root root 41 2020-02-08 19:17 ./source/n/libgpg-error/libgpg-error.url
|
||||
-rw-r--r-- 1 root root 852 2018-02-27 06:13 ./source/n/libgpg-error/slack-desc
|
||||
drwxr-xr-x 2 root root 4096 2021-06-10 18:08 ./source/n/libksba
|
||||
-rwxr-xr-x 1 root root 4768 2021-03-22 18:29 ./source/n/libgpg-error/libgpg-error.SlackBuild
|
||||
-rw-r--r-- 1 root root 41 2020-02-08 19:17 ./source/n/libgpg-error/libgpg-error.url
|
||||
-rw-r--r-- 1 root root 852 2018-02-27 06:13 ./source/n/libgpg-error/slack-desc
|
||||
drwxr-xr-x 2 root root 4096 2021-06-10 18:08 ./source/n/libksba
|
||||
-rw-r--r-- 1 root root 662120 2021-06-10 12:33 ./source/n/libksba/libksba-1.6.0.tar.bz2
|
||||
-rw-r--r-- 1 root root 119 2021-06-10 12:33 ./source/n/libksba/libksba-1.6.0.tar.bz2.sig
|
||||
-rwxr-xr-x 1 root root 3963 2021-04-07 19:48 ./source/n/libksba/libksba.SlackBuild
|
||||
|
@ -12448,12 +12446,12 @@ drwxr-xr-x 2 root root 4096 2021-03-26 17:48 ./source/n/pam-krb5
|
|||
-rw-r--r-- 1 root root 45 2020-05-09 19:13 ./source/n/pam-krb5/pam-krb5.url
|
||||
-rw-r--r-- 1 root root 929 2020-05-09 19:19 ./source/n/pam-krb5/slack-desc
|
||||
-rw-r--r-- 1 root root 379 2020-05-09 19:12 ./source/n/pam-krb5/system-auth.krb5
|
||||
drwxr-xr-x 2 root root 4096 2021-09-24 18:00 ./source/n/php
|
||||
drwxr-xr-x 2 root root 4096 2021-10-22 18:01 ./source/n/php
|
||||
-rw-r--r-- 1 root root 432 2020-12-21 16:28 ./source/n/php/doinst.sh.gz
|
||||
-rwxr-xr-x 1 root root 120 2021-09-24 18:00 ./source/n/php/fetch-php.sh
|
||||
-rwxr-xr-x 1 root root 120 2021-10-22 18:01 ./source/n/php/fetch-php.sh
|
||||
-rw-r--r-- 1 root root 1022 2017-11-28 18:32 ./source/n/php/mod_php.conf.example
|
||||
-rw-r--r-- 1 root root 10372816 2021-09-21 11:40 ./source/n/php/php-7.4.24.tar.xz
|
||||
-rw-r--r-- 1 root root 833 2021-09-21 11:40 ./source/n/php/php-7.4.24.tar.xz.asc
|
||||
-rw-r--r-- 1 root root 10376304 2021-10-19 15:40 ./source/n/php/php-7.4.25.tar.xz
|
||||
-rw-r--r-- 1 root root 833 2021-10-19 15:40 ./source/n/php/php-7.4.25.tar.xz.asc
|
||||
-rw-r--r-- 1 root root 387 2017-11-28 02:08 ./source/n/php/php-fpm.conf.diff.gz
|
||||
-rwxr-xr-x 1 root root 10795 2021-09-21 02:11 ./source/n/php/php.SlackBuild
|
||||
-rw-r--r-- 1 root root 855 2021-06-29 20:14 ./source/n/php/php.enchant-2.patch.gz
|
||||
|
@ -12489,7 +12487,7 @@ drwxr-xr-x 2 root root 4096 2021-07-27 00:31 ./source/n/postfix
|
|||
-rw-r--r-- 1 root root 58 2018-05-22 17:24 ./source/n/postfix/postfix.url
|
||||
-rw-r--r-- 1 root root 1616 2017-10-14 18:09 ./source/n/postfix/rc.postfix
|
||||
-rw-r--r-- 1 root root 896 2018-02-27 06:13 ./source/n/postfix/slack-desc
|
||||
drwxr-xr-x 2 root root 4096 2021-02-13 05:32 ./source/n/ppp
|
||||
drwxr-xr-x 2 root root 4096 2021-10-23 19:00 ./source/n/ppp
|
||||
-rw-r--r-- 1 root root 345 2020-02-07 02:48 ./source/n/ppp/doinst.sh.gz
|
||||
-rw-r--r-- 1 root root 278608 2015-01-19 16:18 ./source/n/ppp/freeradius-client-1.1.7.tar.xz
|
||||
-rw-r--r-- 1 root root 3620 1999-09-30 05:49 ./source/n/ppp/options.new.gz
|
||||
|
@ -12506,7 +12504,6 @@ drwxr-xr-x 2 root root 4096 2021-02-13 05:32 ./source/n/ppp
|
|||
-rw-r--r-- 1 root root 812 2005-07-25 05:56 ./source/n/ppp/radius.msdict.gz
|
||||
-rw-r--r-- 1 root root 372 2005-07-25 05:56 ./source/n/ppp/realms.gz
|
||||
-rw-r--r-- 1 root root 944 2020-03-04 20:03 ./source/n/ppp/slack-desc
|
||||
-rw-r--r-- 1 root root 719861 2021-01-25 18:54 ./source/n/ppp/v2.4.9.tar.gz
|
||||
drwxr-xr-x 2 root root 4096 2021-02-13 05:32 ./source/n/procmail
|
||||
-rw-r--r-- 1 root root 294 2001-08-21 22:22 ./source/n/procmail/_procmail.tar.gz
|
||||
-rw-r--r-- 1 root root 226817 2001-09-11 05:10 ./source/n/procmail/procmail-3.22.tar.gz
|
||||
|
@ -14562,7 +14559,7 @@ drwxr-xr-x 2 root root 4096 2021-10-12 20:15 ./source/xap/mozilla-firefox/
|
|||
-rwxr-xr-x 1 root root 16060 2021-10-06 04:15 ./source/xap/mozilla-firefox/mozilla-firefox.SlackBuild
|
||||
-rw-r--r-- 1 root root 2748 2017-12-04 21:30 ./source/xap/mozilla-firefox/mozilla-firefox.desktop
|
||||
-rw-r--r-- 1 root root 1033 2020-07-07 18:08 ./source/xap/mozilla-firefox/slack-desc
|
||||
drwxr-xr-x 4 root root 4096 2021-10-06 18:34 ./source/xap/mozilla-thunderbird
|
||||
drwxr-xr-x 4 root root 4096 2021-10-22 18:27 ./source/xap/mozilla-thunderbird
|
||||
drwxr-xr-x 2 root root 4096 2016-07-03 18:05 ./source/xap/mozilla-thunderbird/autoconf
|
||||
-rw-r--r-- 1 root root 5869 2016-07-03 18:04 ./source/xap/mozilla-thunderbird/autoconf/autoconf-2.13-consolidated_fixes-1.patch.gz
|
||||
-rw-r--r-- 1 root root 300116 1999-01-15 21:03 ./source/xap/mozilla-thunderbird/autoconf/autoconf-2.13.tar.xz
|
||||
|
@ -14586,8 +14583,8 @@ drwxr-xr-x 2 root root 4096 2021-10-12 20:16 ./source/xap/mozilla-thunderb
|
|||
-rw-r--r-- 1 root root 3378 2005-03-08 05:13 ./source/xap/mozilla-thunderbird/mozilla-thunderbird.desktop
|
||||
-rw-r--r-- 1 root root 1130 2018-02-27 06:47 ./source/xap/mozilla-thunderbird/slack-desc
|
||||
-rw-r--r-- 1 root root 330 2019-08-27 16:35 ./source/xap/mozilla-thunderbird/tb.ui.scrollToClick.diff.gz
|
||||
-rw-r--r-- 1 root root 403836192 2021-10-06 17:18 ./source/xap/mozilla-thunderbird/thunderbird-91.2.0.source.tar.xz
|
||||
-rw-r--r-- 1 root root 833 2021-10-06 17:18 ./source/xap/mozilla-thunderbird/thunderbird-91.2.0.source.tar.xz.asc
|
||||
-rw-r--r-- 1 root root 405405688 2021-10-21 19:18 ./source/xap/mozilla-thunderbird/thunderbird-91.2.1.source.tar.xz
|
||||
-rw-r--r-- 1 root root 833 2021-10-21 19:18 ./source/xap/mozilla-thunderbird/thunderbird-91.2.1.source.tar.xz.asc
|
||||
drwxr-xr-x 2 root root 4096 2021-09-10 17:57 ./source/xap/network-manager-applet
|
||||
-rw-r--r-- 1 root root 173 2021-09-10 17:57 ./source/xap/network-manager-applet/doinst.sh.gz
|
||||
-rw-r--r-- 1 root root 1903280 2021-08-17 08:14 ./source/xap/network-manager-applet/network-manager-applet-1.24.0.tar.xz
|
||||
|
@ -15003,14 +15000,57 @@ drwxr-xr-x 2 root root 4096 2021-02-13 05:32 ./source/y/nethack
|
|||
-rwxr-xr-x 1 root root 4998 2021-02-13 05:32 ./source/y/nethack/nethack.SlackBuild
|
||||
-rw-r--r-- 1 root root 59 2020-12-30 20:25 ./source/y/nethack/nethack.url
|
||||
-rw-r--r-- 1 root root 1031 2020-12-30 21:50 ./source/y/nethack/slack-desc
|
||||
drwxr-xr-x 4 root root 4096 2021-07-14 18:01 ./testing
|
||||
-rw-r--r-- 1 root root 552 2021-07-14 18:01 ./testing/CHECKSUMS.md5
|
||||
-rw-r--r-- 1 root root 163 2021-07-14 18:01 ./testing/CHECKSUMS.md5.asc
|
||||
-rw-r--r-- 1 root root 709 2021-07-14 18:01 ./testing/FILE_LIST
|
||||
-rw-r--r-- 1 root root 14 2021-07-14 18:01 ./testing/MANIFEST.bz2
|
||||
-rw-r--r-- 1 root root 224 2021-07-14 18:01 ./testing/PACKAGES.TXT
|
||||
drwxr-xr-x 2 root root 4096 2021-07-14 16:06 ./testing/packages
|
||||
drwxr-xr-x 2 root root 4096 2021-07-14 16:06 ./testing/source
|
||||
drwxr-xr-x 4 root root 4096 2021-10-23 19:06 ./testing
|
||||
-rw-r--r-- 1 root root 4172 2021-10-23 19:06 ./testing/CHECKSUMS.md5
|
||||
-rw-r--r-- 1 root root 163 2021-10-23 19:06 ./testing/CHECKSUMS.md5.asc
|
||||
-rw-r--r-- 1 root root 5285 2021-10-23 19:06 ./testing/FILE_LIST
|
||||
-rw-r--r-- 1 root root 1227194 2021-10-23 19:06 ./testing/MANIFEST.bz2
|
||||
-rw-r--r-- 1 root root 3512 2021-10-23 19:06 ./testing/PACKAGES.TXT
|
||||
drwxr-xr-x 3 root root 4096 2021-10-22 23:23 ./testing/packages
|
||||
drwxr-xr-x 2 root root 4096 2021-10-23 19:06 ./testing/packages/linux-5.14.x
|
||||
-rw-r--r-- 1 root root 624 2021-10-22 23:02 ./testing/packages/linux-5.14.x/kernel-generic-5.14.14-x86_64-2.txt
|
||||
-rw-r--r-- 1 root root 8112964 2021-10-22 23:02 ./testing/packages/linux-5.14.x/kernel-generic-5.14.14-x86_64-2.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-22 23:02 ./testing/packages/linux-5.14.x/kernel-generic-5.14.14-x86_64-2.txz.asc
|
||||
-rw-r--r-- 1 root root 332 2021-10-22 23:06 ./testing/packages/linux-5.14.x/kernel-headers-5.14.14-x86-2.txt
|
||||
-rw-r--r-- 1 root root 1070064 2021-10-22 23:06 ./testing/packages/linux-5.14.x/kernel-headers-5.14.14-x86-2.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-22 23:06 ./testing/packages/linux-5.14.x/kernel-headers-5.14.14-x86-2.txz.asc
|
||||
-rw-r--r-- 1 root root 636 2021-10-22 23:01 ./testing/packages/linux-5.14.x/kernel-huge-5.14.14-x86_64-2.txt
|
||||
-rw-r--r-- 1 root root 12009344 2021-10-22 23:01 ./testing/packages/linux-5.14.x/kernel-huge-5.14.14-x86_64-2.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-22 23:01 ./testing/packages/linux-5.14.x/kernel-huge-5.14.14-x86_64-2.txz.asc
|
||||
-rw-r--r-- 1 root root 567 2021-10-22 23:06 ./testing/packages/linux-5.14.x/kernel-modules-5.14.14-x86_64-2.txt
|
||||
-rw-r--r-- 1 root root 49682760 2021-10-22 23:06 ./testing/packages/linux-5.14.x/kernel-modules-5.14.14-x86_64-2.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-22 23:06 ./testing/packages/linux-5.14.x/kernel-modules-5.14.14-x86_64-2.txz.asc
|
||||
-rw-r--r-- 1 root root 317 2021-10-22 23:00 ./testing/packages/linux-5.14.x/kernel-source-5.14.14-noarch-2.txt
|
||||
-rw-r--r-- 1 root root 121718268 2021-10-22 23:00 ./testing/packages/linux-5.14.x/kernel-source-5.14.14-noarch-2.txz
|
||||
-rw-r--r-- 1 root root 163 2021-10-22 23:00 ./testing/packages/linux-5.14.x/kernel-source-5.14.14-noarch-2.txz.asc
|
||||
drwxr-xr-x 3 root root 4096 2021-10-22 19:07 ./testing/source
|
||||
drwxr-xr-x 4 root root 4096 2021-10-22 19:08 ./testing/source/linux-5.14.x
|
||||
-rwxr-xr-x 1 root root 8297 2021-10-22 19:08 ./testing/source/linux-5.14.x/build-all-kernels.sh
|
||||
drwxr-xr-x 2 root root 4096 2021-10-20 17:58 ./testing/source/linux-5.14.x/kernel-configs
|
||||
-rw-r--r-- 1 root root 235191 2021-10-20 20:18 ./testing/source/linux-5.14.x/kernel-configs/config-generic-5.14.14
|
||||
-rw-r--r-- 1 root root 237706 2021-10-20 20:21 ./testing/source/linux-5.14.x/kernel-configs/config-generic-5.14.14.x64
|
||||
-rw-r--r-- 1 root root 236513 2021-10-20 20:18 ./testing/source/linux-5.14.x/kernel-configs/config-generic-smp-5.14.14-smp
|
||||
-rw-r--r-- 1 root root 235191 2021-10-20 20:18 ./testing/source/linux-5.14.x/kernel-configs/config-huge-5.14.14
|
||||
-rw-r--r-- 1 root root 237706 2021-10-20 20:21 ./testing/source/linux-5.14.x/kernel-configs/config-huge-5.14.14.x64
|
||||
-rw-r--r-- 1 root root 236513 2021-10-20 20:18 ./testing/source/linux-5.14.x/kernel-configs/config-huge-smp-5.14.14-smp
|
||||
-rwxr-xr-x 1 root root 7441 2020-06-11 19:56 ./testing/source/linux-5.14.x/kernel-generic.SlackBuild
|
||||
-rwxr-xr-x 1 root root 3779 2019-09-29 23:48 ./testing/source/linux-5.14.x/kernel-headers.SlackBuild
|
||||
-rwxr-xr-x 1 root root 6004 2020-06-11 19:57 ./testing/source/linux-5.14.x/kernel-modules.SlackBuild
|
||||
-rwxr-xr-x 1 root root 8858 2021-10-22 18:54 ./testing/source/linux-5.14.x/kernel-source.SlackBuild
|
||||
-rw-r--r-- 1 root root 991 2021-10-20 10:03 ./testing/source/linux-5.14.x/linux-5.14.14.tar.sign
|
||||
-rw-r--r-- 1 root root 120707532 2021-10-20 10:03 ./testing/source/linux-5.14.x/linux-5.14.14.tar.xz
|
||||
drwxr-xr-x 2 root root 4096 2018-03-05 18:29 ./testing/source/linux-5.14.x/slack-desc
|
||||
-rw-r--r-- 1 root root 1138 2018-02-27 06:16 ./testing/source/linux-5.14.x/slack-desc/slack-desc.kernel-generic-smp.i686
|
||||
-rw-r--r-- 1 root root 1041 2018-02-27 06:16 ./testing/source/linux-5.14.x/slack-desc/slack-desc.kernel-generic.i586
|
||||
-rw-r--r-- 1 root root 1086 2018-02-27 06:16 ./testing/source/linux-5.14.x/slack-desc/slack-desc.kernel-generic.x86_64
|
||||
-rw-r--r-- 1 root root 794 2018-03-05 04:04 ./testing/source/linux-5.14.x/slack-desc/slack-desc.kernel-headers
|
||||
-rw-r--r-- 1 root root 1151 2018-02-27 06:16 ./testing/source/linux-5.14.x/slack-desc/slack-desc.kernel-huge-smp.i686
|
||||
-rw-r--r-- 1 root root 1060 2018-02-27 06:16 ./testing/source/linux-5.14.x/slack-desc/slack-desc.kernel-huge.i586
|
||||
-rw-r--r-- 1 root root 1095 2018-02-27 06:16 ./testing/source/linux-5.14.x/slack-desc/slack-desc.kernel-huge.x86_64
|
||||
-rw-r--r-- 1 root root 1029 2018-03-05 18:29 ./testing/source/linux-5.14.x/slack-desc/slack-desc.kernel-modules-template
|
||||
-rw-r--r-- 1 root root 778 2018-02-27 06:16 ./testing/source/linux-5.14.x/slack-desc/slack-desc.kernel-source
|
||||
-rw-r--r-- 1 root root 778 2018-02-27 06:16 ./testing/source/linux-5.14.x/slack-desc/slack-desc.kernel-source.vanilla
|
||||
-rw-r--r-- 1 root root 1000 2018-03-05 08:27 ./testing/source/linux-5.14.x/slack-desc/slack-desc.kernel-template
|
||||
drwxr-xr-x 2 root root 4096 2021-10-20 19:29 ./usb-and-pxe-installers
|
||||
-rw-r--r-- 1 root root 31203 2011-03-21 21:21 ./usb-and-pxe-installers/README_PXE.TXT
|
||||
-rw-r--r-- 1 root root 9197 2013-09-25 04:33 ./usb-and-pxe-installers/README_USB.TXT
|
||||
|
|
|
@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
|
|||
|
||||
PKGNAM=itstool
|
||||
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
|
||||
BUILD=${BUILD:-1}
|
||||
BUILD=${BUILD:-2}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
|
@ -78,6 +78,7 @@ find . \
|
|||
-exec chmod 644 {} \+
|
||||
|
||||
# Configure:
|
||||
PYTHON=/usr/bin/python3 \
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
|
|
|
@ -25,7 +25,7 @@ cd $(dirname $0) ; CWD=$(pwd)
|
|||
|
||||
PKGNAM=meson
|
||||
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
|
||||
BUILD=${BUILD:-2}
|
||||
BUILD=${BUILD:-1}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
|
|
|
@ -35,7 +35,7 @@ fi
|
|||
|
||||
PKGNAM=python-setuptools
|
||||
VERSION=${VERSION:-$(echo setuptools-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
|
||||
BUILD=${BUILD:-2}
|
||||
BUILD=${BUILD:-1}
|
||||
|
||||
SRCNAM=setuptools
|
||||
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
lftpget http://us.php.net/distributions/php-7.4.24.tar.xz.asc
|
||||
lftpget http://us.php.net/distributions/php-7.4.24.tar.xz
|
||||
lftpget http://us.php.net/distributions/php-7.4.25.tar.xz.asc
|
||||
lftpget http://us.php.net/distributions/php-7.4.25.tar.xz
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
kernel-generic: kernel-generic (a general purpose SMP Linux kernel)
|
||||
kernel-generic:
|
||||
kernel-generic: This is a Linux kernel with built-in support for most disk
|
||||
kernel-generic: controllers. To use filesystems, or to load support for a SCSI or
|
||||
kernel-generic: other controller, then you'll need to load one or more kernel
|
||||
kernel-generic: modules using an initial ramdisk, or initrd. For more information
|
||||
kernel-generic: about creating an initrd, see the README.initrd file in the /boot
|
||||
kernel-generic: directory.
|
||||
kernel-generic:
|
||||
kernel-generic: SMP is "Symmetric multiprocessing", or multiple CPU/core support.
|
||||
kernel-generic:
|
|
@ -0,0 +1,11 @@
|
|||
kernel-headers: kernel-headers (Linux kernel include files)
|
||||
kernel-headers:
|
||||
kernel-headers: These are the include files from the Linux kernel.
|
||||
kernel-headers:
|
||||
kernel-headers: You'll need these to compile most system software for Linux.
|
||||
kernel-headers:
|
||||
kernel-headers:
|
||||
kernel-headers:
|
||||
kernel-headers:
|
||||
kernel-headers:
|
||||
kernel-headers:
|
|
@ -0,0 +1,11 @@
|
|||
kernel-huge: kernel-huge (a fully-loaded SMP Linux kernel)
|
||||
kernel-huge:
|
||||
kernel-huge: This is a Linux kernel with built-in support for most disk
|
||||
kernel-huge: controllers. 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 in 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: SMP is "Symmetric multiprocessing", or multiple CPU/core support.
|
||||
kernel-huge:
|
|
@ -0,0 +1,11 @@
|
|||
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:
|
|
@ -0,0 +1,11 @@
|
|||
kernel-source: kernel-source (Linux kernel source)
|
||||
kernel-source:
|
||||
kernel-source: Source code for Linus Torvalds' Linux kernel.
|
||||
kernel-source:
|
||||
kernel-source: This is the complete and unmodified source code for the Linux kernel.
|
||||
kernel-source:
|
||||
kernel-source:
|
||||
kernel-source:
|
||||
kernel-source:
|
||||
kernel-source:
|
||||
kernel-source:
|
175
testing/source/linux-5.14.x/build-all-kernels.sh
Executable file
175
testing/source/linux-5.14.x/build-all-kernels.sh
Executable file
|
@ -0,0 +1,175 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Copyright 2018, 2021 Patrick J. Volkerding, Sebeka, Minnesota, 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.
|
||||
|
||||
# This script uses the SlackBuild scripts present here to build a
|
||||
# complete set of kernel packages for the currently running architecture.
|
||||
# It needs to be run once on 64-bit (uname -m = x86_64) and once on IA32
|
||||
# (uname -m = i586 or i686).
|
||||
|
||||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
BUILD=${BUILD:-2}
|
||||
if [ -z "$VERSION" ]; then
|
||||
# Get the filename of the newest kernel tarball:
|
||||
KERNEL_SOURCE_FILE="$(/bin/ls -t linux-*.tar.?z | head -n 1 )"
|
||||
if echo $KERNEL_SOURCE_FILE | grep -q rc ; then # need to get rc versions a bit differently
|
||||
VERSION=$(/bin/ls -t linux-*.tar.?z | head -n 1 | rev | cut -f 3- -d . | cut -f 1,2 -d - | rev)
|
||||
else # normal release version
|
||||
VERSION=$(/bin/ls -t linux-*.tar.?z | head -n 1 | rev | cut -f 3- -d . | cut -f 1 -d - | rev)
|
||||
fi
|
||||
fi
|
||||
TMP=${TMP:-/tmp}
|
||||
|
||||
# By default, install the packages as we build them and update the initrd.
|
||||
INSTALL_PACKAGES=${INSTALL_PACKAGES:-YES}
|
||||
|
||||
# Clean kernels before building them. Not doing so quit working some time
|
||||
# after 4.19.x.
|
||||
export KERNEL_CLEAN=YES
|
||||
|
||||
# A list of recipes for build may be passed in the $RECIPES variable, otherwise
|
||||
# we have defaults based on uname -m:
|
||||
if [ -z "$RECIPES" ]; then
|
||||
if uname -m | grep -wq x86_64 ; then
|
||||
RECIPES="x86_64"
|
||||
elif uname -m | grep -wq i.86 ; then
|
||||
RECIPES="IA32_NO_SMP IA32_SMP"
|
||||
else
|
||||
echo "Error: no build recipes available for $(uname -m)"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
# Main build loop:
|
||||
for recipe in $RECIPES ; do
|
||||
|
||||
# Build recipes are defined here. These will select the appropriate .config
|
||||
# files and package naming scheme, and define the output location.
|
||||
if [ "$recipe" = "x86_64" ]; then
|
||||
# Recipe for x86_64:
|
||||
CONFIG_SUFFIX=".x64"
|
||||
unset LOCALVERSION
|
||||
OUTPUT=${OUTPUT:-${TMP}/output-x86_64-${VERSION}}
|
||||
elif [ "$recipe" = "IA32_SMP" ]; then
|
||||
# Recipe for IA32_SMP:
|
||||
unset CONFIG_SUFFIX
|
||||
LOCALVERSION="-smp"
|
||||
OUTPUT=${OUTPUT:-${TMP}/output-ia32-${VERSION}}
|
||||
elif [ "$recipe" = "IA32_NO_SMP" ]; then
|
||||
# Recipe for IA32_NO_SMP:
|
||||
unset CONFIG_SUFFIX
|
||||
unset LOCALVERSION
|
||||
OUTPUT=${OUTPUT:-${TMP}/output-ia32-${VERSION}}
|
||||
else
|
||||
echo "Error: recipe ${recipe} not implemented"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo
|
||||
echo "*************************************************"
|
||||
echo "* Building kernels for recipe ${recipe}..."
|
||||
echo "*************************************************"
|
||||
echo
|
||||
|
||||
# Build kernel-source package:
|
||||
KERNEL_SOURCE_PACKAGE_NAME=$(PRINT_PACKAGE_NAME=YES KERNEL_CONFIG="config-generic${LOCALVERSION}-${VERSION}${LOCALVERSION}${CONFIG_SUFFIX}" VERSION=$VERSION BUILD=$BUILD ./kernel-source.SlackBuild)
|
||||
KERNEL_CONFIG="config-generic${LOCALVERSION}-${VERSION}${LOCALVERSION}${CONFIG_SUFFIX}" VERSION=$VERSION BUILD=$BUILD ./kernel-source.SlackBuild
|
||||
mkdir -p $OUTPUT
|
||||
mv ${TMP}/${KERNEL_SOURCE_PACKAGE_NAME} $OUTPUT || exit 1
|
||||
if [ "${INSTALL_PACKAGES}" = "YES" ]; then
|
||||
installpkg ${OUTPUT}/${KERNEL_SOURCE_PACKAGE_NAME} || exit 1
|
||||
fi
|
||||
|
||||
# Build kernel-huge package:
|
||||
# We will build in the just-built kernel tree. First, let's put back the
|
||||
# symlinks:
|
||||
( cd $TMP/package-kernel-source
|
||||
sh install/doinst.sh
|
||||
)
|
||||
KERNEL_HUGE_PACKAGE_NAME=$(PRINT_PACKAGE_NAME=YES KERNEL_NAME=huge KERNEL_SOURCE=$TMP/package-kernel-source/usr/src/linux KERNEL_CONFIG=./kernel-configs/config-huge${LOCALVERSION}-${VERSION}${LOCALVERSION}${CONFIG_SUFFIX} CONFIG_SUFFIX=${CONFIG_SUFFIX} KERNEL_OUTPUT_DIRECTORY=$OUTPUT/kernels/huge$(echo ${LOCALVERSION} | tr -d -).s BUILD=$BUILD ./kernel-generic.SlackBuild)
|
||||
KERNEL_NAME=huge KERNEL_SOURCE=$TMP/package-kernel-source/usr/src/linux KERNEL_CONFIG=./kernel-configs/config-huge${LOCALVERSION}-${VERSION}${LOCALVERSION}${CONFIG_SUFFIX} CONFIG_SUFFIX=${CONFIG_SUFFIX} KERNEL_OUTPUT_DIRECTORY=$OUTPUT/kernels/huge$(echo ${LOCALVERSION} | tr -d -).s BUILD=$BUILD ./kernel-generic.SlackBuild
|
||||
if [ -r ${TMP}/${KERNEL_HUGE_PACKAGE_NAME} ]; then
|
||||
mv ${TMP}/${KERNEL_HUGE_PACKAGE_NAME} $OUTPUT
|
||||
else
|
||||
echo "kernel-source build failed."
|
||||
exit 1
|
||||
fi
|
||||
if [ "${INSTALL_PACKAGES}" = "YES" ]; then
|
||||
installpkg ${OUTPUT}/${KERNEL_HUGE_PACKAGE_NAME} || exit 1
|
||||
fi
|
||||
|
||||
# Build kernel-generic package:
|
||||
KERNEL_GENERIC_PACKAGE_NAME=$(PRINT_PACKAGE_NAME=YES KERNEL_NAME=generic KERNEL_SOURCE=$TMP/package-kernel-source/usr/src/linux KERNEL_CONFIG=./kernel-configs/config-generic${LOCALVERSION}-${VERSION}${LOCALVERSION}${CONFIG_SUFFIX} CONFIG_SUFFIX=${CONFIG_SUFFIX} KERNEL_OUTPUT_DIRECTORY=$OUTPUT/kernels/generic$(echo ${LOCALVERSION} | tr -d -).s BUILD=$BUILD ./kernel-generic.SlackBuild)
|
||||
KERNEL_NAME=generic KERNEL_SOURCE=$TMP/package-kernel-source/usr/src/linux KERNEL_CONFIG=./kernel-configs/config-generic${LOCALVERSION}-${VERSION}${LOCALVERSION}${CONFIG_SUFFIX} CONFIG_SUFFIX=${CONFIG_SUFFIX} KERNEL_OUTPUT_DIRECTORY=$OUTPUT/kernels/generic$(echo ${LOCALVERSION} | tr -d -).s BUILD=$BUILD ./kernel-generic.SlackBuild
|
||||
if [ -r ${TMP}/${KERNEL_GENERIC_PACKAGE_NAME} ]; then
|
||||
mv ${TMP}/${KERNEL_GENERIC_PACKAGE_NAME} $OUTPUT
|
||||
else
|
||||
echo "kernel-generic build failed."
|
||||
exit 1
|
||||
fi
|
||||
if [ "${INSTALL_PACKAGES}" = "YES" ]; then
|
||||
installpkg ${OUTPUT}/${KERNEL_GENERIC_PACKAGE_NAME} || exit 1
|
||||
fi
|
||||
|
||||
# Build kernel-modules (for the just built generic kernel, but most of them
|
||||
# will also work with the huge kernel):
|
||||
KERNEL_MODULES_PACKAGE_NAME=$(PRINT_PACKAGE_NAME=YES KERNEL_SOURCE=$TMP/package-kernel-source/usr/src/linux KERNEL_CONFIG=$TMP/package-kernel-source/usr/src/linux/.config BUILD=$BUILD ./kernel-modules.SlackBuild)
|
||||
KERNEL_SOURCE=$TMP/package-kernel-source/usr/src/linux KERNEL_CONFIG=$TMP/package-kernel-source/usr/src/linux/.config BUILD=$BUILD ./kernel-modules.SlackBuild
|
||||
if [ -r ${TMP}/${KERNEL_MODULES_PACKAGE_NAME} ]; then
|
||||
mv ${TMP}/${KERNEL_MODULES_PACKAGE_NAME} $OUTPUT
|
||||
else
|
||||
echo "kernel-modules build failed."
|
||||
exit 1
|
||||
fi
|
||||
if [ "${INSTALL_PACKAGES}" = "YES" ]; then
|
||||
installpkg ${OUTPUT}/${KERNEL_MODULES_PACKAGE_NAME} || exit 1
|
||||
fi
|
||||
|
||||
# Build kernel-headers:
|
||||
KERNEL_HEADERS_PACKAGE_NAME=$(PRINT_PACKAGE_NAME=YES KERNEL_SOURCE=$TMP/package-kernel-source/usr/src/linux BUILD=$BUILD ./kernel-headers.SlackBuild)
|
||||
KERNEL_SOURCE=$TMP/package-kernel-source/usr/src/linux BUILD=$BUILD ./kernel-headers.SlackBuild
|
||||
if [ -r ${TMP}/${KERNEL_HEADERS_PACKAGE_NAME} ]; then
|
||||
mv ${TMP}/${KERNEL_HEADERS_PACKAGE_NAME} $OUTPUT
|
||||
else
|
||||
echo "kernel-headers build failed."
|
||||
exit 1
|
||||
fi
|
||||
if [ "${INSTALL_PACKAGES}" = "YES" ]; then
|
||||
upgradepkg --reinstall --install-new ${OUTPUT}/${KERNEL_HEADERS_PACKAGE_NAME} || exit 1
|
||||
fi
|
||||
|
||||
# Update initrd:
|
||||
if [ "${INSTALL_PACKAGES}" = "YES" ]; then
|
||||
INITRD_VERSION="$(grep "Kernel Configuration" $TMP/package-kernel-source/usr/src/linux/.config | cut -f 3 -d ' ')"
|
||||
INITRD_LOCALVERSION="$(cat $TMP/package-kernel-source/usr/src/linux/.config 2> /dev/null | grep CONFIG_LOCALVERSION= | cut -f 2 -d = | tr -d \")"
|
||||
if [ -r /etc/mkinitrd.conf ]; then
|
||||
mkinitrd -F /etc/mkinitrd.conf -k ${INITRD_VERSION}${INITRD_LOCALVERSION}
|
||||
else # try this?
|
||||
sh /usr/share/mkinitrd/mkinitrd_command_generator.sh -k ${INITRD_VERSION}${INITRD_LOCALVERSION} | sed "s/-c -k/-k/g" | bash
|
||||
fi
|
||||
fi
|
||||
|
||||
echo
|
||||
echo "${recipe} kernel packages done!"
|
||||
echo
|
||||
|
||||
done
|
10115
testing/source/linux-5.14.x/kernel-configs/config-generic-5.14.14
Normal file
10115
testing/source/linux-5.14.x/kernel-configs/config-generic-5.14.14
Normal file
File diff suppressed because it is too large
Load diff
10172
testing/source/linux-5.14.x/kernel-configs/config-generic-5.14.14.x64
Normal file
10172
testing/source/linux-5.14.x/kernel-configs/config-generic-5.14.14.x64
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
10115
testing/source/linux-5.14.x/kernel-configs/config-huge-5.14.14
Normal file
10115
testing/source/linux-5.14.x/kernel-configs/config-huge-5.14.14
Normal file
File diff suppressed because it is too large
Load diff
10172
testing/source/linux-5.14.x/kernel-configs/config-huge-5.14.14.x64
Normal file
10172
testing/source/linux-5.14.x/kernel-configs/config-huge-5.14.14.x64
Normal file
File diff suppressed because it is too large
Load diff
10175
testing/source/linux-5.14.x/kernel-configs/config-huge-smp-5.14.14-smp
Normal file
10175
testing/source/linux-5.14.x/kernel-configs/config-huge-smp-5.14.14-smp
Normal file
File diff suppressed because it is too large
Load diff
158
testing/source/linux-5.14.x/kernel-generic.SlackBuild
Executable file
158
testing/source/linux-5.14.x/kernel-generic.SlackBuild
Executable file
|
@ -0,0 +1,158 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Copyright 2018, 2020 Patrick J. Volkerding, Sebeka, Minnesota, 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.
|
||||
|
||||
# To use this script, point it to a Linux kernel source tree and a .config
|
||||
# file by setting the appropriate environment variables:
|
||||
#
|
||||
# KERNEL_SOURCE=/usr/src/linux KERNEL_CONFIG=./kernel-configs/config-generic-4.14.23 ./kernel-generic.SlackBuild
|
||||
#
|
||||
# It can also build the huge (or any other) kernel:
|
||||
#
|
||||
# KERNEL_NAME=huge KERNEL_SOURCE=/usr/src/linux KERNEL_CONFIG=./kernel-configs/config-huge-4.14.23 ./kernel-generic.SlackBuild
|
||||
#
|
||||
# By default, it will call the package "kernel-generic" and use the source and
|
||||
# .config already in /usr/src/linux (if possible).
|
||||
|
||||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
KERNEL_NAME=${KERNEL_NAME:-generic}
|
||||
KERNEL_SOURCE=${KERNEL_SOURCE:-/usr/src/linux}
|
||||
KERNEL_CONFIG=${KERNEL_CONFIG:-/usr/src/linux/.config}
|
||||
CONFIG_SUFFIX=${CONFIG_SUFFIX:-}
|
||||
BUILD=${BUILD:-1}
|
||||
if [ ! -r "${KERNEL_CONFIG}" ]; then
|
||||
echo "Error: the KERNEL_CONFIG environment variable needs to be set to the"
|
||||
echo ".config file to be used to build this kernel. Example:"
|
||||
echo "KERNEL_NAME=generic KERNEL_SOURCE=/usr/src/linux KERNEL_CONFIG=./kernel-configs/config-generic-4.14.23 ./kernel-generic.SlackBuild"
|
||||
exit 1
|
||||
fi
|
||||
if [ ! -d "${KERNEL_SOURCE}" ]; then
|
||||
echo "Error: kernel source directory ${KERNEL_SOURCE} does not exist."
|
||||
exit 1
|
||||
fi
|
||||
# Get the kernel version from the kernel Makefile:
|
||||
VERSION=$(grep "^VERSION = " ${KERNEL_SOURCE}/Makefile | rev | cut -f 1 -d ' ' | rev).$(grep "^PATCHLEVEL = " ${KERNEL_SOURCE}/Makefile | rev | cut -f 1 -d ' ' | rev).$(grep "^SUBLEVEL = " ${KERNEL_SOURCE}/Makefile | rev | cut -f 1 -d ' ' | rev)$(grep "^EXTRAVERSION = " ${KERNEL_SOURCE}/Makefile | rev | cut -f 1 -d ' ' | rev)
|
||||
# Set LOCALVERSION to the value found inside the .config:
|
||||
LOCALVERSION="$(cat ${KERNEL_SOURCE}/.config 2> /dev/null | grep CONFIG_LOCALVERSION= | cut -f 2 -d = | tr -d \")"
|
||||
# The default kernel arch is x86 for all 32-bit and 64-bit x86:
|
||||
if [ -z "${KERNEL_ARCH}" ]; then
|
||||
case "$(uname -m)" in
|
||||
i?86) KERNEL_ARCH=x86 ;;
|
||||
x86_64) KERNEL_ARCH=x86 ;;
|
||||
# Use uname -m for all other archs:
|
||||
*) KERNEL_ARCH=$(uname -m) ;;
|
||||
esac
|
||||
fi
|
||||
# If this variable is set to an output directory, we will also put copies of
|
||||
# System.map.gz, bzImage, and config in there:
|
||||
KERNEL_OUTPUT_DIRECTORY=${KERNEL_OUTPUT_DIRECTORY:-}
|
||||
|
||||
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
||||
# the name of the created package would be, and then exit. This information
|
||||
# could be useful to other scripts.
|
||||
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
||||
# We will need to copy the config and run make oldconfig and make
|
||||
# prepare in order to generate kernel/bounds.s, where we can find
|
||||
# the true $PACKAGE_ARCH.
|
||||
if [ ! "${KERNEL_CONFIG}" = "${KERNEL_SOURCE}/.config" ]; then
|
||||
cp -a ${KERNEL_CONFIG} ${KERNEL_SOURCE}/.config
|
||||
fi
|
||||
cd ${KERNEL_SOURCE}
|
||||
make oldconfig 1> /dev/null 2> /dev/null
|
||||
make prepare 1> /dev/null 2> /dev/null
|
||||
PACKAGE_ARCH=$(cat kernel/bounds.s | grep -w "\-march=.*" | tr " " "\n" | grep -w "\-march=.*" | cut -f 2 -d = | tr - _)
|
||||
echo "kernel-${KERNEL_NAME}${LOCALVERSION}-$(echo ${VERSION} | tr - _)$(echo ${LOCALVERSION} | tr - _)-${PACKAGE_ARCH}-$BUILD.txz"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
|
||||
TMP=${TMP:-/tmp}
|
||||
PKG=$TMP/package-kernel-${KERNEL_NAME}
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG
|
||||
|
||||
# Set the variable $KERNEL_CLEAN to anything to run "make clean" before the
|
||||
# build. Default is to start compiling in the tree as we found it.
|
||||
if [ ! -z "${KERNEL_CLEAN}" ]; then
|
||||
( cd ${KERNEL_SOURCE}
|
||||
echo "Cleaning kernel source (make clean)..."
|
||||
make clean
|
||||
# Make sure header files aren't missing...
|
||||
make prepare
|
||||
# Don't package the kernel in the sources:
|
||||
find . -name "*Image" -exec rm "{}" \+
|
||||
# No need for these:
|
||||
rm -f .config.old .version
|
||||
find . -name "*.cmd" -exec rm -f "{}" \+
|
||||
rm .*.d
|
||||
)
|
||||
fi
|
||||
|
||||
# Copy the .config into the kernel source directory (unless it's there already)
|
||||
if [ ! "${KERNEL_CONFIG}" = "${KERNEL_SOURCE}/.config" ]; then
|
||||
echo "Copying the .config file to the kernel source tree:"
|
||||
cp -a --verbose ${KERNEL_CONFIG} ${KERNEL_SOURCE}/.config
|
||||
fi
|
||||
|
||||
( cd ${KERNEL_SOURCE}
|
||||
echo "Running make oldconfig..."
|
||||
make oldconfig
|
||||
echo "Building kernel..."
|
||||
make $NUMJOBS bzImage || make bzImage || exit 1
|
||||
# Output files to a directory, if requested:
|
||||
if [ ! -z "${KERNEL_OUTPUT_DIRECTORY}" ]; then
|
||||
echo "Copying files to ${KERNEL_OUTPUT_DIRECTORY}..."
|
||||
mkdir -p ${KERNEL_OUTPUT_DIRECTORY}
|
||||
rm -f ${KERNEL_OUTPUT_DIRECTORY}/*
|
||||
cp -a --verbose System.map ${KERNEL_OUTPUT_DIRECTORY}
|
||||
cp -a --verbose .config ${KERNEL_OUTPUT_DIRECTORY}/config
|
||||
cp -a --verbose arch/${KERNEL_ARCH}/boot/bzImage ${KERNEL_OUTPUT_DIRECTORY}
|
||||
gzip -9 ${KERNEL_OUTPUT_DIRECTORY}/System.map
|
||||
fi
|
||||
echo "Preparing the package in $PKG..."
|
||||
mkdir -p $PKG/boot
|
||||
cp -a --verbose System.map $PKG/boot/System.map-${KERNEL_NAME}${LOCALVERSION}-${VERSION}${LOCALVERSION}
|
||||
cp -a --verbose .config $PKG/boot/config-${KERNEL_NAME}${LOCALVERSION}-${VERSION}${LOCALVERSION}${CONFIG_SUFFIX}
|
||||
cp -a --verbose arch/${KERNEL_ARCH}/boot/bzImage $PKG/boot/vmlinuz-${KERNEL_NAME}${LOCALVERSION}-${VERSION}${LOCALVERSION}
|
||||
# Make symlinks:
|
||||
ln -sf System.map-${KERNEL_NAME}${LOCALVERSION}-${VERSION}${LOCALVERSION} $PKG/boot/System.map
|
||||
ln -sf config-${KERNEL_NAME}${LOCALVERSION}-${VERSION}${LOCALVERSION}${CONFIG_SUFFIX} $PKG/boot/config
|
||||
ln -sf vmlinuz-${KERNEL_NAME}${LOCALVERSION}-${VERSION}${LOCALVERSION} $PKG/boot/vmlinuz
|
||||
ln -sf vmlinuz-${KERNEL_NAME}${LOCALVERSION}-${VERSION}${LOCALVERSION} $PKG/boot/vmlinuz-${KERNEL_NAME}${LOCALVERSION}
|
||||
) || exit 1
|
||||
|
||||
# Fetch the kernel architecture from the source tree:
|
||||
cd ${KERNEL_SOURCE}
|
||||
PACKAGE_ARCH=$(cat kernel/bounds.s | grep -w "\-march=.*" | tr " " "\n" | grep -w "\-march=.*" | cut -f 2 -d = | tr - _)
|
||||
|
||||
mkdir $PKG/install
|
||||
if [ -r $CWD/slack-desc/slack-desc.kernel-${KERNEL_NAME}${LOCALVERSION}.${PACKAGE_ARCH} ]; then
|
||||
cat $CWD/slack-desc/slack-desc.kernel-${KERNEL_NAME}${LOCALVERSION}.${PACKAGE_ARCH} > $PKG/install/slack-desc
|
||||
else
|
||||
cat $CWD/slack-desc/slack-desc.kernel-template | sed "s/%PACKAGE_NAME%/kernel-${KERNEL_NAME}${LOCALVERSION}/g" > $PKG/install/slack-desc
|
||||
fi
|
||||
|
||||
# Make the package:
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $TMP/kernel-${KERNEL_NAME}${LOCALVERSION}-$(echo ${VERSION} | tr - _)$(echo ${LOCALVERSION} | tr - _)-${PACKAGE_ARCH}-$BUILD.txz
|
||||
|
90
testing/source/linux-5.14.x/kernel-headers.SlackBuild
Executable file
90
testing/source/linux-5.14.x/kernel-headers.SlackBuild
Executable file
|
@ -0,0 +1,90 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Copyright 2018 Patrick J. Volkerding, Sebeka, Minnesota, 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.
|
||||
|
||||
# To use this script, point it to a Linux kernel source tree, and it will make
|
||||
# the kernel-headers package using the .config to get all needed package
|
||||
# version information:
|
||||
#
|
||||
# KERNEL_SOURCE=/usr/src/linux ./kernel-headers.SlackBuild
|
||||
|
||||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PKGNAM=${PKGNAM:-kernel-headers}
|
||||
BUILD=${BUILD:-1}
|
||||
KERNEL_SOURCE=${KERNEL_SOURCE:-/usr/src/linux}
|
||||
if [ -z "${HEADERS_ARCH}" ]; then
|
||||
case "$(uname -m)" in
|
||||
i?86) HEADERS_ARCH=x86 ;;
|
||||
x86_64) HEADERS_ARCH=x86 ;;
|
||||
# Use uname -m for all other archs:
|
||||
*) HEADERS_ARCH=$(uname -m) ;;
|
||||
esac
|
||||
fi
|
||||
if [ ! -d "${KERNEL_SOURCE}" ]; then
|
||||
echo "Error: kernel source directory ${KERNEL_SOURCE} does not exist."
|
||||
exit 1
|
||||
elif [ ! -r ${KERNEL_SOURCE}/.config ]; then
|
||||
echo "Error: a .config was not found in ${KERNEL_SOURCE}."
|
||||
exit 1
|
||||
fi
|
||||
# Get the kernel version from the kernel Makefile:
|
||||
VERSION=$(grep "^VERSION = " ${KERNEL_SOURCE}/Makefile | rev | cut -f 1 -d ' ' | rev).$(grep "^PATCHLEVEL = " ${KERNEL_SOURCE}/Makefile | rev | cut -f 1 -d ' ' | rev).$(grep "^SUBLEVEL = " ${KERNEL_SOURCE}/Makefile | rev | cut -f 1 -d ' ' | rev)$(grep "^EXTRAVERSION = " ${KERNEL_SOURCE}/Makefile | rev | cut -f 1 -d ' ' | rev)
|
||||
# Set LOCALVERSION to the value found inside the .config:
|
||||
LOCALVERSION="$(cat ${KERNEL_SOURCE}/.config 2> /dev/null | grep CONFIG_LOCALVERSION= | cut -f 2 -d = | tr -d \")"
|
||||
|
||||
TMP=${TMP:-/tmp}
|
||||
PKG=$TMP/package-$PKGNAM
|
||||
|
||||
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
||||
# the name of the created package would be, and then exit. This information
|
||||
# could be useful to other scripts.
|
||||
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
||||
echo "kernel-headers-$(echo ${VERSION} | tr - _)$(echo ${LOCALVERSION} | tr - _)-${HEADERS_ARCH}-$BUILD.txz"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG
|
||||
mkdir -p $PKG/usr
|
||||
|
||||
# Generate the kernel headers and clean them up:
|
||||
( cd ${KERNEL_SOURCE}
|
||||
echo "Generating headers from the Linux kernel source tree in ${KERNEL_SOURCE}:"
|
||||
make headers_install ARCH=${HEADERS_ARCH} INSTALL_HDR_PATH=$PKG/usr
|
||||
cd $PKG/usr/include
|
||||
# You won't want these files. The ones in libdrm work better.
|
||||
rm -rf drm
|
||||
# This next part seems pretty much cosmetic, but since we've been doing this
|
||||
# for a long time (and others also do), we'll stick with it:
|
||||
mv asm asm-${HEADERS_ARCH}
|
||||
ln -sf asm-${HEADERS_ARCH} asm
|
||||
# Remove unneeded dotfiles:
|
||||
find . -name ".??*" -exec rm -f {} \+
|
||||
)
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc/slack-desc.kernel-headers > $PKG/install/slack-desc
|
||||
|
||||
# Make the package:
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $TMP/kernel-headers-$(echo ${VERSION} | tr - _)$(echo ${LOCALVERSION} | tr - _)-${HEADERS_ARCH}-$BUILD.txz
|
||||
|
135
testing/source/linux-5.14.x/kernel-modules.SlackBuild
Executable file
135
testing/source/linux-5.14.x/kernel-modules.SlackBuild
Executable file
|
@ -0,0 +1,135 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Copyright 2018, 2020 Patrick J. Volkerding, Sebeka, Minnesota, 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.
|
||||
|
||||
# To use this script, point it to a Linux kernel source tree and a .config
|
||||
# file by setting the appropriate environment variables:
|
||||
#
|
||||
# KERNEL_SOURCE=/usr/src/linux KERNEL_CONFIG=./kernel-configs/config-generic-4.14.23 ./kernel-modules.SlackBuild
|
||||
#
|
||||
# By default, it will use the source and .config already in /usr/src/linux (if possible).
|
||||
|
||||
# KERNEL_NAME is optional, and we don't use it. Define it to "-name" if
|
||||
# you'd like an extra string after "kernel" in the package name
|
||||
# (i.e. "kernel-name-modules").
|
||||
|
||||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
KERNEL_NAME=${KERNEL_NAME:-}
|
||||
KERNEL_SOURCE=${KERNEL_SOURCE:-/usr/src/linux}
|
||||
KERNEL_CONFIG=${KERNEL_CONFIG:-/usr/src/linux/.config}
|
||||
BUILD=${BUILD:-1}
|
||||
if [ ! -r "${KERNEL_CONFIG}" ]; then
|
||||
echo "Error: the KERNEL_CONFIG environment variable needs to be set to the"
|
||||
echo ".config file to be used to build these modules. Example:"
|
||||
echo "KERNEL_SOURCE=/usr/src/linux KERNEL_CONFIG=./kernel-configs/config-generic-4.14.23 ./kernel-modules.SlackBuild"
|
||||
exit 1
|
||||
fi
|
||||
if [ ! -d "${KERNEL_SOURCE}" ]; then
|
||||
echo "Error: kernel source directory ${KERNEL_SOURCE} does not exist."
|
||||
exit 1
|
||||
fi
|
||||
# Get the kernel version from the kernel Makefile:
|
||||
VERSION=$(grep "^VERSION = " ${KERNEL_SOURCE}/Makefile | rev | cut -f 1 -d ' ' | rev).$(grep "^PATCHLEVEL = " ${KERNEL_SOURCE}/Makefile | rev | cut -f 1 -d ' ' | rev).$(grep "^SUBLEVEL = " ${KERNEL_SOURCE}/Makefile | rev | cut -f 1 -d ' ' | rev)$(grep "^EXTRAVERSION = " ${KERNEL_SOURCE}/Makefile | rev | cut -f 1 -d ' ' | rev)
|
||||
# Set LOCALVERSION to the value found inside the .config:
|
||||
LOCALVERSION="$(cat ${KERNEL_SOURCE}/.config 2> /dev/null | grep CONFIG_LOCALVERSION= | cut -f 2 -d = | tr -d \")"
|
||||
|
||||
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
||||
# the name of the created package would be, and then exit. This information
|
||||
# could be useful to other scripts.
|
||||
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
||||
# We will need to copy the config and run make oldconfig and make
|
||||
# prepare in order to generate kernel/bounds.s, where we can find
|
||||
# the true $PACKAGE_ARCH.
|
||||
if [ ! "${KERNEL_CONFIG}" = "${KERNEL_SOURCE}/.config" ]; then
|
||||
cp -a ${KERNEL_CONFIG} ${KERNEL_SOURCE}/.config
|
||||
fi
|
||||
cd ${KERNEL_SOURCE}
|
||||
make oldconfig 1> /dev/null 2> /dev/null
|
||||
make prepare 1> /dev/null 2> /dev/null
|
||||
PACKAGE_ARCH=$(cat kernel/bounds.s | grep -w "\-march=.*" | tr " " "\n" | grep -w "\-march=.*" | cut -f 2 -d = | tr - _)
|
||||
echo "kernel${KERNEL_NAME}-modules${LOCALVERSION}-$(echo ${VERSION} | tr - _)$(echo ${LOCALVERSION} | tr - _)-${PACKAGE_ARCH}-$BUILD.txz"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
|
||||
TMP=${TMP:-/tmp}
|
||||
PKG=$TMP/package-kernel${KERNEL_NAME}-modules
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG
|
||||
|
||||
# Set the variable $KERNEL_CLEAN to anything to run "make clean" before the
|
||||
# build. Default is to start compiling in the tree as we found it.
|
||||
if [ ! -z "${KERNEL_CLEAN}" ]; then
|
||||
( cd ${KERNEL_SOURCE}
|
||||
echo "Cleaning kernel source (make clean)..."
|
||||
make clean
|
||||
# Make sure header files aren't missing...
|
||||
make prepare
|
||||
# Don't package the kernel in the sources:
|
||||
find . -name "*Image" -exec rm "{}" \+
|
||||
# No need for these:
|
||||
rm -f .config.old .version
|
||||
find . -name "*.cmd" -exec rm -f "{}" \+
|
||||
rm .*.d
|
||||
)
|
||||
fi
|
||||
|
||||
# Copy the .config into the kernel source directory (unless it's there already)
|
||||
if [ ! "${KERNEL_CONFIG}" = "${KERNEL_SOURCE}/.config" ]; then
|
||||
echo "Copying the .config file to the kernel source tree:"
|
||||
cp -a --verbose ${KERNEL_CONFIG} ${KERNEL_SOURCE}/.config
|
||||
fi
|
||||
|
||||
( cd ${KERNEL_SOURCE}
|
||||
echo "Running make oldconfig..."
|
||||
make oldconfig
|
||||
echo "Running a preliminary make (needed to create modules.builtin.modinfo)..."
|
||||
make $NUMJOBS || exit 1
|
||||
echo "Building kernel modules..."
|
||||
make $NUMJOBS modules || exit 1
|
||||
echo "Installing kernel modules to $PKG..."
|
||||
make INSTALL_MOD_PATH=$PKG modules_install || exit 1
|
||||
# Fix build and source symlinks if they are pointing into /tmp:
|
||||
( cd $PKG/lib/modules/${VERSION}${LOCALVERSION}
|
||||
for symlink in build source ; do
|
||||
target=$(readlink $symlink)
|
||||
if echo $target | grep -q "^/tmp/package-kernel-source/" ; then
|
||||
rm -f $symlink
|
||||
ln -sf $(echo $target | sed "s|/tmp/package-kernel-source/|/|g") $symlink
|
||||
fi
|
||||
done
|
||||
)
|
||||
depmod -b $PKG -a ${VERSION}${LOCALVERSION}
|
||||
) || exit 1
|
||||
|
||||
mkdir $PKG/install
|
||||
cat $CWD/slack-desc/slack-desc.kernel-modules-template | sed "s/%PACKAGE_NAME%/kernel${KERNEL_NAME}-modules${LOCALVERSION}/g" > $PKG/install/slack-desc
|
||||
|
||||
# Fetch the kernel architecture from the source tree:
|
||||
cd ${KERNEL_SOURCE}
|
||||
PACKAGE_ARCH=$(cat kernel/bounds.s | grep -w "\-march=.*" | tr " " "\n" | grep -w "\-march=.*" | cut -f 2 -d = | tr - _)
|
||||
|
||||
# Make the package:
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $TMP/kernel${KERNEL_NAME}-modules${LOCALVERSION}-$(echo ${VERSION} | tr - _)$(echo ${LOCALVERSION} | tr - _)-${PACKAGE_ARCH}-$BUILD.txz
|
||||
|
194
testing/source/linux-5.14.x/kernel-source.SlackBuild
Executable file
194
testing/source/linux-5.14.x/kernel-source.SlackBuild
Executable file
|
@ -0,0 +1,194 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Copyright 2018, 2020, 2021 Patrick J. Volkerding, Sebeka, Minnesota, 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.
|
||||
|
||||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PKGNAM=${PKGNAM:-kernel-source}
|
||||
BUILD=${BUILD:-1}
|
||||
NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
|
||||
TMP=${TMP:-/tmp}
|
||||
PKG=$TMP/package-$PKGNAM
|
||||
# If CONFIG_PREEMPT=y and CONFIG_PREEMPT_DYNAMIC=y, then set a default preempt
|
||||
# mode (none, voluntary, or full):
|
||||
CONFIG_PREEMPT_DEFAULT_MODE=${CONFIG_PREEMPT_DEFAULT_MODE:-none}
|
||||
|
||||
# If a $VERSION is not passed to this script, use the newest linux-*.tar.xz
|
||||
# found in this directory:
|
||||
VERSION=${VERSION:-$(/bin/ls -t linux-*.tar.?z | head -n 1 | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
|
||||
if ! /bin/ls linux-*.tar.?z 1> /dev/null 2> /dev/null ; then
|
||||
echo "Error: kernel source not found. (/bin/ls linux-*.tar.?z)"
|
||||
fi
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$(uname -m)" in
|
||||
# Use uname -m for all archs:
|
||||
*) ARCH=$(uname -m) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
# Kernel extraversion, such as "-smp" on 32-bit. There's usually no need to set
|
||||
# this unless you're using something unusual. We use it to find which .config
|
||||
# file to use, but we'll then use whatever CONFIG_LOCALVERSION is set to
|
||||
# inside the .config.
|
||||
LOCALVERSION=${LOCALVERSION:-""}
|
||||
|
||||
# If KERNEL_CONFIG (name of kernel .config file in ./kernel-configs to use)
|
||||
# has not been passed to this script, then we will select one. We will prefer
|
||||
# to use a generic, SMP-supporting .config with a version number exactly
|
||||
# matching the kernel sources. But if there's no exact version match, we will
|
||||
# start with the newest .config we can find that's of the appropriate type.
|
||||
if [ -z "${KERNEL_CONFIG}" ]; then # figure out the best matching .config
|
||||
if [ "$ARCH" = "x86_64" ]; then
|
||||
CONFIG_SUFFIX=".x64"
|
||||
fi
|
||||
if [ -z "${LOCALVERSION}" ]; then
|
||||
if echo $ARCH | grep -q -E "i?86$" ; then
|
||||
# Default to SMP extraversion on 32-bit:
|
||||
LOCALVERSION="-smp"
|
||||
fi
|
||||
fi
|
||||
if [ -r "$CWD/kernel-configs/config-generic${LOCALVERSION}-${VERSION}$LOCALVERSION${CONFIG_SUFFIX}" ]; then
|
||||
# Exact match!
|
||||
KERNEL_CONFIG="config-generic${LOCALVERSION}-${VERSION}${LOCALVERSION}${CONFIG_SUFFIX}"
|
||||
else # no exact match, so find newest with the same name:
|
||||
FIND_MATCH="$(/bin/ls -t $CWD/kernel-configs/config-generic${LOCALVERSION}-*${LOCALVERSION}${CONFIG_SUFFIX} 2> /dev/null | head -n 1)"
|
||||
if [ -r "${FIND_MATCH}" ]; then
|
||||
KERNEL_CONFIG="$(basename ${FIND_MATCH})"
|
||||
unset FIND_MATCH
|
||||
else
|
||||
echo "Error: no matching .config file could be found for this kernel. Tried:"
|
||||
echo " $CWD/kernel-configs/config-generic${LOCALVERSION}-${VERSION}${LOCALVERSION}${CONFIG_SUFFIX} (not found)"
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
else # We were given a name to use:
|
||||
if [ ! -r "$CWD/kernel-configs/${KERNEL_CONFIG}" ]; then
|
||||
echo "Error: specified kernel .config $CWD/kernel-configs/${KERNEL_CONFIG} was not found."
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
# Set LOCALVERSION to the value found inside the .config:
|
||||
LOCALVERSION="$(cat $CWD/kernel-configs/${KERNEL_CONFIG} | grep CONFIG_LOCALVERSION= | cut -f 2 -d = | tr -d \")"
|
||||
|
||||
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
||||
# the name of the created package would be, and then exit. This information
|
||||
# could be useful to other scripts.
|
||||
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
||||
# We will have to extract and patch the kernel sources to find out the kernel version:
|
||||
TEMPDIR=$(mktemp -d)
|
||||
cd $TEMPDIR
|
||||
tar xf $CWD/linux-${VERSION}.tar.?z || exit 1
|
||||
cd linux*
|
||||
if [ -d $CWD/patches-${VERSION} ]; then
|
||||
zcat $CWD/patches-${VERSION}/*.gz | patch -p1 --backup --suffix=.orig 1> /dev/null 2> /dev/null || exit 1
|
||||
fi
|
||||
PACKAGE_VERSION=$(grep "^VERSION = " Makefile | rev | cut -f 1 -d ' ' | rev).$(grep "^PATCHLEVEL = " Makefile | rev | cut -f 1 -d ' ' | rev).$(grep "^SUBLEVEL = " Makefile | rev | cut -f 1 -d ' ' | rev)$(grep "^EXTRAVERSION = " Makefile | rev | cut -f 1 -d ' ' | rev)
|
||||
cd $CWD
|
||||
rm -rf $TEMPDIR
|
||||
echo "kernel-source-$(echo ${PACKAGE_VERSION} | tr - _)$(echo ${LOCALVERSION} | tr - _)-noarch-$BUILD.txz"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "Using kernel config: $CWD/kernel-configs/${KERNEL_CONFIG}"
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG
|
||||
mkdir -p $PKG/usr/src
|
||||
|
||||
echo "Untarring $CWD/linux-${VERSION}.tar.?z in $PKG/usr/src..."
|
||||
( cd $PKG/usr/src
|
||||
tar xf $CWD/linux-${VERSION}.tar.?z || exit 1
|
||||
echo "Making /usr/src/linux symlink..."
|
||||
ln -sf linux-* linux
|
||||
cd linux-*
|
||||
if [ -d $CWD/patches-${VERSION} ]; then
|
||||
echo "Applying kernel patches in $CWD/patches-${VERSION} and copying patches to $PKG/usr/src/linux-${VERSION}..."
|
||||
zcat $CWD/patches-${VERSION}/*.gz | patch -p1 --verbose --backup --suffix=.orig || exit 1
|
||||
cp -a $CWD/patches-${VERSION}/*.gz .
|
||||
fi
|
||||
echo "Copying $CWD/kernel-configs/${KERNEL_CONFIG} to .config..."
|
||||
cp -a $CWD/kernel-configs/${KERNEL_CONFIG} .config
|
||||
echo "Fixing permissions/ownership..."
|
||||
chown -R root:root .
|
||||
find . \
|
||||
\( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \
|
||||
-exec chmod 755 {} \+ -o \
|
||||
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
|
||||
-exec chmod 644 {} \+
|
||||
) || exit 1
|
||||
|
||||
# Kernel is now ready to configure. We will also build this kernel so that
|
||||
# the installed kernel source package is fully configured, and building an
|
||||
# out-of-tree module (such as the NVIDIA driver) won't require the user
|
||||
# to build the kernel sources first.
|
||||
( cd $PKG/usr/src/linux-${VERSION}
|
||||
echo "Making oldconfig..."
|
||||
make oldconfig
|
||||
if [ ! -r $CWD/kernel-configs/config-generic${LOCALVERSION}-${VERSION}${LOCALVERSION}${CONFIG_SUFFIX} ]; then
|
||||
echo "Saving new .config as: $CWD/kernel-configs/config-generic${LOCALVERSION}-${VERSION}${LOCALVERSION}${CONFIG_SUFFIX}"
|
||||
cp -a .config $CWD/kernel-configs/config-generic${LOCALVERSION}-${VERSION}${LOCALVERSION}${CONFIG_SUFFIX}
|
||||
fi
|
||||
|
||||
# If CONFIG_PREEMPT=y and CONFIG_PREEMPT_DYNAMIC=y, then set a default preempt
|
||||
# mode (none, voluntary, or full):
|
||||
if grep -wq CONFIG_PREEMPT=y .config ; then
|
||||
if grep -wq CONFIG_PREEMPT_DYNAMIC=y .config ; then
|
||||
# Sanity check:
|
||||
if ! echo $CONFIG_PREEMPT_DEFAULT_MODE | grep -wq -e none -e voluntary -e full ; then
|
||||
echo "ERROR: Invalid mode for CONFIG_PREEMPT_DEFAULT_MODE: $CONFIG_PREEMPT_DEFAULT_MODE"
|
||||
exit 1
|
||||
fi
|
||||
echo "Setting default PREEMPT mode: $CONFIG_PREEMPT_DEFAULT_MODE"
|
||||
sed -i "s/^int preempt_dynamic_mode = preempt_dynamic_full;$/int preempt_dynamic_mode = preempt_dynamic_$CONFIG_PREEMPT_DEFAULT_MODE;/g" kernel/sched/core.c
|
||||
fi
|
||||
fi
|
||||
|
||||
echo "Building kernel and modules (needed before clean for building NVIDIA to work)..."
|
||||
make ${NUMJOBS} || exit 1
|
||||
make ${NUMJOBS} modules || exit 1
|
||||
echo "Cleaning up..."
|
||||
make clean
|
||||
# Make sure header files aren't missing...
|
||||
make prepare
|
||||
# Don't package the kernel in the sources:
|
||||
find . -name "*Image" -exec rm "{}" \+
|
||||
# No need for these:
|
||||
rm -f .config.old .version
|
||||
find . -name "*.cmd" -exec rm -f "{}" \+
|
||||
rm .*.d
|
||||
# Still some dotfiles laying around... probably fine though
|
||||
) || exit 1
|
||||
|
||||
cd $PKG/usr/src/linux-${VERSION}
|
||||
# Use the version number found in the Makefile in the package name. This is not
|
||||
# always the same as the version in the source tarball's filename. For example,
|
||||
# linux-4.14.tar.xz will have 4.14.0 as the version in the Makefile:
|
||||
PACKAGE_VERSION=$(grep "^VERSION = " Makefile | rev | cut -f 1 -d ' ' | rev).$(grep "^PATCHLEVEL = " Makefile | rev | cut -f 1 -d ' ' | rev).$(grep "^SUBLEVEL = " Makefile | rev | cut -f 1 -d ' ' | rev)$(grep "^EXTRAVERSION = " Makefile | rev | cut -f 1 -d ' ' | rev)
|
||||
|
||||
mkdir $PKG/install
|
||||
cat $CWD/slack-desc/slack-desc.kernel-source > $PKG/install/slack-desc
|
||||
|
||||
# Make the package:
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $TMP/kernel-source-$(echo ${PACKAGE_VERSION} | tr - _)$(echo ${LOCALVERSION} | tr - _)-noarch-$BUILD.txz
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
# 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:
|
|
@ -0,0 +1,19 @@
|
|||
# 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:
|
|
@ -0,0 +1,19 @@
|
|||
# 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 SMP Linux kernel)
|
||||
kernel-generic:
|
||||
kernel-generic: This is a Linux kernel with built-in support for most disk
|
||||
kernel-generic: controllers. To use filesystems, or to load support for a SCSI or
|
||||
kernel-generic: other controller, then you'll need to load one or more kernel
|
||||
kernel-generic: modules using an initial ramdisk, or initrd. For more information
|
||||
kernel-generic: about creating an initrd, see the README.initrd file in the /boot
|
||||
kernel-generic: directory.
|
||||
kernel-generic:
|
||||
kernel-generic: SMP is "Symmetric multiprocessing", or multiple CPU/core support.
|
||||
kernel-generic:
|
|
@ -0,0 +1,19 @@
|
|||
# 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-headers: kernel-headers (Linux kernel include files)
|
||||
kernel-headers:
|
||||
kernel-headers: These are the include files from the Linux kernel.
|
||||
kernel-headers:
|
||||
kernel-headers: You'll need these to compile most system software for Linux.
|
||||
kernel-headers:
|
||||
kernel-headers:
|
||||
kernel-headers:
|
||||
kernel-headers:
|
||||
kernel-headers:
|
||||
kernel-headers:
|
|
@ -0,0 +1,19 @@
|
|||
# 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:
|
|
@ -0,0 +1,19 @@
|
|||
# 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:
|
|
@ -0,0 +1,19 @@
|
|||
# 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 SMP Linux kernel)
|
||||
kernel-huge:
|
||||
kernel-huge: This is a Linux kernel with built-in support for most disk
|
||||
kernel-huge: controllers. 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 in 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: SMP is "Symmetric multiprocessing", or multiple CPU/core support.
|
||||
kernel-huge:
|
|
@ -0,0 +1,19 @@
|
|||
# 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------------------------------------------------------|
|
||||
%PACKAGE_NAME%: %PACKAGE_NAME% (Linux kernel modules)
|
||||
%PACKAGE_NAME%:
|
||||
%PACKAGE_NAME%: Kernel modules are pieces of code that can be loaded and unloaded into
|
||||
%PACKAGE_NAME%: the kernel upon demand. They extend the functionality of the kernel
|
||||
%PACKAGE_NAME%: without the need to reboot the system. These modules provide support
|
||||
%PACKAGE_NAME%: for hardware such as USB devices, RAID controllers, network
|
||||
%PACKAGE_NAME%: interfaces, and display devices, or add other additional capabilities
|
||||
%PACKAGE_NAME%: to the kernel.
|
||||
%PACKAGE_NAME%:
|
||||
%PACKAGE_NAME%:
|
||||
%PACKAGE_NAME%:
|
|
@ -0,0 +1,19 @@
|
|||
# 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-source: kernel-source (Linux kernel source)
|
||||
kernel-source:
|
||||
kernel-source: Source code for Linus Torvalds' Linux kernel.
|
||||
kernel-source:
|
||||
kernel-source: This is the complete and unmodified source code for the Linux kernel.
|
||||
kernel-source:
|
||||
kernel-source:
|
||||
kernel-source:
|
||||
kernel-source:
|
||||
kernel-source:
|
||||
kernel-source:
|
|
@ -0,0 +1,19 @@
|
|||
# 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-source: kernel-source (Linux kernel source)
|
||||
kernel-source:
|
||||
kernel-source: Source code for Linus Torvalds' Linux kernel.
|
||||
kernel-source:
|
||||
kernel-source: This is the complete and unmodified source code for the Linux kernel.
|
||||
kernel-source:
|
||||
kernel-source:
|
||||
kernel-source:
|
||||
kernel-source:
|
||||
kernel-source:
|
||||
kernel-source:
|
|
@ -0,0 +1,19 @@
|
|||
# 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------------------------------------------------------|
|
||||
%PACKAGE_NAME%: %PACKAGE_NAME% (a Linux kernel)
|
||||
%PACKAGE_NAME%:
|
||||
%PACKAGE_NAME%: This is a Linux kernel with built-in support for most disk
|
||||
%PACKAGE_NAME%: controllers. To use filesystems, or to load support for a SCSI or
|
||||
%PACKAGE_NAME%: other controller, then you'll need to load one or more kernel
|
||||
%PACKAGE_NAME%: modules using an initial ramdisk, or initrd. For more information
|
||||
%PACKAGE_NAME%: about creating an initrd, see the README.initrd file in the /boot
|
||||
%PACKAGE_NAME%: directory.
|
||||
%PACKAGE_NAME%:
|
||||
%PACKAGE_NAME%:
|
||||
%PACKAGE_NAME%:
|
Loading…
Add table
Reference in a new issue