I’m trying to do some work in the postinstall step of android OTA for my device and followed the instructions here
Added these lines to my device mk file.
AB_OTA_POSTINSTALL_CONFIG += \
RUN_POSTINSTALL_system=true \
POSTINSTALL_PATH_system=usr/bin/<my binary name> \
FILESYSTEM_TYPE_system=ext4
Now I see that the binary is correctly in place in system/bin but I don’t see this postinstall step executing during OTA. Do I need to do anything else in addition to this? The logs show run_postinstall=false
.