<?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=4523&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / [SOLVED] Updating kexec-tools from chimaera to daedalus]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=4523</link>
		<description><![CDATA[The most recent posts in [SOLVED] Updating kexec-tools from chimaera to daedalus.]]></description>
		<lastBuildDate>Wed, 01 Jan 2025 06:55:57 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: [SOLVED] Updating kexec-tools from chimaera to daedalus]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=53804#p53804</link>
			<description><![CDATA[<p>From what I could find on lore.kernel.org and past discussion on irc with AMD developers, the in-built GPU in APU&#039;s and newer amdgpu-using discrete GPU&#039;s have issues getting into the correct state from a kexec restart.</p>]]></description>
			<author><![CDATA[dummy@example.com (mirrortokyo)]]></author>
			<pubDate>Wed, 01 Jan 2025 06:55:57 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=53804#p53804</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Updating kexec-tools from chimaera to daedalus]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=53800#p53800</link>
			<description><![CDATA[<p>PS, on my old machine (Pentium 4 with Radeon CEDAR discrete GPU), I was able to successfully kexec via:</p><p><span class="bbc">kexec-load-kernel</span></p><p>then edited <span class="bbc">/etc/init.d/reboot</span> to add the <span class="bbc">-k</span> option to the <span class="bbc">reboot</span> command line:</p><p><span class="bbc">reboot -d -f -k ${netdown}</span></p><p>and just selected reboot from the lxdm desktop login screen.</p>]]></description>
			<author><![CDATA[dummy@example.com (mirrortokyo)]]></author>
			<pubDate>Wed, 01 Jan 2025 02:20:34 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=53800#p53800</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Updating kexec-tools from chimaera to daedalus]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=53797#p53797</link>
			<description><![CDATA[<p>Tried to get kexec to work again, maybe not possible on this hardware &quot;AMD A10-6800K APU with Radeon(tm) HD Graphics&quot;.</p><p>In single user mode, I used the <span class="bbc">kexec-load-kernel</span> script from kexec-tools 1:2.0.29-2. That appears to work.</p><p>In the <span class="bbc">/etc/init.d/reboot</span> script I&#039;ve tried both <span class="bbc">kexec -e</span> just before the <span class="bbc">reboot -d -f ${netdown}</span> line and also:</p><p><span class="bbc">reboot -d -f -k ${netdown}</span> </p><p>which is supposed to attempt a kexec load.</p><p>Still getting a hardware reboot.</p><p>Is anyone successfully using kexec on x86_64 architecture?</p>]]></description>
			<author><![CDATA[dummy@example.com (mirrortokyo)]]></author>
			<pubDate>Wed, 01 Jan 2025 00:56:13 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=53797#p53797</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Updating kexec-tools from chimaera to daedalus]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=37568#p37568</link>
			<description><![CDATA[<p>I&#039;m still stuck with kexec-tools 1:2.0.20-2.1 - Debian upstream doesn&#039;t appear to have addressed this problem.</p>]]></description>
			<author><![CDATA[dummy@example.com (mirrortokyo)]]></author>
			<pubDate>Wed, 14 Sep 2022 15:59:16 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=37568#p37568</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] Updating kexec-tools from chimaera to daedalus]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=32308#p32308</link>
			<description><![CDATA[<p>The postinst script indeed tries to invoke the restart action, which does not exist for kexec.</p><p>Removing the following section from the postinst script seems to fix the problem.</p><p># Automatically added by dh_installinit/13.4.1<br />if [ &quot;$1&quot; = &quot;configure&quot; ] || [ &quot;$1&quot; = &quot;abort-upgrade&quot; ] || [ &quot;$1&quot; = &quot;abort-deconfigure&quot; ] || [ &quot;$1&quot; = &quot;abort-remove&quot; ] ; then<br />&#160; &#160; if [ -z &quot;${DPKG_ROOT:-}&quot; ] &amp;&amp; [ -x &quot;/etc/init.d/kexec&quot; ]; then<br />&#160; &#160; &#160; &#160; update-rc.d kexec defaults &gt;/dev/null<br />&#160; &#160; &#160; &#160; invoke-rc.d kexec restart || exit 1<br />&#160; &#160; fi<br />fi<br /># End automatically added section<br /># Automatically added by dh_installinit/13.4.1<br />if [ &quot;$1&quot; = &quot;configure&quot; ] || [ &quot;$1&quot; = &quot;abort-upgrade&quot; ] || [ &quot;$1&quot; = &quot;abort-deconfigure&quot; ] || [ &quot;$1&quot; = &quot;abort-remove&quot; ] ; then<br />&#160; &#160; if [ -z &quot;${DPKG_ROOT:-}&quot; ] &amp;&amp; [ -x &quot;/etc/init.d/kexec-load&quot; ]; then<br />&#160; &#160; &#160; &#160; update-rc.d kexec-load defaults &gt;/dev/null<br />&#160; &#160; &#160; &#160; invoke-rc.d kexec-load restart || exit 1<br />&#160; &#160; fi<br />fi<br /># End automatically added section</p>]]></description>
			<author><![CDATA[dummy@example.com (hagbard_)]]></author>
			<pubDate>Thu, 21 Oct 2021 20:51:17 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=32308#p32308</guid>
		</item>
		<item>
			<title><![CDATA[[SOLVED] Updating kexec-tools from chimaera to daedalus]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=31721#p31721</link>
			<description><![CDATA[<p>That&#039;s what I get when updating kexec-tools (output after dpkg --configure kexec-tools):</p><p>Setting up kexec-tools (1:2.0.22-2+b1) ...<br />Error: argument &#039;restart&#039; not supported<br />invoke-rc.d: initscript kexec, action &quot;restart&quot; failed.<br />dpkg: error processing package kexec-tools (--configure):<br /> installed kexec-tools package post-installation script subprocess returned error exit status 1<br />Errors were encountered while processing:<br /> kexec-tools</p><p>I this devuan specific, since it relates to init? Or should a bug be posted to debian (didn&#039;t find any relating to this so far)? Or is a devuan fork necessary? </p><p>&quot;restart&quot; seems to be weird for something that isn&#039;t a daemon.</p>]]></description>
			<author><![CDATA[dummy@example.com (hagbard_)]]></author>
			<pubDate>Fri, 24 Sep 2021 19:31:18 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=31721#p31721</guid>
		</item>
	</channel>
</rss>
