<feed xmlns='http://www.w3.org/2005/Atom'>
<title>talos-petitboot/ui/test, branch master</title>
<subtitle>Blackbird™ petitboot sources</subtitle>
<id>https://git.raptorcs.com/git/talos-petitboot/atom?h=master</id>
<link rel='self' href='https://git.raptorcs.com/git/talos-petitboot/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-petitboot/'/>
<updated>2019-03-05T20:54:10+00:00</updated>
<entry>
<title>lib: Add AUTH_MSG_DECRYPT</title>
<updated>2019-03-05T20:54:10+00:00</updated>
<author>
<name>Samuel Mendoza-Jonas</name>
<email>sam@mendozajonas.com</email>
</author>
<published>2019-02-14T23:39:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-petitboot/commit/?id=5f8fa2c151b8f0e568dc4015b7d307250b354a04'/>
<id>urn:sha1:5f8fa2c151b8f0e568dc4015b7d307250b354a04</id>
<content type='text'>
Extend the auth_message struct to support the AUTH_MSG_DECRYPT
operation, allowing the existing authentications methods to be used for
passing a disk password from the UI to pb-discover.
In addition add DEVICE_TYPE_LUKS to identify encrypted disk devices.

Signed-off-by: Samuel Mendoza-Jonas &lt;sam@mendozajonas.com&gt;
</content>
</entry>
<entry>
<title>types: Remove detail and progress from struct status</title>
<updated>2016-12-20T04:04:18+00:00</updated>
<author>
<name>Jeremy Kerr</name>
<email>jk@ozlabs.org</email>
</author>
<published>2016-12-07T00:30:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-petitboot/commit/?id=211d7eb1de2d3a9cd97846deb9a85a934dae2981'/>
<id>urn:sha1:211d7eb1de2d3a9cd97846deb9a85a934dae2981</id>
<content type='text'>
Nothing used these, and the serialisation was buggy anyway.

Signed-off-by: Jeremy Kerr &lt;jk@ozlabs.org&gt;
Signed-off-by: Samuel Mendoza-Jonas &lt;sam@mendozajonas.com&gt;
</content>
</entry>
<entry>
<title>types: shorten boot_status definitions</title>
<updated>2016-12-20T04:04:07+00:00</updated>
<author>
<name>Jeremy Kerr</name>
<email>jk@ozlabs.org</email>
</author>
<published>2016-12-07T00:13:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-petitboot/commit/?id=4b06a4645e19830581505a675075773adc0857c2'/>
<id>urn:sha1:4b06a4645e19830581505a675075773adc0857c2</id>
<content type='text'>
struct boot_status is a bit misnamed; we report status on things that
aren't just the boot status (eg, discovery).

This change refactors struct boot_status into just struct status. We
give the type enum a name, and shorten the enum values to suit.

Signed-off-by: Jeremy Kerr &lt;jk@ozlabs.org&gt;
Signed-off-by: Samuel Mendoza-Jonas &lt;sam@mendozajonas.com&gt;
</content>
</entry>
<entry>
<title>Recognise storage devices on USB bus</title>
<updated>2015-08-31T04:58:14+00:00</updated>
<author>
<name>Samuel Mendoza-Jonas</name>
<email>sam.mj@au1.ibm.com</email>
</author>
<published>2015-08-21T05:18:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-petitboot/commit/?id=70907c3fc4b344d00ce900e6a536e9cc16a35216'/>
<id>urn:sha1:70907c3fc4b344d00ce900e6a536e9cc16a35216</id>
<content type='text'>
Users may want to prioritise USB-attached storage devices differently to
other devices. Detect if a device is USB-attached and add a new device
type to identify it.

Signed-off-by: Samuel Mendoza-Jonas &lt;sam.mj@au1.ibm.com&gt;
</content>
</entry>
<entry>
<title>autotools: Use non-recursive make</title>
<updated>2014-08-01T03:24:26+00:00</updated>
<author>
<name>Jeremy Kerr</name>
<email>jk@ozlabs.org</email>
</author>
<published>2014-07-28T08:20:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-petitboot/commit/?id=c43847fe14e6b32cc58b8e8168f78e72ef94316d'/>
<id>urn:sha1:c43847fe14e6b32cc58b8e8168f78e72ef94316d</id>
<content type='text'>
With the current testing infrastructure, we don't have a strictly
hierarchical set of dependencies. This causes problems with a recursive
make, and means we have to hack around some of the dependencies.

