<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://dev1galaxy.org/extern.php?action=feed&amp;tid=1904&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / Bootloader Freedom]]></title>
		<link>http://dev1galaxy.org/viewtopic.php?id=1904</link>
		<description><![CDATA[The most recent posts in Bootloader Freedom.]]></description>
		<lastBuildDate>Mon, 26 Feb 2018 09:28:26 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Bootloader Freedom]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=7768#p7768</link>
			<description><![CDATA[<p>i use zsh, dont know if its posix compatible</p>]]></description>
			<author><![CDATA[dummy@example.com (alphalpha)]]></author>
			<pubDate>Mon, 26 Feb 2018 09:28:26 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=7768#p7768</guid>
		</item>
		<item>
			<title><![CDATA[Re: Bootloader Freedom]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=7757#p7757</link>
			<description><![CDATA[<p>No bash??&#160; What shell are you using? Did you make the scripts posix compliant?</p><p>Yes, splash is optional.</p>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Sun, 25 Feb 2018 13:49:56 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=7757#p7757</guid>
		</item>
		<item>
			<title><![CDATA[Re: Bootloader Freedom]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=7738#p7738</link>
			<description><![CDATA[<p>that is a good question <img src="http://dev1galaxy.org/img/smilies/wink.png" width="15" height="15" alt="wink" /></p><p>that is where i have all your good stuff<br />i had to modify it quite a bit since i dont have bash on my system<br />so i put it in a special place where it dont get confused with updates</p><p>where it says<br />$cp /usr/src/refracta-tools/lib/refractasnapshot/iso/isolinux/splash.png<br />$cp /usr/src/refracta-tools/lib/refractainstaller/syslinux/syslinux.cfg<br />one has to have his own syslinux.cfg <br />the splash is optional i think</p>]]></description>
			<author><![CDATA[dummy@example.com (alphalpha)]]></author>
			<pubDate>Sat, 24 Feb 2018 21:13:06 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=7738#p7738</guid>
		</item>
		<item>
			<title><![CDATA[Re: Bootloader Freedom]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=7734#p7734</link>
			<description><![CDATA[<p>I&#039;ve thought about adding extlinux support to refractainstaller, but I didn&#039;t think there was much interest. Nice to see that there is. I&#039;ve also thought about adding support for grub to refracta2usb. Maybe those things will actually happen some time.</p><p>So, uh, what is /usr/src/refracta-tools and where did that come from?</p>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Sat, 24 Feb 2018 19:03:13 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=7734#p7734</guid>
		</item>
		<item>
			<title><![CDATA[Bootloader Freedom]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=7727#p7727</link>
			<description><![CDATA[<p>~Put on the right pair of shoes before you take your first step~</p><p>Hey Guys<br />this is for people who prefer syslinux bootloader over grub<br />or for people who like options and having a choice <img src="http://dev1galaxy.org/img/smilies/wink.png" width="15" height="15" alt="wink" /></p><p>i really like the refractainstaller (and refractasnapshot)<br />it is like my new favorite toy, really really big thanks to fsmithred and the people involved</p><p>but i dont like the fact that it only supports grub bootloader so i fiddled a bit in the refractainstaller script and i came up with the following</p><div class="codebox"><pre class="vscroll"><code>########################
### SYSLINUX
########################

install_syslinux () {
	cp /boot/vmlinuz-3.16.0-4-amd64 /target/boot/vmlinuz-3.16.0-4-amd64
	cp -r /usr/lib/syslinux/modules/bios/*.c32 /target/boot/syslinux/
	cp /usr/src/refracta-tools/lib/refractasnapshot/iso/isolinux/splash.png /target/boot/syslinux/splash.png
	cp /usr/src/refracta-tools/lib/refractainstaller/syslinux/syslinux.cfg /target/boot/syslinux/syslinux.cfg
	extlinux -i /target/boot/syslinux
	dd bs=440 count=1 if=/usr/lib/syslinux/mbr/mbr.bin of=/dev/sda
}

while true ; do
echo &quot;Install Syslinux Bootloader now?\n\t Press ENTER for YES.\n\t Press N for no.&quot;
		read ans
		case $ans in
			[2Nn]*) break ;;
			*) install_syslinux; break ;;
		esac
	done

echo &quot;Done.&quot;
echo &quot;You may want to edit your syslinux.cfg&quot;
nano /target/boot/syslinux/syslinux.cfg
#done

# INSTALLATION FINISHED - BEGIN CONFIGURE USERNAME, HOSTNAME, PASSWORDS, SUDO</code></pre></div><p>obviously it requires extlinux to be installed<br />also you need your own syslinux.cfg and splash.png and of course /dev/sda needs to be substituted with your drive letter</p><p>i though i share this with you maybe someone finds this usefull</p><p>have a nice day everyone</p>]]></description>
			<author><![CDATA[dummy@example.com (alphalpha)]]></author>
			<pubDate>Sat, 24 Feb 2018 16:26:47 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=7727#p7727</guid>
		</item>
	</channel>
</rss>
