diff --git a/meta-balena-common/recipes-support/hostapp-update-hooks/files/0-signed-update b/meta-balena-common/recipes-support/hostapp-update-hooks/files/01-signed-update similarity index 100% rename from meta-balena-common/recipes-support/hostapp-update-hooks/files/0-signed-update rename to meta-balena-common/recipes-support/hostapp-update-hooks/files/01-signed-update diff --git a/meta-balena-common/recipes-support/hostapp-update-hooks/files/1-bootfiles b/meta-balena-common/recipes-support/hostapp-update-hooks/files/02-bootfiles similarity index 100% rename from meta-balena-common/recipes-support/hostapp-update-hooks/files/1-bootfiles rename to meta-balena-common/recipes-support/hostapp-update-hooks/files/02-bootfiles diff --git a/meta-balena-common/recipes-support/hostapp-update-hooks/hostapp-update-hooks.bb b/meta-balena-common/recipes-support/hostapp-update-hooks/hostapp-update-hooks.bb index e4825e5de1..1333267490 100644 --- a/meta-balena-common/recipes-support/hostapp-update-hooks/hostapp-update-hooks.bb +++ b/meta-balena-common/recipes-support/hostapp-update-hooks/hostapp-update-hooks.bb @@ -8,7 +8,7 @@ S = "${WORKDIR}" inherit allarch HOSTAPP_HOOKS = " \ - 1-bootfiles \ + 02-bootfiles \ 60-data-breadcrumb \ 70-sshd_migrate_keys \ 75-supervisor-db/75-forward_supervisor-db \ @@ -19,7 +19,7 @@ HOSTAPP_HOOKS = " \ " SECUREBOOT_HOOKS = " \ - 0-signed-update \ + 01-signed-update \ 95-secureboot/1-fwd_commit_apply-dbx \ 95-secureboot/2-fwd_commit_update-policy \ " @@ -81,7 +81,7 @@ do_install() { ln -s -r ${D}${bindir}/hostapp-update-hooks-v2 ${D}${bindir}/hostapp-update-hooks sed -i -e 's:@BALENA_BOOT_FINGERPRINT@:${BALENA_BOOT_FINGERPRINT}:g;' \ - ${D}${sysconfdir}/hostapp-update-hooks.d/1-bootfiles + ${D}${sysconfdir}/hostapp-update-hooks.d/??-bootfiles sed -i -e 's:@BALENA_BOOTFILES_BLACKLIST@:${BALENA_BOOTFILES_BLACKLIST}:g;' \ - ${D}${sysconfdir}/hostapp-update-hooks.d/1-bootfiles + ${D}${sysconfdir}/hostapp-update-hooks.d/??-bootfiles }