From 9611fd600bbc2e6458c3a7bad1ca651b34940cc6 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Fri, 20 Mar 2009 21:59:43 +0000 Subject: target/generic: add kconfig for serial getty config (port + baudrate) These are the settings people most often want to tweak for embedded boards, so add kconfig variables to make it easy to do. --- target/generic/Makefile.in | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'target/generic/Makefile.in') diff --git a/target/generic/Makefile.in b/target/generic/Makefile.in index 4ea0b6a6b..3541264c8 100644 --- a/target/generic/Makefile.in +++ b/target/generic/Makefile.in @@ -7,3 +7,15 @@ TARGET_SKELETON=target/generic/target_busybox_skeleton TARGET_DEVICE_TABLE=target/generic/mini_device_table.txt endif +TARGET_GENERIC_GETTY:=$(strip $(subst ",, $(BR2_TARGET_GENERIC_GETTY_PORT))) +#")) +TARGET_GENERIC_GETTY_BAUDRATE:=$(strip $(subst ",, $(BR2_TARGET_GENERIC_GETTY_BAUDRATE))) +#")) + +target-generic-getty: + $(SED) '/# GENERIC_SERIAL$$/s~^.*#~$(TARGET_GENERIC_GETTY)::respawn:/sbin/getty -L $(TARGET_GENERIC_GETTY) $(TARGET_GENERIC_GETTY_BAUDRATE) vt100 #~' \ + $(TARGET_DIR)/etc/inittab + +ifeq ($(BR2_TARGET_GENERIC_GETTY),y) +TARGETS += target-generic-getty +endif -- cgit v1.2.3