2009-10-06 15:08:55 +02:00
|
|
|
TARGET_GENERIC_HOSTNAME:=$(call qstrip,$(BR2_TARGET_GENERIC_HOSTNAME))
|
|
|
|
TARGET_GENERIC_ISSUE:=$(call qstrip,$(BR2_TARGET_GENERIC_ISSUE))
|
2009-07-30 17:35:13 +02:00
|
|
|
TARGET_GENERIC_GETTY:=$(call qstrip,$(BR2_TARGET_GENERIC_GETTY_PORT))
|
|
|
|
TARGET_GENERIC_GETTY_BAUDRATE:=$(call qstrip,$(BR2_TARGET_GENERIC_GETTY_BAUDRATE))
|
2009-03-20 22:59:43 +01:00
|
|
|
|
2009-09-30 21:53:22 +02:00
|
|
|
target-generic-hostname:
|
|
|
|
mkdir -p $(TARGET_DIR)/etc
|
|
|
|
echo "$(TARGET_GENERIC_HOSTNAME)" > $(TARGET_DIR)/etc/hostname
|
2011-04-22 11:45:27 +02:00
|
|
|
$(SED) '$$a \127.0.1.1\t$(TARGET_GENERIC_HOSTNAME)' \
|
|
|
|
-e '/^127.0.1.1/d' $(TARGET_DIR)/etc/hosts
|
2009-09-30 21:53:22 +02:00
|
|
|
|
|
|
|
target-generic-issue:
|
|
|
|
mkdir -p $(TARGET_DIR)/etc
|
|
|
|
echo "$(TARGET_GENERIC_ISSUE)" > $(TARGET_DIR)/etc/issue
|
|
|
|
|
2010-12-12 22:53:52 +01:00
|
|
|
target-generic-getty-busybox:
|
2009-03-20 22:59:43 +01:00
|
|
|
$(SED) '/# GENERIC_SERIAL$$/s~^.*#~$(TARGET_GENERIC_GETTY)::respawn:/sbin/getty -L $(TARGET_GENERIC_GETTY) $(TARGET_GENERIC_GETTY_BAUDRATE) vt100 #~' \
|
|
|
|
$(TARGET_DIR)/etc/inittab
|
|
|
|
|
2010-12-12 22:53:52 +01:00
|
|
|
# In sysvinit inittab, the "id" must not be longer than 4 bytes, so we
|
|
|
|
# skip the "tty" part and keep only the remaining.
|
|
|
|
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
|
|
|
|
|
2009-10-06 15:08:55 +02:00
|
|
|
ifneq ($(TARGET_GENERIC_HOSTNAME),)
|
2009-09-30 21:53:22 +02:00
|
|
|
TARGETS += target-generic-hostname
|
|
|
|
endif
|
|
|
|
|
2009-10-06 15:08:55 +02:00
|
|
|
ifneq ($(TARGET_GENERIC_ISSUE),)
|
2009-09-30 21:53:22 +02:00
|
|
|
TARGETS += target-generic-issue
|
|
|
|
endif
|
|
|
|
|
2011-05-12 17:15:36 +02:00
|
|
|
ifeq ($(BR2_ROOTFS_SKELETON_DEFAULT),y)
|
2010-12-12 22:53:52 +01:00
|
|
|
ifeq ($(BR2_PACKAGE_SYSVINIT),y)
|
|
|
|
TARGETS += target-generic-getty-sysvinit
|
|
|
|
else
|
|
|
|
TARGETS += target-generic-getty-busybox
|
|
|
|
endif
|
2009-03-20 22:59:43 +01:00
|
|
|
endif
|