aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLorenzo Colitti <lorenzo@google.com>2017-04-05 16:04:23 +0900
committerLorenzo Colitti <lorenzo@google.com>2017-04-05 16:14:17 +0900
commit10cdfd55b3f2fe1011375b95b46cfbcc7d85a979 (patch)
tree3d0bf293ce450de2b8b05ae025d5fae3fb63eff0
parentc784fc47e639ff04b6d0ac207fe8d11227bd358b (diff)
downloadplatform_external_iptables-10cdfd55b3f2fe1011375b95b46cfbcc7d85a979.tar.gz
platform_external_iptables-10cdfd55b3f2fe1011375b95b46cfbcc7d85a979.tar.bz2
platform_external_iptables-10cdfd55b3f2fe1011375b95b46cfbcc7d85a979.zip
Always build the iptables lock when building iptables.
We have a build target for it, but it is not built by default. We did not catch this in testing because: 1. Any device that mounts /system read-write (such as a device used for development) will not enounter this problem because iptables creates the file if it does not exist. 2. Running "mmm external/iptables" before flashing will build the lock. Bug: 36826873 Test: lock=$OUT/system/etc/xtables.lock && rm -f $lock && make -j64 iptables && ls -l $lock Test: deleting the lock and rebuilding/flashing causes the lock to exist on device Change-Id: I15a85c02e990f347031accdd29cc3e831ec631c2
-rw-r--r--iptables/Android.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/iptables/Android.mk b/iptables/Android.mk
index 52ecc21f..095b90dc 100644
--- a/iptables/Android.mk
+++ b/iptables/Android.mk
@@ -36,6 +36,8 @@ LOCAL_CFLAGS+=-D_LARGEFILE_SOURCE=1 -D_LARGE_FILES -D_FILE_OFFSET_BITS=64 -D_REE
LOCAL_CFLAGS+=-D__ANDROID__
LOCAL_CFLAGS += $(commonFlags)
+LOCAL_REQUIRED_MODULES := xtables.lock
+
LOCAL_SRC_FILES:= \
xtables-multi.c iptables-xml.c xshared.c \
iptables-save.c iptables-restore.c \
@@ -74,6 +76,8 @@ LOCAL_CFLAGS+=-D_LARGEFILE_SOURCE=1 -D_LARGE_FILES -D_FILE_OFFSET_BITS=64 -D_REE
LOCAL_CFLAGS+=-D__ANDROID__
LOCAL_CFLAGS += $(commonFlags)
+LOCAL_REQUIRED_MODULES := xtables.lock
+
LOCAL_SRC_FILES:= \
xtables-multi.c iptables-xml.c xshared.c \
ip6tables-save.c ip6tables-restore.c \