Skip to content

Commit

Permalink
Sun Jul 3 03:23:52 UTC 2022
Browse files Browse the repository at this point in the history
a/kernel-generic-5.18.9-x86_64-1.txz:  Upgraded.
a/kernel-huge-5.18.9-x86_64-1.txz:  Upgraded.
a/kernel-modules-5.18.9-x86_64-1.txz:  Upgraded.
d/kernel-headers-5.18.9-x86-1.txz:  Upgraded.
k/kernel-source-5.18.9-noarch-1.txz:  Upgraded.
isolinux/initrd.img:  Rebuilt.
kernels/*:  Upgraded.
usb-and-pxe-installers/usbboot.img:  Rebuilt.
  • Loading branch information
Patrick J Volkerding authored and alienbob committed Jul 3, 2022
1 parent 39b1756 commit e37e650
Show file tree
Hide file tree
Showing 16 changed files with 118 additions and 90 deletions.
22 changes: 20 additions & 2 deletions ChangeLog.rss
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,27 @@
<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>Fri, 1 Jul 2022 01:23:50 GMT</pubDate>
<lastBuildDate>Fri, 1 Jul 2022 05:00:11 GMT</lastBuildDate>
<pubDate>Sun, 3 Jul 2022 03:23:52 GMT</pubDate>
<lastBuildDate>Sun, 3 Jul 2022 05:00:11 GMT</lastBuildDate>
<generator>maintain_current_git.sh v 1.17</generator>
<item>
<title>Sun, 3 Jul 2022 03:23:52 GMT</title>
<pubDate>Sun, 3 Jul 2022 03:23:52 GMT</pubDate>
<link>https://git.slackware.nl/current/tag/?h=20220703032352</link>
<guid isPermaLink="false">20220703032352</guid>
<description>
<![CDATA[<pre>
a/kernel-generic-5.18.9-x86_64-1.txz: Upgraded.
a/kernel-huge-5.18.9-x86_64-1.txz: Upgraded.
a/kernel-modules-5.18.9-x86_64-1.txz: Upgraded.
d/kernel-headers-5.18.9-x86-1.txz: Upgraded.
k/kernel-source-5.18.9-noarch-1.txz: Upgraded.
isolinux/initrd.img: Rebuilt.
kernels/*: Upgraded.
usb-and-pxe-installers/usbboot.img: Rebuilt.
</pre>]]>
</description>
</item>
<item>
<title>Fri, 1 Jul 2022 01:23:50 GMT</title>
<pubDate>Fri, 1 Jul 2022 01:23:50 GMT</pubDate>
Expand Down
10 changes: 10 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Sun Jul 3 03:23:52 UTC 2022
a/kernel-generic-5.18.9-x86_64-1.txz: Upgraded.
a/kernel-huge-5.18.9-x86_64-1.txz: Upgraded.
a/kernel-modules-5.18.9-x86_64-1.txz: Upgraded.
d/kernel-headers-5.18.9-x86-1.txz: Upgraded.
k/kernel-source-5.18.9-noarch-1.txz: Upgraded.
isolinux/initrd.img: Rebuilt.
kernels/*: Upgraded.
usb-and-pxe-installers/usbboot.img: Rebuilt.
+--------------------------+
Fri Jul 1 01:23:50 UTC 2022
a/kernel-generic-5.18.8-x86_64-1.txz: Upgraded.
a/kernel-huge-5.18.8-x86_64-1.txz: Upgraded.
Expand Down
130 changes: 65 additions & 65 deletions FILELIST.TXT

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions README.initrd
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Slackware initrd mini HOWTO
by Patrick Volkerding, [email protected]
Fri Jul 1 01:13:26 UTC 2022
Sun Jul 3 03:11:24 UTC 2022

This document describes how to create and install an initrd, which may be
required to use the 4.x kernel. Also see "man mkinitrd".
Expand Down Expand Up @@ -33,15 +33,15 @@ flexible to ship a generic kernel and a set of kernel modules for it.

The easiest way to make the initrd is to use the mkinitrd script included
in Slackware's mkinitrd package. We'll walk through the process of
upgrading to the generic 5.18.8 Linux kernel using the packages
upgrading to the generic 5.18.9 Linux kernel using the packages
found in Slackware's slackware/a/ directory.

First, make sure the kernel, kernel modules, and mkinitrd package are
installed (the current version numbers might be a little different, so
this is just an example):

installpkg kernel-generic-5.18.8-x86_64-1.txz
installpkg kernel-modules-5.18.8-x86_64-1.txz
installpkg kernel-generic-5.18.9-x86_64-1.txz
installpkg kernel-modules-5.18.9-x86_64-1.txz
installpkg mkinitrd-1.4.11-x86_64-29.txz

Change into the /boot directory:
Expand All @@ -52,7 +52,7 @@ Now you'll want to run "mkinitrd". I'm using ext4 for my root filesystem,
and since the disk controller requires no special support the ext4 module
will be the only one I need to load:

mkinitrd -c -k 5.18.8 -m ext4
mkinitrd -c -k 5.18.9 -m ext4

This should do two things. First, it will create a directory
/boot/initrd-tree containing the initrd's filesystem. Then it will
Expand All @@ -61,10 +61,10 @@ you could make some additional changes in /boot/initrd-tree/ and
then run mkinitrd again without options to rebuild the image. That's
optional, though, and only advanced users will need to think about that.

Here's another example: Build an initrd image using Linux 5.18.8
Here's another example: Build an initrd image using Linux 5.18.9
kernel modules for a system with an ext4 root partition on /dev/sdb3:

mkinitrd -c -k 5.18.8 -m ext4 -f ext4 -r /dev/sdb3
mkinitrd -c -k 5.18.9 -m ext4 -f ext4 -r /dev/sdb3


4. Now that I've built an initrd, how do I use it?
Expand Down
2 changes: 1 addition & 1 deletion isolinux/message.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

Welcome to 09Slackware6407 version 15.1 (Linux kernel 5.18.8)!
Welcome to 09Slackware6407 version 15.1 (Linux kernel 5.18.9)!

If you need to pass extra parameters to the kernel, enter them at the prompt
below after the name of the kernel to boot (e.g., huge.s).
Expand Down
2 changes: 1 addition & 1 deletion kernels/VERSIONS.TXT
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

These kernels are version 5.18.8.
These kernels are version 5.18.9.

6 changes: 3 additions & 3 deletions slackware64/a/maketag
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ system. :^) Press ENTER when you are done." 21 76 10 \
"jfsutils" "Utilities for IBM's Journaled Filesystem" "on" \
"kbd" "Change keyboard and console mappings" "on" \
"kernel-firmware" "Linux kernel firmware -- REQUIRED" "on" \
"kernel-generic" "Generic 5.18.8 kernel (needs an initrd)" "on" \
"kernel-huge" "Loaded 5.18.8 Linux kernel" "on" \
"kernel-modules" "Linux 5.18.8 kernel modules -- REQUIRED" "on" \
"kernel-generic" "Generic 5.18.9 kernel (needs an initrd)" "on" \
"kernel-huge" "Loaded 5.18.9 Linux kernel" "on" \
"kernel-modules" "Linux 5.18.9 kernel modules -- REQUIRED" "on" \
"kmod" "Kernel module utilities -- REQUIRED" "on" \
"lbzip2" "Parallel bzip2 compressor" "on" \
"less" "A text pager utility - REQUIRED" "on" \
Expand Down
6 changes: 3 additions & 3 deletions slackware64/a/maketag.ez
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ system. :^) Press ENTER when you are done." 21 76 10 \
"jfsutils" "Utilities for IBM's Journaled Filesystem" "on" \
"kbd" "Change keyboard and console mappings" "on" \
"kernel-firmware" "Linux kernel firmware -- REQUIRED" "on" \
"kernel-generic" "Generic 5.18.8 kernel (needs an initrd)" "on" \
"kernel-huge" "Loaded 5.18.8 Linux kernel" "on" \
"kernel-modules" "Linux 5.18.8 kernel modules -- REQUIRED" "on" \
"kernel-generic" "Generic 5.18.9 kernel (needs an initrd)" "on" \
"kernel-huge" "Loaded 5.18.9 Linux kernel" "on" \
"kernel-modules" "Linux 5.18.9 kernel modules -- REQUIRED" "on" \
"kmod" "Kernel module utilities -- REQUIRED" "on" \
"lbzip2" "Parallel bzip2 compressor" "on" \
"less" "A text pager utility - REQUIRED" "on" \
Expand Down
2 changes: 1 addition & 1 deletion slackware64/k/maketag
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ from series K. Use the UP/DOWN keys to scroll through the list, and \
the SPACE key to deselect any items you don't want to install. \
Press ENTER when you are \
done." 11 70 1 \
"kernel-source" "Linux 5.18.8 kernel source" "on" \
"kernel-source" "Linux 5.18.9 kernel source" "on" \
2> $TMP/SeTpkgs
if [ $? = 1 -o $? = 255 ]; then
rm -f $TMP/SeTpkgs
Expand Down
2 changes: 1 addition & 1 deletion slackware64/k/maketag.ez
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ from series K. Use the UP/DOWN keys to scroll through the list, and \
the SPACE key to deselect any items you don't want to install. \
Press ENTER when you are \
done." 11 70 1 \
"kernel-source" "Linux 5.18.8 kernel source" "on" \
"kernel-source" "Linux 5.18.9 kernel source" "on" \
2> $TMP/SeTpkgs
if [ $? = 1 -o $? = 255 ]; then
rm -f $TMP/SeTpkgs
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 5.18.8 Kernel Configuration
# Linux/x86 5.18.9 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 12.1.0"
CONFIG_CC_IS_GCC=y
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 5.18.8 Kernel Configuration
# Linux/x86 5.18.9 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 12.1.0"
CONFIG_CC_IS_GCC=y
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 5.18.8 Kernel Configuration
# Linux/x86 5.18.9 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 12.1.0"
CONFIG_CC_IS_GCC=y
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 5.18.8 Kernel Configuration
# Linux/x86 5.18.9 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 12.1.0"
CONFIG_CC_IS_GCC=y
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 5.18.8 Kernel Configuration
# Linux/x86 5.18.9 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 12.1.0"
CONFIG_CC_IS_GCC=y
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
# Linux/x86 5.18.8 Kernel Configuration
# Linux/x86 5.18.9 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 12.1.0"
CONFIG_CC_IS_GCC=y
Expand Down

0 comments on commit e37e650

Please sign in to comment.