summaryrefslogtreecommitdiffstats
path: root/BoardConfig.mk
diff options
context:
space:
mode:
Diffstat (limited to 'BoardConfig.mk')
-rwxr-xr-xBoardConfig.mk7
1 files changed, 5 insertions, 2 deletions
diff --git a/BoardConfig.mk b/BoardConfig.mk
index 1c55930..2a1d3ad 100755
--- a/BoardConfig.mk
+++ b/BoardConfig.mk
@@ -45,5 +45,8 @@ BOARD_USES_GENERIC_AUDIO := true
USE_CAMERA_STUB := true
# Init
-# uncomment the following lines for sdcard init.rc
-#TARGET_PROVIDES_INIT := true
+# set BOARD_SDCARD_INIT to true if booting from sdcard
+BOARD_SDCARD_INIT := false
+ifeq ($(BOARD_SDCARD_INIT),true)
+TARGET_PROVIDES_INIT := true
+endif