remove updater from the user system image
updater (which is only needed in OTA packages) is getting included in /system/bin, where it just takes up (quite a bit of) space. Use the hack of including it only in eng builds so it's not there for user builds.
This commit is contained in:
parent
fbf3c10e45
commit
ad3db099d5
@ -7,10 +7,15 @@ updater_src_files := \
|
||||
updater.c
|
||||
|
||||
#
|
||||
# Build the device-side library
|
||||
# Build a statically-linked binary to include in OTA packages
|
||||
#
|
||||
include $(CLEAR_VARS)
|
||||
|
||||
# Build only in eng, so we don't end up with a copy of this in /system
|
||||
# on user builds. (TODO: find a better way to build device binaries
|
||||
# needed only for OTA packages.)
|
||||
LOCAL_MODULE_TAGS := eng
|
||||
|
||||
LOCAL_SRC_FILES := $(updater_src_files)
|
||||
|
||||
LOCAL_STATIC_LIBRARIES := libapplypatch libedify libmtdutils libminzip libz
|
||||
|
Loading…
Reference in New Issue
Block a user