|
@@ -23,6 +23,14 @@ target-generic-getty-sysvinit:
|
|
|
$(SED) '/# GENERIC_SERIAL$$/s~^.*#~$(shell echo $(TARGET_GENERIC_GETTY) | tail -c+4)::respawn:/sbin/getty -L $(TARGET_GENERIC_GETTY) $(TARGET_GENERIC_GETTY_BAUDRATE) vt100 #~' \
|
|
|
$(TARGET_DIR)/etc/inittab
|
|
|
|
|
|
+# Find commented line, if any, and remove leading '#'s
|
|
|
+target-generic-do-remount-rw:
|
|
|
+ $(SED) '/^#.*# REMOUNT_ROOTFS_RW$$/s~^#\+~~' $(TARGET_DIR)/etc/inittab
|
|
|
+
|
|
|
+# Find uncommented line, if any, and add a leading '#'
|
|
|
+target-generic-dont-remount-rw:
|
|
|
+ $(SED) '/^[^#].*# REMOUNT_ROOTFS_RW$$/s~^~#~' $(TARGET_DIR)/etc/inittab
|
|
|
+
|
|
|
ifneq ($(TARGET_GENERIC_HOSTNAME),)
|
|
|
TARGETS += target-generic-hostname
|
|
|
endif
|
|
@@ -37,4 +45,9 @@ TARGETS += target-generic-getty-sysvinit
|
|
|
else
|
|
|
TARGETS += target-generic-getty-busybox
|
|
|
endif
|
|
|
+ifeq ($(BR2_TARGET_GENERIC_REMOUNT_ROOTFS_RW),y)
|
|
|
+TARGETS += target-generic-do-remount-rw
|
|
|
+else
|
|
|
+TARGETS += target-generic-dont-remount-rw
|
|
|
+endif
|
|
|
endif
|