Files
operating-system/buildroot-external/misc/rauc-hook
Pascal Vizeli b3943870dc Fix rauc config
2018-06-25 21:11:18 +00:00

13 lines
266 B
Bash
Executable File

#!/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