<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;tid=564&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / HOWTO: upgrade Devuan (stable) to the latest Linux kernel]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=564</link>
		<description><![CDATA[The most recent posts in HOWTO: upgrade Devuan (stable) to the latest Linux kernel.]]></description>
		<lastBuildDate>Thu, 02 Dec 2021 17:53:30 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: HOWTO: upgrade Devuan (stable) to the latest Linux kernel]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=33129#p33129</link>
			<description><![CDATA[<p>Notes from going thru this guide following the Chimeara stable upgrade.</p><p>1. I did a fresh install of Devuan Chimeara using the netinstall.iso install image, downloaded and burned to USB thrumb drive.&#160; This is a non-UEFI install and I installed the default Xfce4 desktop.&#160; That all went well. <br />2. I did an update and then full-upgrade to the installation<br />3. To upgrade to the latest Linux Kernel, 5.16-rc3 I followed the guide steps above, and needed to do two changes.<br />&#160; &#160; a. I copied the previous /boot/config-5.10.0-9-amd64&#160; to&#160; my ...src/linux/.config&#160; and changed the CONFIG_SYSTEM_TRUSTED_KEYS=&quot;debian/certs/debian-uefi-certs.pem&quot;&#160; to CONFIG_SYSTEM_TRUSTED_KEYS=&quot;&quot;&#160; &#160;else the&#160; &#160;make&#160; &#160; fails<br />&#160; &#160; b. I needed to install&#160; &#160; &#160; &#160;apt install dwarves&#160; &#160; &#160; &#160; &#160;as a prerequisit tool to get the&#160; make&#160; to finish successfully.&#160; make&#160; failed with&#160; &#039;pahole not installed...&#039; <br />4. after a successfull&#160; &#160;make ,&#160; make modules_prepare,&#160; sudo make modules_install&#160; install&#160; &#160; &#160;then I rebooted.</p><p>Whoot, whoot!&#160; &#160;system booted into&#160; Linux kernel&#160; 5.16-rc3</p><p>bkm@optiplex:/boot$ uname -a<br />Linux optiplex 5.16.0-rc3+ #2 SMP PREEMPT Thu Dec 2 07:11:06 PST 2021 x86_64 GNU/Linux</p>]]></description>
			<author><![CDATA[dummy@example.com (batmore)]]></author>
			<pubDate>Thu, 02 Dec 2021 17:53:30 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=33129#p33129</guid>
		</item>
		<item>
			<title><![CDATA[Re: HOWTO: upgrade Devuan (stable) to the latest Linux kernel]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=31432#p31432</link>
			<description><![CDATA[<p>Also, now that I think about it... <br />You can select&#160; &#160; &#160;make localyesconfig&#160; &#160; &#160; &#160;or&#160; &#160; make localmodconfig&#160; &#160; &#160;options which will only compile or make available those options/modules that exist for your &#039;running&#039; machine state.&#160; <br />In other words you will create a .config that has only those modules that are currently running on your machine. <br />This make a great, small, compact kernel based on what is running currently...<br />But, beware!<br />This might not include certain firmware that is needed for your machine to run successfully. <br />Often the network card, or other hardware driver is not included, and after you compile/reboot.... your machine might complain or not start successully until you modify the .config to include that firmware or driver.</p>]]></description>
			<author><![CDATA[dummy@example.com (batmore)]]></author>
			<pubDate>Fri, 10 Sep 2021 03:36:42 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=31432#p31432</guid>
		</item>
		<item>
			<title><![CDATA[Re: HOWTO: upgrade Devuan (stable) to the latest Linux kernel]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=31431#p31431</link>
			<description><![CDATA[<p>When you use the MAKE script, it will accept a number of options...&#160; if you type&#160; &#160; make&#160; -?&#160; &#160; or&#160; &#160; make&#160; -help&#160; &#160;then you can use the TAB completion to list a number of different configurations for the&#160; &#160; make&#160; &#160; &#160;script. <br />e.g. <br />Configuration targets:<br />&#160; config&#160; &#160; &#160; - Update current config utilising a line-oriented program<br />&#160; nconfig&#160; &#160; &#160; &#160; &#160;- Update current config utilising a ncurses menu based program<br />&#160; menuconfig&#160; &#160; &#160; - Update current config utilising a menu based program<br />&#160; xconfig&#160; &#160; &#160;- Update current config utilising a QT based front-end<br />&#160; gconfig&#160; &#160; &#160;- Update current config utilising a GTK based front-end<br />&#160; oldconfig&#160; &#160;- Update current config utilising a provided .config as base<br />&#160; localmodconfig&#160; - Update current config disabling modules not loaded<br />&#160; localyesconfig&#160; - Update current config converting local mods to core<br />&#160; silentoldconfig - Same as oldconfig, but quietly, additionally update deps<br />&#160; defconfig&#160; &#160;- New config with default from ARCH supplied defconfig<br />&#160; savedefconfig&#160; &#160;- Save current config as ./defconfig (minimal config)<br />&#160; allnoconfig&#160; &#160; &#160;- New config where all options are answered with no<br />&#160; allyesconfig&#160; &#160; - New config where all options are accepted with yes<br />&#160; allmodconfig&#160; &#160; - New config selecting modules when possible<br />&#160; alldefconfig&#160; &#160; - New config with all symbols set to default<br />&#160; randconfig&#160; &#160; &#160; - New config with random answer to all options<br />&#160; listnewconfig&#160; &#160;- List new options<br />&#160; olddefconfig&#160; &#160; - Same as silentoldconfig but sets new symbols to their default value<br />&#160; kvmconfig&#160; &#160;- Enable additional options for guest kernel support<br />&#160; tinyconfig&#160; &#160; &#160; - Configure the tiniest possible kernel</p><p>Each of these options provide a differnt set of interfaces to select options for a user to explore. </p><p>I typically use&#160; &#160;make menuconfig&#160; &#160; <br />so that have an easily traversed menu based interface to select, or not, certain Kernel Modules or characteristics. </p><p>I select these with some thought and then compile the kernel. <br />Sometimes it works out great. <br />Other times it does not.&#160; In those cases I revert back to the previous kernel option and try again.....</p><p>In any case, I explore the differing options using the menuconfig, or the nconfig, or other&#160; HELP&#160; &gt; TAB options....&#160; </p><p>Or I create my own CUSTOM .config by selecting various options using&#160; &#039;make menuconfig&#039;&#160; and then editing the .config file with a text editor. </p><p>All of those options (146?)&#160; are available for you to explore.&#160; They are various ways to present the various kernel interfaces and/or options... or to limit them. </p><p>Part of the fun/beauty is exploring the kernel options given what your hardware/software supports when defining what to use for the kernel, and what to leave out.... that is what &#039;Tuning&#039; the kernel is all about. </p><p>To be safe, select the&#160; &#160; &#160;make menuconfig&#160; &#160; &#160;or the&#160; &#160; &#160;make nconfig&#160; &#160; &#160;options.... and then just exit out to format the .config for that&#160; next&#160; command =&#160; make</p>]]></description>
			<author><![CDATA[dummy@example.com (batmore)]]></author>
			<pubDate>Fri, 10 Sep 2021 03:26:21 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=31431#p31431</guid>
		</item>
		<item>
			<title><![CDATA[Re: HOWTO: upgrade Devuan (stable) to the latest Linux kernel]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=30502#p30502</link>
			<description><![CDATA[<p>Hi<br />I try to compile my own (hopefully slimmer) kernel now, but I miss the point . At<br />make menuconfig / oldconfig / localoldconfig / xconfig. 146 options are shown from tab completion, but these are not. <br />which packages provide these make targets ?<br />I need to reduce kernel size and weed unneeded out.</p>]]></description>
			<author><![CDATA[dummy@example.com (bai4Iej2need)]]></author>
			<pubDate>Sun, 04 Jul 2021 12:21:30 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=30502#p30502</guid>
		</item>
		<item>
			<title><![CDATA[Re: HOWTO: upgrade Devuan (stable) to the latest Linux kernel]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=29196#p29196</link>
			<description><![CDATA[<p>All,</p><p>I ran thru this install/config steps by installing Devuan 4.0 Chimera Alpha Desktop as the base and then installing/compiling the v5.12-rc7 linux kernel.<br />it worked well, yielding the below changes... please note.</p><p>&gt; That&#039;s right, you need to install both flex and bison. But..., what&#039;s the problem installing flex?<br />Aitor is right, need to install FLEX to make this work.&#160; What issue/error did you see when installing flex?&#160; Or any of the other essentials software?</p><p>Also, the essential install list needs to include&#160; &#039;bc&#039; </p><p>so updated full list of needed essential installs is - <br />&#160; &#160;sudo apt-get install&#160; libncurses5-dev build-essential&#160; libssl-dev libelf-dev git&#160; bison flex bc</p><p>Just so everyone is aware, the size of the linux branch is ~8 GiB</p><p>If you can&#039;t install or get the menuconfig to work then the nconfig works just fine and yields the same result.</p><p>And, after you get this working, then do try the &quot;debhelper&quot; deb-pkg that Untimely suggested. It&#039;s very good that it will generate a .deb (and associated) files that you can transport/copy&#160; to another Devuan install, and just install the .deb package to update everything. </p><p>Also, yes, I&#039;ll come back on occasion when major Devuan builds change or major Linux kernel changes to run thru this with latest builds to validate it still works, or if not post updates. </p><p>cheers all.</p>]]></description>
			<author><![CDATA[dummy@example.com (batmore)]]></author>
			<pubDate>Sun, 18 Apr 2021 19:48:55 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=29196#p29196</guid>
		</item>
		<item>
			<title><![CDATA[Re: HOWTO: upgrade Devuan (stable) to the latest Linux kernel]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=29118#p29118</link>
			<description><![CDATA[<div class="quotebox"><cite>Sailor17 wrote:</cite><blockquote><div><p>Does anyone managed to compile a version 5.X Kernel in Devuan?</p></div></blockquote></div><p>Yes, compiled linux-libre-5.9.9 some time ago:</p><p><a href="http://packages.gnuinos.org/gnuinos/pool/main/l/linux/" rel="nofollow">http://packages.gnuinos.org/gnuinos/pool/main/l/linux/</a></p><div class="quotebox"><blockquote><div><p>Unfortunately I struggled in configuration using nconfig with error message:<br />/bin/sh: 1: flex: not found. See below.</p><p>root@devuan:/usr/src/linux-5.10.30# make nconfig<br />&#160; <br />&#160; UPD&#160; &#160; &#160;scripts/kconfig/nconf-cfg<br />&#160; HOSTCC&#160; scripts/kconfig/nconf.o<br />&#160; HOSTCC&#160; scripts/kconfig/nconf.gui.o<br />&#160; HOSTCC&#160; scripts/kconfig/confdata.o<br />&#160; HOSTCC&#160; scripts/kconfig/expr.o<br />&#160; LEX&#160; &#160; &#160;scripts/kconfig/lexer.lex.c<br />/bin/sh: 1: flex: not found<br />make[1]: *** [scripts/Makefile.host:9: scripts/kconfig/lexer.lex.c] Fehler 127<br />make: *** [Makefile:603: nconfig] Fehler 2<br />root@devuan:/usr/src/linux-5.10.30#</p><p>Any help is appreciated. <br />This is also an important step for me to learn compile Kernel and Programs, because I&#039;m not willing to use the monstrous systemd distributions and like to contribute in development with Devuan. My be we start to continue this documentation with Major Kernel Updates. <br />Best regards Hans</p></div></blockquote></div><p>That&#039;s right, you need to install both flex and bison. But..., what&#039;s the problem installing flex?</p>]]></description>
			<author><![CDATA[dummy@example.com (aitor)]]></author>
			<pubDate>Wed, 14 Apr 2021 19:49:50 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=29118#p29118</guid>
		</item>
		<item>
			<title><![CDATA[Re: HOWTO: upgrade Devuan (stable) to the latest Linux kernel]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=29114#p29114</link>
			<description><![CDATA[<p>Hi everyone</p><p>Does anyone managed to compile a version 5.X Kernel in Devuan?<br />I&#039;ve just installed Devuan Desktop in VirtualBox. But somewhere with an Kernel Update around 4.3.X and 4.8.X the Guest Addition Tools failed to run out of the box. Even with the suggested Kernel module compilation. It seams to be not a Devuan problem because of the same issue in Ubuntu. 18.X, 20.X, Debian 20.X, Raspberry Desktop.</p><p>So I would like to try a Kernel 5.10.30 and see if it works and to have a more recent Kernel version.. <br />I was following the instruction on the Debian page:<br />&quot;4.5. Building a custom kernel from Debian kernel source&quot; at <br /><a href="https://kernel-team.pages.debian.net/kernel-handbook/ch-common-tasks.html" rel="nofollow">https://kernel-team.pages.debian.net/ke … tasks.html</a></p><p>Which is almost identical with the above described process. Unfortunately I struggled in configuration using nconfig with error message:<br />/bin/sh: 1: flex: not found. See below.</p><p>root@devuan:/usr/src/linux-5.10.30# make nconfig<br />&#160; <br />&#160; UPD&#160; &#160; &#160;scripts/kconfig/nconf-cfg<br />&#160; HOSTCC&#160; scripts/kconfig/nconf.o<br />&#160; HOSTCC&#160; scripts/kconfig/nconf.gui.o<br />&#160; HOSTCC&#160; scripts/kconfig/confdata.o<br />&#160; HOSTCC&#160; scripts/kconfig/expr.o<br />&#160; LEX&#160; &#160; &#160;scripts/kconfig/lexer.lex.c<br />/bin/sh: 1: flex: not found<br />make[1]: *** [scripts/Makefile.host:9: scripts/kconfig/lexer.lex.c] Fehler 127<br />make: *** [Makefile:603: nconfig] Fehler 2<br />root@devuan:/usr/src/linux-5.10.30#</p><p>Any help is appreciated. <br />This is also an important step for me to learn compile Kernel and Programs, because I&#039;m not willing to use the monstrous systemd distributions and like to contribute in development with Devuan. My be we start to continue this documentation with Major Kernel Updates. <br />Best regards Hans</p>]]></description>
			<author><![CDATA[dummy@example.com (Sailor17)]]></author>
			<pubDate>Wed, 14 Apr 2021 18:54:25 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=29114#p29114</guid>
		</item>
		<item>
			<title><![CDATA[Re: HOWTO: upgrade Devuan (stable) to the latest Linux kernel]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=16186#p16186</link>
			<description><![CDATA[<p>Way back before Devuan existed I&#039;d build my own kernels. So much so, I created a script for it:</p><div class="codebox"><pre class="vscroll"><code>#! /bin/bash
#
# Small script for building a new 3.x kernel on Debian and derivatives
# Written by &lt;private&gt;
# Version: 1.0 @ May 6, 2014
# Requires minor editing for latest stable kernel version
# The make install and mkinitramfs steps requires root permissions.
# This script is released under the GPL: http://www.gnu.org/copyleft/gpl.html

# Preparing your system:

# First, we&#039;ll install the build environment with some extra&#039;s to aid configuration of the new kernel

apt-get install build-essential libncurses5-dev wget tar

# To keep things tidy a new directory for the kernel is created. Remove or comment out both lines if you don&#039;t want this.
# If you comment these line out or remove them, the kernel will be downloaded and installed in the current working directory.

mkdir ~/kernel
cd ~/kernel

# Getting the source and preparing it for use:

# edit these lines to represent the latest (longterm support) stable kernel from the kernel.org team

wget -q https://www.kernel.org/pub/linux/kernel/v3.x/linux-3.12.18.tar.xz
tar -xvf linux-3.12.18.tar.xz
cd linux-3.12.18

# Configuring the new kernel:

# Run manually if this part fails and accept all defaults, then comment out the next line with a # in front.
# Alternatively, use &quot;make oldconfig&quot; but this will ask a lot of questions you&#039;d need to answer individually.
# Provided you have installed the correct packages, you can also use the &quot;make xconfig&quot; tool if you&#039;re working
# in a graphical environment.

make menuconfig

# Building the kernel and putting everything in place to use:

# This is the part that does the actual work:

make &amp;&amp; make modules &amp;&amp; make modules_install &amp;&amp; make install &amp;&amp; mkinitramfs -o /boot/initrd.img-3.12.18 3.12.18

# The last portion of the above line should be edited if another kernel version is used!

# Now you need to update your bootloader to add the new kernel. Most Linux distributions now use Grub2 by default.
# If yours uses the old Grub or Lilo, comment out this line and configure/run manually.

update-grub

# After you&#039;ve done that, and checked thoroughly twice, it&#039;s time to reboot into your new kernel.

exit 0</code></pre></div><p>As you&#039;ve noticed, this is aimed at the 3.x series kernel, I guess with minor editing this script can also be used for new 4.x and perhaps even the upcoming 5.x series kernel. Unless the tool-chain or its syntax has significantly changed since, I haven&#039;t had to build a kernel in several years, due to using a (cutting-edge) source-based distro. (<a href="https://www.funtoo.org" rel="nofollow">Funtoo</a>, in my case) This script was also intended as a teaching tool for those wishing to compile their own kernels but hadn&#039;t tried yet, hence the copious amounts of comments. <img src="https://dev1galaxy.org/img/smilies/wink.png" width="15" height="15" alt="wink" /></p><p>HTH!</p><p>[edit: I&#039;ve also found an earlier, undated version of this script, dealing with a 2.6.38 kernel (that&#039;s telling! <img src="https://dev1galaxy.org/img/smilies/wink.png" width="15" height="15" alt="wink" /> ) last modified Spring 2011... <img src="https://dev1galaxy.org/img/smilies/tongue.png" width="15" height="15" alt="tongue" />&#160; [/edit]</p>]]></description>
			<author><![CDATA[dummy@example.com (Dutch_Master)]]></author>
			<pubDate>Mon, 20 May 2019 20:56:35 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=16186#p16186</guid>
		</item>
		<item>
			<title><![CDATA[Re: HOWTO: upgrade Devuan (stable) to the latest Linux kernel]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=11426#p11426</link>
			<description><![CDATA[<div class="quotebox"><cite>mikel wrote:</cite><blockquote><div><p>Sorry but with the next line:<br />cp /boot/conf*&#160; ~/src/linux/.config</p><p>I have the error: &quot;.config is not a directory&quot; and I must step this. After I finish all the others steps all is OK but the ~/src directory is empty. It&#039;s ok?</p></div></blockquote></div><p>That error means you have more than one config* file in /boot, so the shell doesn&#039;t know which to use. You&#039;ll want to use something like:</p><p>cp /boot/config-4.9.0-7-amd64 ~/src/linux/.config</p><p>That version is the correct one for my ascii installations. You need the version that matches your current kernel, which you can see by typing:</p><p>uname -a</p>]]></description>
			<author><![CDATA[dummy@example.com (duane)]]></author>
			<pubDate>Sun, 19 Aug 2018 00:48:15 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=11426#p11426</guid>
		</item>
		<item>
			<title><![CDATA[Re: HOWTO: upgrade Devuan (stable) to the latest Linux kernel]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=11416#p11416</link>
			<description><![CDATA[<p>Sorry but with the next line:<br />cp /boot/conf*&#160; ~/src/linux/.config</p><p>I have the error: &quot;.config is not a directory&quot; and I must step this. After I finish all the others steps all is OK but the ~/src directory is empty. It&#039;s ok?</p><p>Thanks in advance,<br />Mikel</p>]]></description>
			<author><![CDATA[dummy@example.com (mikel)]]></author>
			<pubDate>Sat, 18 Aug 2018 15:32:01 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=11416#p11416</guid>
		</item>
		<item>
			<title><![CDATA[Re: HOWTO: upgrade Devuan (stable) to the latest Linux kernel]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=11156#p11156</link>
			<description><![CDATA[<p>If you&#039;re refering to the production Devuan kernel, and how it&#039;s built, etc.. then I recommend going to&#160; relay chat&#160; <a href="https://webchat.freenode.net/" rel="nofollow">https://webchat.freenode.net/</a>&#160; &#160; #Devuan&#160; &#160; and ask the question there... maybe from FSmithRed.</p>]]></description>
			<author><![CDATA[dummy@example.com (batmore)]]></author>
			<pubDate>Tue, 07 Aug 2018 19:07:51 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=11156#p11156</guid>
		</item>
		<item>
			<title><![CDATA[Re: HOWTO: upgrade Devuan (stable) to the latest Linux kernel]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=11139#p11139</link>
			<description><![CDATA[<p>Hi everyone! May be not the right thread, but does anybody know where is the info regarding Devuan kernel rebuilding how-to? Can&#039;t find anywhere.</p>]]></description>
			<author><![CDATA[dummy@example.com (groog.17)]]></author>
			<pubDate>Sun, 05 Aug 2018 14:14:49 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=11139#p11139</guid>
		</item>
		<item>
			<title><![CDATA[Re: HOWTO: upgrade Devuan (stable) to the latest Linux kernel]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=9702#p9702</link>
			<description><![CDATA[<p>You are so right... I missed that library.&#160; I&#039;m glad you mentioned it, and I&#039;ve updated the list of prerequisites.&#160; I&#039;ve not tried the &quot;debhelper&quot; deb-pkg route yet, so I&#039;m off to give that a shot to see what it gains.&#160; </p><p>great catch.</p>]]></description>
			<author><![CDATA[dummy@example.com (batmore)]]></author>
			<pubDate>Sun, 03 Jun 2018 04:23:53 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=9702#p9702</guid>
		</item>
		<item>
			<title><![CDATA[Re: HOWTO: upgrade Devuan (stable) to the latest Linux kernel]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=9687#p9687</link>
			<description><![CDATA[<p>This is a very useful tutorial and I have a couple of updates/suggestions. Since kernel version 4.14 (I believe) the package &quot;libelf-dev&quot; is also required to compile. And with the package &quot;debhelper&quot; installed you can instead use</p><div class="codebox"><pre><code>make -j 6 deb-pkg</code></pre></div><p>to create a set of .deb packages to install, rather than using the make install steps. This makes it easier to copy your newly built kernel to other computers, or to uninstall it.</p>]]></description>
			<author><![CDATA[dummy@example.com (untimly)]]></author>
			<pubDate>Sat, 02 Jun 2018 18:41:44 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=9687#p9687</guid>
		</item>
		<item>
			<title><![CDATA[Re: HOWTO: upgrade Devuan (stable) to the latest Linux kernel]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=8052#p8052</link>
			<description><![CDATA[<p>I&#039;ve updated the list of resources/prerequisits to install for make:&#160; removed&#160; module-init-tools, and added&#160; &#160;bison and flex</p>]]></description>
			<author><![CDATA[dummy@example.com (batmore)]]></author>
			<pubDate>Tue, 20 Mar 2018 20:21:48 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=8052#p8052</guid>
		</item>
	</channel>
</rss>
