summaryrefslogtreecommitdiff
path: root/target/Config.in.runtime
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-12-30 22:45:29 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-12-30 22:45:29 +0100
commit220a96f9926788ed531717f78e44fdf1e7ab3b34 (patch)
tree406f65eea71fabd8cf66c2bd1108ec63f8c349ee /target/Config.in.runtime
parent38af8185ea05a1c5d1abb32a68a025e3b4afa4d6 (diff)
rework architecture / embedded systems concept
Make configuration of new targets cheap. Just add a new file in target/arch/sys-enabled/foo. See other files for syntax. While doing runtime tests with the new infrastructure I've updated a lot of other stuff: - gcc 4.5.2 - uClibc 0.9.32-rc1 (NPTL) - strongswan, php, miredo, parted, util-linux-ng, e2fsprogs I promise, this is the last big fat commit this year ;)
Diffstat (limited to 'target/Config.in.runtime')
-rw-r--r--target/Config.in.runtime56
1 files changed, 0 insertions, 56 deletions
diff --git a/target/Config.in.runtime b/target/Config.in.runtime
deleted file mode 100644
index b36880a3a..000000000
--- a/target/Config.in.runtime
+++ /dev/null
@@ -1,56 +0,0 @@
-# This file is part of the OpenADK project. OpenADK is copyrighted
-# material, please see the LICENCE file in the top-level directory.
-
-config ADK_RUNTIME_HOSTNAME
- string "hostname for the embedded system"
- default "localhost"
- help
- Set your target hostname.
-
-config ADK_RUNTIME_SSH_PUBKEY
- string "SSH public key (root user only)"
- default ""
- help
- Paste your generated SSH public key here and it will be embedded into
- the built image, so you can use it to login instantly.
-
-config ADK_RUNTIME_PASSWORD
- string "root password for the embedded system"
- default "linux123"
- help
- Predefine the root password enabled in the built image.
-
-config ADK_RUNTIME_TIMEZONE
- string "timezone for the embedded system"
- default "Europe/Berlin"
- help
- Predefine the timezone for the embedded system.
-
-config ADK_RUNTIME_KBD_LAYOUT
- string "keyboard layout for the embedded system"
- default ""
- depends on ADK_TARGET_WITH_INPUT
- help
- Predefine the keyboard layout for the embedded system.
-
-choice
-prompt "Console output on embedded system"
-default ADK_RUNTIME_CONSOLE_VGA if ADK_HARDWARE_IBM_X40
-default ADK_RUNTIME_CONSOLE_SERIAL
-
-config ADK_RUNTIME_CONSOLE_VGA
- bool "console output on VGA"
- help
- Start getty on VGA console. (tty1-tty6)
-
-config ADK_RUNTIME_CONSOLE_SERIAL
- bool "console output on serial"
- help
- Start getty on serial console. (ttyS0)
-
-config ADK_RUNTIME_CONSOLE_BOTH
- bool "console output on console and serial"
- help
- Start getty on VGA console and serial device.
-
-endchoice