This change generates a single, top-level makefile from all of the
Makefile.am fragments. We still need the po/ directory as a separate
SUBDIR, but all others can be converted to non-recursive.

Signed-off-by: Jeremy Kerr &lt;jk@ozlabs.org&gt;
</content>
</entry>
<entry>
<title>discover: Add DEVICE_TYPE_ANY for matching any device</title>
<updated>2014-01-30T13:59:10+00:00</updated>
<author>
<name>Jeremy Kerr</name>
<email>jk@ozlabs.org</email>
</author>
<published>2014-01-30T08:32:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-petitboot/commit/?id=95a566908a5e02c51bd2af6b468df3fb9ad1bf75'/>
<id>urn:sha1:95a566908a5e02c51bd2af6b468df3fb9ad1bf75</id>
<content type='text'>
Currently, If we want disable all but a specific device type from
default boot, we need to add a negative priority for all other devices.

This change adds a DEVICE_TYPE_ANY definition, to allow a simpler way to
express "only boot a specific type" by default behaviour.

Signed-off-by: Jeremy Kerr &lt;jk@ozlabs.org&gt;
</content>
</entry>
<entry>
<title>Add system info messages</title>
<updated>2013-10-09T09:40:04+00:00</updated>
<author>
<name>Jeremy Kerr</name>
<email>jk@ozlabs.org</email>
</author>
<published>2013-10-09T04:02:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-petitboot/commit/?id=bc4114e2235163bd88456c25cc0a908d86151f93'/>
<id>urn:sha1:bc4114e2235163bd88456c25cc0a908d86151f93</id>
<content type='text'>
Add a little infrastructure for communicating information about the
system to the petitboot UIs. We just send some identifying info (type
and identifier), as well as the interfaces.

Signed-off-by: Jeremy Kerr &lt;jk@ozlabs.org&gt;
</content>
</entry>
<entry>
<title>discover: populate udev device types</title>
<updated>2013-09-18T03:44:41+00:00</updated>
<author>
<name>Jeremy Kerr</name>
<email>jk@ozlabs.org</email>
</author>
<published>2013-09-18T03:44:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-petitboot/commit/?id=bad9baa8794ed0c31b7f93b110815d98db7b2d7a'/>
<id>urn:sha1:bad9baa8794ed0c31b7f93b110815d98db7b2d7a</id>
<content type='text'>
Now that we have device types, populate from the udev info.

Signed-off-by: Jeremy Kerr &lt;jk@ozlabs.org&gt;
</content>
</entry>
<entry>
<title>Add initial dtb support</title>
<updated>2013-06-24T05:07:57+00:00</updated>
<author>
<name>Geoff Levand</name>
<email>geoff@infradead.org</email>
</author>
<published>2013-04-15T22:23:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-petitboot/commit/?id=c11bcba9a99e858e618f4d872a5be7d52dcaaa5a'/>
<id>urn:sha1:c11bcba9a99e858e618f4d872a5be7d52dcaaa5a</id>
<content type='text'>
Updates &amp; fixes by Jeremy Kerr &lt;jk@ozlabs.org&gt;.

Signed-off-by: Geoff Levand &lt;geoff@infradead.org&gt;
Signed-off-by: Jeremy Kerr &lt;jk@ozlabs.org&gt;
</content>
</entry>
<entry>
<title>ui/test: print default status of boot options</title>
<updated>2013-06-24T04:52:49+00:00</updated>
<author>
<name>Jeremy Kerr</name>
<email>jk@ozlabs.org</email>
</author>
<published>2013-05-21T07:23:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/talos-petitboot/commit/?id=0652811c2ed9bf891dea50bf6078bf9f89b86f70'/>
<id>urn:sha1:0652811c2ed9bf891dea50bf6078bf9f89b86f70</id>
<content type='text'>
Signed-off-by: Jeremy Kerr &lt;jk@ozlabs.org&gt;
</content>
</entry>
</feed>
