<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vyos-live-build.git/scripts/build/binary_syslinux, branch master</title>
<subtitle> (mirror of https://github.com/vyos/vyos-live-build.git)
</subtitle>
<id>https://git.amelek.net/vyos/vyos-live-build.git/atom?h=master</id>
<link rel='self' href='https://git.amelek.net/vyos/vyos-live-build.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-live-build.git/'/>
<updated>2021-01-31T05:58:09+00:00</updated>
<entry>
<title>binary_syslinux: Do not modify grub theme.txt if grub/splash.png exists</title>
<updated>2021-01-31T05:58:09+00:00</updated>
<author>
<name>Ryan Finnie</name>
<email>ryan@finnie.org</email>
</author>
<published>2021-01-31T05:58:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-live-build.git/commit/?id=5c838744d6e43752dc6d99c6569f89463316d5e8'/>
<id>urn:sha1:5c838744d6e43752dc6d99c6569f89463316d5e8</id>
<content type='text'>
If grub/splash.png exists, assume the configuration editor intends
to have a grub-specific splash.png, and do not modify theme.txt.
But if syslinux has the only known splash.png, use it for both
syslinux and grub.

(This allows for a hybrid image where the grub side can have e.g. a
16:9 1920x1080 splash.png which gets grub is capable of automatically
scaling, while the syslinux side has a 640x480 splash.png which
effectively must be this fixed size.)
</content>
</entry>
<entry>
<title>Use SOURCE_DATE_EPOCH for 'now' in the boot splash image</title>
<updated>2021-01-15T09:22:29+00:00</updated>
<author>
<name>Roland Clobus</name>
<email>rclobus@rclobus.nl</email>
</author>
<published>2020-10-04T11:52:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-live-build.git/commit/?id=0202f17cadeb2b369de58748cf52a5063eaafe9c'/>
<id>urn:sha1:0202f17cadeb2b369de58748cf52a5063eaafe9c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>The sed -e ‘d’ commands with ‘#’ will not work, a slash is needed, fix for 7ffd2288d944840937f556bd56703ba381f4edcc (2015-01-15) and 578dbee516a370935e1b2e49205c524370e1f8d0 (2015-01-29)</title>
<updated>2020-10-08T19:21:33+00:00</updated>
<author>
<name>Roland Clobus</name>
<email>rclobus@rclobus.nl</email>
</author>
<published>2020-09-19T16:43:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-live-build.git/commit/?id=9536a37af08fa37c1db3cc1aa5149603215f7621'/>
<id>urn:sha1:9536a37af08fa37c1db3cc1aa5149603215f7621</id>
<content type='text'>
</content>
</entry>
<entry>
<title>s/Remove_package/Remove_packages/</title>
<updated>2020-05-05T18:55:28+00:00</updated>
<author>
<name>Lyndon Brown</name>
<email>jnqnfe@gmail.com</email>
</author>
<published>2020-05-05T15:45:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-live-build.git/commit/?id=18eefdd6f38631e15e56a2bd7a25bba50b05acfa'/>
<id>urn:sha1:18eefdd6f38631e15e56a2bd7a25bba50b05acfa</id>
<content type='text'>
it removes one or more, so should be plural for clarity

Gbp-Dch: Short
</content>
</entry>
<entry>
<title>s/Install_package/Install_packages/</title>
<updated>2020-05-05T18:55:28+00:00</updated>
<author>
<name>Lyndon Brown</name>
<email>jnqnfe@gmail.com</email>
</author>
<published>2020-05-05T15:42:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-live-build.git/commit/?id=919a464b64b4bda52a56b8732ea5ef7727649cf0'/>
<id>urn:sha1:919a464b64b4bda52a56b8732ea5ef7727649cf0</id>
<content type='text'>
it installs one or more, so should be plural for clarity

Gbp-Dch: Short
</content>
</entry>
<entry>
<title>config: improve BIOS/EFI bootloader selection handling</title>
<updated>2020-05-04T20:40:13+00:00</updated>
<author>
<name>Lyndon Brown</name>
<email>jnqnfe@gmail.com</email>
</author>
<published>2020-05-04T15:12:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-live-build.git/commit/?id=d7883ec32b2bb907fce17fb759c08c5cd9851fc3'/>
<id>urn:sha1:d7883ec32b2bb907fce17fb759c08c5cd9851fc3</id>
<content type='text'>
the design choice from when EFI support was introduced was to change
`--bootloader` to `--bootloaders`, with users specifying their selection
of BIOS and EFI bootloaders together. at this time there were not even any
decent validation checks being performed, and invalid combinations could
cause some chaos.

since then proper validation was put in place, including checking that
only a single instance of each of BIOS and EFI bootloaders exists in the
selection.

here we tweak things such that we stick with the same option, but we split
the selection up such that we store the BIOS and EFI selections separately
within the saved config file, and offer it up to scripts to help simplify
those scripts.

we must however retain support for splitting from the combined option,
both because we still use it in the combined option, and for backwards
compatibility with older saved configs.

Gbp-Dch: Short
</content>
</entry>
<entry>
<title>fully validate BIOS/EFI bootloader combinations</title>
<updated>2020-05-04T20:40:13+00:00</updated>
<author>
<name>Lyndon Brown</name>
<email>jnqnfe@gmail.com</email>
</author>
<published>2020-05-04T13:28:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-live-build.git/commit/?id=3f840aeeba982a858a881271a3bb48bca5b50dd8'/>
<id>urn:sha1:3f840aeeba982a858a881271a3bb48bca5b50dd8</id>
<content type='text'>
thus far, config bootloader validation only did the basic check that each
bootloader specified was a known and supported bootloader, it did not check
combinations.

it now checks combinations, and strips out the previous "bootloader role"
stuff.

the no-bootloaders warning is duplicated, covering two slightly different
situations (empty string, and whitespace string). this is anticipated to
be just temporary, with this just being the first step in better handling
bootloader selections.

Gbp-Dch: Short
</content>
</entry>
<entry>
<title>syslinux: obey new UTC timestamp control</title>
<updated>2020-05-03T22:20:39+00:00</updated>
<author>
<name>Lyndon Brown</name>
<email>jnqnfe@gmail.com</email>
</author>
<published>2020-05-03T18:27:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-live-build.git/commit/?id=558942eccb9d90aa5ba0b9e0158504669efe907c'/>
<id>urn:sha1:558942eccb9d90aa5ba0b9e0158504669efe907c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>syslinux: support timezone date component</title>
<updated>2020-05-03T19:31:45+00:00</updated>
<author>
<name>Lyndon Brown</name>
<email>jnqnfe@gmail.com</email>
</author>
<published>2020-05-03T17:50:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-live-build.git/commit/?id=23f02ec7eeeac790c247ba084b8755c3b718ff01'/>
<id>urn:sha1:23f02ec7eeeac790c247ba084b8755c3b718ff01</id>
<content type='text'>
since date is not obtained as UTC, timezone is an important detail of
understanding the given time, which users may want to make use of.

Gbp-Dch: Short
</content>
</entry>
<entry>
<title>syslinux: fix date construction accuracy issue</title>
<updated>2020-05-03T19:31:43+00:00</updated>
<author>
<name>Lyndon Brown</name>
<email>jnqnfe@gmail.com</email>
</author>
<published>2020-05-03T17:35:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-live-build.git/commit/?id=dc64d8235d4b2706fa2bce6a6bd59d62e2fa9d88'/>
<id>urn:sha1:dc64d8235d4b2706fa2bce6a6bd59d62e2fa9d88</id>
<content type='text'>
don't construct each part from a fresh "now", which can result in
inaccuracies in the overall date due to "now" drifting over the individual
date calls. instead feed the full date that was obtained back into it when
extracting the component parts.

Gbp-Dch: Ignore
</content>
</entry>
</feed>
