summaryrefslogtreecommitdiff
path: root/target/generic
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2009-04-15 13:42:12 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2009-04-15 13:42:12 +0000
commit635346844ce79859769bc678a75a77f9744bbe32 (patch)
tree0989f36a2a175972bd1cdb11d739a92e972a7363 /target/generic
parent55b03d611578cd4f92534a27259b8a3b41d1e589 (diff)
target/generic: support for busybox >= 1.14.x speed=0 handling
Diffstat (limited to 'target/generic')
-rw-r--r--target/generic/Config.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/target/generic/Config.in b/target/generic/Config.in
index 522deacde..352093955 100644
--- a/target/generic/Config.in
+++ b/target/generic/Config.in
@@ -163,6 +163,8 @@ choice
help
Select a baudrate to use.
+config BR2_TARGET_GENERIC_GETTY_BAUDRATE_KEEP
+ bool "keep kernel default"
config BR2_TARGET_GENERIC_GETTY_BAUDRATE_9600
bool "9600"
config BR2_TARGET_GENERIC_GETTY_BAUDRATE_19200
@@ -177,6 +179,7 @@ endchoice
config BR2_TARGET_GENERIC_GETTY_BAUDRATE
string
+ default "0" if BR2_TARGET_GENERIC_GETTY_BAUDRATE_KEEP
default "9600" if BR2_TARGET_GENERIC_GETTY_BAUDRATE_9600
default "19200" if BR2_TARGET_GENERIC_GETTY_BAUDRATE_19200
default "38400" if BR2_TARGET_GENERIC_GETTY_BAUDRATE_38400