diff options
author | Alex Deymo <deymo@google.com> | 2016-02-29 17:23:36 -0800 |
---|---|---|
committer | Alex Deymo <deymo@google.com> | 2016-03-04 15:45:52 -0800 |
commit | e120b471acbe136e27e257fdf493590e1cc4ba73 (patch) | |
tree | 1bae9ee0fe490149a5c0651a07ad45ce0e6a3e75 /rootdir/Android.mk | |
parent | a996c2963a9c1fa9d2339e560c7d6dad2be4a2f8 (diff) |
Add /postinstall partition when using the A/B updater.
The new top level directory /postinstall is used by the A/B updater to
mount the new partition and run a post-install program before rebooting
into that new system.
init.rc was extended to label this new directory since the initrd has
no extended attributes.
Bug: 27177071
TEST=`ls -laZ /` shows the /postinstall directory on edison-eng
(cherry picked from commit bb968fb04db3ec5227e84571e1c6bfd265836085)
Change-Id: Iff993135c7ce3a1a0f6450892ef7382da408fd5e
Diffstat (limited to 'rootdir/Android.mk')
-rw-r--r-- | rootdir/Android.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/rootdir/Android.mk b/rootdir/Android.mk index d90f988cc..d53af2ffe 100644 --- a/rootdir/Android.mk +++ b/rootdir/Android.mk @@ -70,6 +70,11 @@ ifdef BOARD_ROOT_EXTRA_SYMLINKS ; mkdir -p $(dir $(TARGET_ROOT_OUT)/$(word 2,$(p))) \ ; ln -sf $(word 1,$(p)) $(TARGET_ROOT_OUT)/$(word 2,$(p))) endif +# The A/B updater uses a top-level /postinstall directory to mount the new +# system before reboot. +ifeq ($(AB_OTA_UPDATER),true) + LOCAL_POST_INSTALL_CMD += ; mkdir -p $(TARGET_ROOT_OUT)/postinstall +endif include $(BUILD_SYSTEM)/base_rules.mk |