diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-30 22:45:29 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-30 22:45:29 +0100 |
commit | 220a96f9926788ed531717f78e44fdf1e7ab3b34 (patch) | |
tree | 406f65eea71fabd8cf66c2bd1108ec63f8c349ee /target/packages/pkg-available/development | |
parent | 38af8185ea05a1c5d1abb32a68a025e3b4afa4d6 (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/packages/pkg-available/development')
-rw-r--r-- | target/packages/pkg-available/development | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/target/packages/pkg-available/development b/target/packages/pkg-available/development new file mode 100644 index 000000000..6b6498749 --- /dev/null +++ b/target/packages/pkg-available/development @@ -0,0 +1,36 @@ +config ADK_PKG_DEVELOPMENT + bool "Compile a ADK development system" + default n + select ADK_PACKAGE_BASH + select ADK_PACKAGE_BINUTILS + select ADK_PACKAGE_BZIP2 + select ADK_PACKAGE_DIFFUTILS + select ADK_PACKAGE_FILE + select ADK_PACKAGE_GAWK + select ADK_PACKAGE_GCC + select ADK_PACKAGE_GIT + select ADK_PACKAGE_GREP + select ADK_PACKAGE_UCLIBC_DEV if ADK_TARGET_LIB_UCLIBC + select ADK_PACKAGE_EGLIBC_DEV if ADK_TARGET_LIB_EGLIBC + select ADK_PACKAGE_GLIBC_DEV if ADK_TARGET_LIB_GLIBC + select ADK_PACKAGE_LIBNCURSES + select ADK_PACKAGE_LIBNCURSES_DEV + select ADK_PACKAGE_M4 + select ADK_PACKAGE_MAKE + select ADK_PACKAGE_PATCH + select ADK_PACKAGE_PKG_CONFIG + select ADK_PACKAGE_MICROPERL + select ADK_PACKAGE_TSORT + select BUSYBOX_STAT + select BUSYBOX_FEATURE_STAT_FORMAT + select BUSYBOX_TR + select BUSYBOX_FEATURE_TR_CLASSES + select ADK_PACKAGE_ZLIB + select ADK_PACKAGE_ZLIB_DEV + select ADK_PACKAGE_XZ + help + After bootstrapping a Linux system you might want to + switch to native builds with your target. + If you choose this option, all necessary software needed + for native building will be selected by this option. + |