summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-09-09 20:43:08 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2009-09-09 20:43:08 +0200
commit27cfb0e6df5661d2744b67138af69da477ee6c5a (patch)
tree1a9b2e14da52adadb7f634ae7894a2b2848c44c0 /package
parente9b52dbc4bb9e531c15fa442121288de98c0904f (diff)
add shuttle and tomtom device support
barely tested. TomTom support is for my tomtom rider 2 navigation system and is a new toolchain only target. I will add some special applications later. Shuttle is my ADK buildserver. At least I can boot via PXE and create software raid devices. Still need to figure out how to manage grub2 and how to integrate a disk installer or something like that.
Diffstat (limited to 'package')
-rw-r--r--package/base-files/Config.in4
-rw-r--r--package/busybox/Config.in4
-rw-r--r--package/cryptinit/Config.in2
-rw-r--r--package/dropbear/Config.in2
-rw-r--r--package/em28xx/Makefile4
-rw-r--r--package/uclibc/Config.in2
6 files changed, 8 insertions, 10 deletions
diff --git a/package/base-files/Config.in b/package/base-files/Config.in
index 8312e2ee2..f58cbd63c 100644
--- a/package/base-files/Config.in
+++ b/package/base-files/Config.in
@@ -1,14 +1,14 @@
config ADK_PACKAGE_BASE_FILES
prompt "base-files........................... basic filesystem layout"
bool
- default y
+ default y if !ADK_TOOLCHAIN_ONLY
help
Basic filesystem layout.
config ADK_PACKAGE_CONFIG_IN_ETC
prompt ".config in /etc...................... include gzipped version of .config in image"
bool
- default y
+ default y if !ADK_TOOLCHAIN_ONLY
help
Copy the configuration file (.config) to the image. The
file will be found in /etc/adkconfig.gz. This takes about
diff --git a/package/busybox/Config.in b/package/busybox/Config.in
index 15da6729a..cfe20190e 100644
--- a/package/busybox/Config.in
+++ b/package/busybox/Config.in
@@ -1,14 +1,12 @@
config ADK_PACKAGE_BUSYBOX
prompt "busybox.............................. The Swiss Army Knife"
bool
- default y
+ default y if !ADK_TOOLCHAIN_ONLY
help
The Swiss Army Knife of embedded Linux. It slices, it dices, it
makes Julian Fries.
-
http://busybox.net/
- Most people will answer Y.
menu "Busybox Configuration"
source "package/busybox/config/Config.in"
diff --git a/package/cryptinit/Config.in b/package/cryptinit/Config.in
index 664186378..f17ef17a0 100644
--- a/package/cryptinit/Config.in
+++ b/package/cryptinit/Config.in
@@ -1,5 +1,5 @@
config ADK_PACKAGE_CRYPTINIT
- prompt "cryptinit............................. crypt initramfs application"
+ prompt "cryptinit............................ crypt initramfs application"
tristate
default n
help
diff --git a/package/dropbear/Config.in b/package/dropbear/Config.in
index ea087b8bb..e12ca80f3 100644
--- a/package/dropbear/Config.in
+++ b/package/dropbear/Config.in
@@ -1,7 +1,7 @@
config ADK_PACKAGE_DROPBEAR
prompt "dropbear.......................... Small SSH 2 client/server"
tristate
- default y
+ default y if !ADK_TOOLCHAIN_ONLY
help
A small SSH 2 server/client designed for small memory environments.
diff --git a/package/em28xx/Makefile b/package/em28xx/Makefile
index ba0a2fa04..2a405660e 100644
--- a/package/em28xx/Makefile
+++ b/package/em28xx/Makefile
@@ -23,8 +23,8 @@ EM28XX_MAKEOPTS= -C ${WRKBUILD} \
ARCH="${ARCH}" \
CROSS_COMPILE="${TARGET_CROSS}" \
TARGET="${HAL_TARGET}" \
- TOOLPREFIX="${KERNEL_CROSS}" \
- TOOLPATH="${KERNEL_CROSS}" \
+ TOOLPREFIX="${TARGET_CROSS}" \
+ TOOLPATH="${TARGET_CROSS}" \
KERNELPATH="${LINUX_DIR}" \
V=1
diff --git a/package/uclibc/Config.in b/package/uclibc/Config.in
index 2df80c81d..a90c7c22b 100644
--- a/package/uclibc/Config.in
+++ b/package/uclibc/Config.in
@@ -1,7 +1,7 @@
config ADK_PACKAGE_UCLIBC
prompt "uClibc............................... embedded C library"
bool
- default y if ADK_TARGET_LIB_UCLIBC
+ default y if ADK_TARGET_LIB_UCLIBC && !ADK_TOOLCHAIN_ONLY
default n
depends on ADK_TARGET_LIB_UCLIBC
help