summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorPeter Korsgaard2011-05-12 17:15:36 +0200
committerPeter Korsgaard2011-05-12 17:21:06 +0200
commit7d9d09db673abbedc1cc865c213b742e0450268d (patch)
tree43d87d5cfbfbd30d95208f41215e0e26d3e315ef /target
parentqt: hide shared library option if BR2_PREFER_STATIC_LIB (diff)
downloadbuildroot-7d9d09db673abbedc1cc865c213b742e0450268d.tar.gz
buildroot-7d9d09db673abbedc1cc865c213b742e0450268d.tar.xz
buildroot-7d9d09db673abbedc1cc865c213b742e0450268d.zip
target/generic: only show getty port option if default skeleton is used
The special marker in etc/inittab might not be present with a custom skeleton. At the same time make the option always active, remove the hardcoded tty1/tty2 gettys and reword the option description slightly. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'target')
-rw-r--r--target/generic/Config.in9
-rw-r--r--target/generic/Makefile.in2
2 files changed, 4 insertions, 7 deletions
diff --git a/target/generic/Config.in b/target/generic/Config.in
index c624ba872..2d2ad4423 100644
--- a/target/generic/Config.in
+++ b/target/generic/Config.in
@@ -12,13 +12,10 @@ config BR2_TARGET_GENERIC_ISSUE
help
Select system banner (/etc/issue) to be displayed at login.
-menuconfig BR2_TARGET_GENERIC_GETTY
- bool "Generic serial port config"
-
-if BR2_TARGET_GENERIC_GETTY
+if BR2_ROOTFS_SKELETON_DEFAULT
config BR2_TARGET_GENERIC_GETTY_PORT
- string "Serial port to run a getty on"
+ string "Port to run a getty (login prompt) on"
default "ttyS0"
help
Specify a port to run a getty (login prompt) on.
@@ -52,6 +49,6 @@ config BR2_TARGET_GENERIC_GETTY_BAUDRATE
default "57600" if BR2_TARGET_GENERIC_GETTY_BAUDRATE_57600
default "115200" if BR2_TARGET_GENERIC_GETTY_BAUDRATE_115200
-endif # BR2_TARGET_GENERIC_GETTY
+endif # BR2_ROOTFS_SKELETON_DEFAULT
endmenu
diff --git a/target/generic/Makefile.in b/target/generic/Makefile.in
index ba6e4b060..ce07ecfd0 100644
--- a/target/generic/Makefile.in
+++ b/target/generic/Makefile.in
@@ -31,7 +31,7 @@ ifneq ($(TARGET_GENERIC_ISSUE),)
TARGETS += target-generic-issue
endif
-ifeq ($(BR2_TARGET_GENERIC_GETTY),y)
+ifeq ($(BR2_ROOTFS_SKELETON_DEFAULT),y)
ifeq ($(BR2_PACKAGE_SYSVINIT),y)
TARGETS += target-generic-getty-sysvinit
else