diff options
author | Doug Zongker <dougz@google.com> | 2012-08-02 14:46:42 -0700 |
---|---|---|
committer | Doug Zongker <dougz@google.com> | 2012-08-02 15:03:41 -0700 |
commit | d513160b76a189899ba01f87a3987b4c6f428cae (patch) | |
tree | 7e81ac476192e4b63b22e1fa35441c3bb0810649 /core/tasks/factory_ramdisk.mk | |
parent | cdbf0292e435b46c764c19cba956b5f2e0d70751 (diff) | |
download | build-d513160b76a189899ba01f87a3987b4c6f428cae.zip build-d513160b76a189899ba01f87a3987b4c6f428cae.tar.gz build-d513160b76a189899ba01f87a3987b4c6f428cae.tar.bz2 |
add extra args to mkbootimg
Arrange to take $(BOARD_MKBOOTIMG_ARGS) and pass it to all invocations
of mkbootimg from within make, and to store it in the target_files so
it can be used by future invocations of img_from_target_files and
ota_from_target_files.
Bug: 6918260
Change-Id: I7130ac52e96bd51d4d8b80ca036635e1626f01f1
Diffstat (limited to 'core/tasks/factory_ramdisk.mk')
-rw-r--r-- | core/tasks/factory_ramdisk.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/tasks/factory_ramdisk.mk b/core/tasks/factory_ramdisk.mk index 576a159..05d89b0 100644 --- a/core/tasks/factory_ramdisk.mk +++ b/core/tasks/factory_ramdisk.mk @@ -83,7 +83,7 @@ endif $(INSTALLED_FACTORY_RAMDISK_TARGET) : $(MKBOOTIMG) $(TARGET_RAMDISK_KERNEL) $(INSTALLED_FACTORY_RAMDISK_FS) $(call pretty,"Target factory ram disk img format: $@") $(MKBOOTIMG) --kernel $(TARGET_RAMDISK_KERNEL) --ramdisk $(INSTALLED_FACTORY_RAMDISK_FS) \ - --base $(BOARD_KERNEL_BASE) $(RAMDISK_CMDLINE) --output $@ + --base $(BOARD_KERNEL_BASE) $(BOARD_MKBOOTIMG_ARGS) $(RAMDISK_CMDLINE) --output $@ endif |