Use correct cert (#35)

* Use correct cert

* Fix boot partition handling

* Cleanup rauc handling

* Make a reboot

* handling
This commit is contained in:
Pascal Vizeli
2018-06-24 23:41:04 +02:00
committed by GitHub
parent 42dc915436
commit 3e8499ecbf
20 changed files with 89 additions and 55 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/sh
# Handle boot hocks
if [ "${RAUC_SLOT_CLASS}" = "boot" ]; then
if [ "${1}" = "slot-post-install" ]; then
/usr/lib/rauc/post-install-boot
elif [ "${1}" = "slot-pre-install" ]; then
/usr/lib/rauc/pre-install-boot
fi
fi
exit 0