Compare commits
53 Commits
2009.02_rc
...
2009.02
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
347edd4075 | ||
|
|
cf34241144 | ||
|
|
3c1aa51227 | ||
|
|
5dac2c31e2 | ||
|
|
7897a950fe | ||
|
|
cfeadbdf6c | ||
|
|
30ab8666e4 | ||
|
|
0948f8af37 | ||
|
|
0442dce7d0 | ||
|
|
e9b629d866 | ||
|
|
42f985687d | ||
|
|
0833b949f6 | ||
|
|
421b354ce2 | ||
|
|
8b47a479f5 | ||
|
|
45c8d20378 | ||
|
|
d16f8bf2cd | ||
|
|
2f72570992 | ||
|
|
a54e0dd97f | ||
|
|
2c89d7aeb6 | ||
|
|
a1b8914cee | ||
|
|
a9114d3576 | ||
|
|
d41e54e694 | ||
|
|
c74eee7fe4 | ||
|
|
4fc25fcf10 | ||
|
|
5b1dbd2031 | ||
|
|
8567f5fa15 | ||
|
|
10f0c6c0b3 | ||
|
|
0d149d98d5 | ||
|
|
16a5a68947 | ||
|
|
93df57668f | ||
|
|
c0dfdc21f9 | ||
|
|
4d12298c67 | ||
|
|
8bc48ee108 | ||
|
|
87736033ab | ||
|
|
5c5a49c0b0 | ||
|
|
06d48389e2 | ||
|
|
b507aca915 | ||
|
|
ca1c4ce743 | ||
|
|
25b41e7e6a | ||
|
|
23b44e5a37 | ||
|
|
8bfd360ac6 | ||
|
|
5d77f80ea0 | ||
|
|
23b692f139 | ||
|
|
209f231168 | ||
|
|
a0caa24f98 | ||
|
|
a1523adcad | ||
|
|
91f780bc05 | ||
|
|
23152113a9 | ||
|
|
f3b9454a19 | ||
|
|
32521c03bd | ||
|
|
bae2ff4946 | ||
|
|
1fb44d3bfd | ||
|
|
6f295f7c6f |
14
Config.in
14
Config.in
@@ -8,7 +8,7 @@ config BR2_HAVE_DOT_CONFIG
|
||||
|
||||
config BR2_VERSION
|
||||
string
|
||||
default "2009.02-rc3"
|
||||
default "2009.02"
|
||||
|
||||
source "target/Config.in.arch"
|
||||
source "target/device/Config.in"
|
||||
@@ -116,18 +116,6 @@ config BR2_TOPDIR_SUFFIX
|
||||
build_ARCH -> build_ARCH_[SUFFIX]
|
||||
toolchain_build_ARCH -> toolchain_build_ARCH_[SUFFIX]
|
||||
|
||||
config BR2_ROOTFS_PREFIX
|
||||
string "Custom root fs prefix"
|
||||
default "rootfs"
|
||||
help
|
||||
Add a custom string to the beginning of the root file system name.
|
||||
|
||||
config BR2_ROOTFS_SUFFIX
|
||||
string "Custom root fs suffix"
|
||||
default ""
|
||||
help
|
||||
Add a custom string to the end of the root file system name.
|
||||
|
||||
config BR2_GNU_BUILD_SUFFIX
|
||||
string "GNU build hostname suffix"
|
||||
default "pc-linux-gnu"
|
||||
|
||||
@@ -3,6 +3,30 @@
|
||||
|
||||
<ul>
|
||||
|
||||
<li><b>9 February 2009 -- 2009.02-rc4 released</b>
|
||||
<p>We had more than 50 changes since RC3, several of them
|
||||
toolchain related, so decided to make a RC4 as well. This is
|
||||
very much expected to be the final release candidate, so give it
|
||||
a good test and expect a final 2009.02 release this week unless
|
||||
critical issues are found.</p>
|
||||
|
||||
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
|
||||
<a href="/downloads/buildroot-2009.02-rc4.tar.bz2">2009.02-rc4
|
||||
release candidate</a>, and report any problems found to the <a
|
||||
href="lists.html">mailing list</a> or <a
|
||||
href="http://bugs.uclibc.org">bug tracker</a>.</p>
|
||||
|
||||
<li><b>31 January 2009 -- 2009.02-rc3 released</b>
|
||||
<p>RC3 is out with more cleanups and bug fixes. Unless big issues
|
||||
are found, expect this to be the last release candidate before the
|
||||
release - So give it a good test.</p>
|
||||
|
||||
<p>Head to the <a href="/downloads/">downloads page</a> to pick up the
|
||||
<a href="/downloads/buildroot-2009.02-rc3.tar.bz2">2009.02-rc3
|
||||
release candidate</a>, and report any problems found to the <a
|
||||
href="lists.html">mailing list</a> or <a
|
||||
href="http://bugs.uclibc.org">bug tracker</a>.</p>
|
||||
|
||||
<li><b>23 January 2009 -- 2009.02-rc2 released</b>
|
||||
<p>Another week, another release candidate with a bunch of
|
||||
cleanups and build fixes.</p>
|
||||
|
||||
@@ -86,7 +86,6 @@ source "package/logrotate/Config.in"
|
||||
source "package/lsof/Config.in"
|
||||
source "package/ltp-testsuite/Config.in"
|
||||
source "package/ltrace/Config.in"
|
||||
source "package/ltt/Config.in"
|
||||
source "package/memstat/Config.in"
|
||||
if !BR2_PACKAGE_BUSYBOX_HIDE_OTHERS
|
||||
source "package/module-init-tools/Config.in"
|
||||
|
||||
@@ -10,19 +10,19 @@ MAKE1:=$(HOSTMAKE) -j1
|
||||
MAKE:=$(HOSTMAKE) -j$(BR2_JLEVEL)
|
||||
|
||||
ifeq ($(BR2_OPTIMIZE_0),y)
|
||||
TARGET_OPTIMIZATION=-O0
|
||||
TARGET_OPTIMIZATION+=-O0
|
||||
endif
|
||||
ifeq ($(BR2_OPTIMIZE_1),y)
|
||||
TARGET_OPTIMIZATION=-O1
|
||||
TARGET_OPTIMIZATION+=-O1
|
||||
endif
|
||||
ifeq ($(BR2_OPTIMIZE_2),y)
|
||||
TARGET_OPTIMIZATION=-O2
|
||||
TARGET_OPTIMIZATION+=-O2
|
||||
endif
|
||||
ifeq ($(BR2_OPTIMIZE_3),y)
|
||||
TARGET_OPTIMIZATION=-O3
|
||||
TARGET_OPTIMIZATION+=-O3
|
||||
endif
|
||||
ifeq ($(BR2_OPTIMIZE_S),y)
|
||||
TARGET_OPTIMIZATION=-Os
|
||||
TARGET_OPTIMIZATION+=-Os
|
||||
endif
|
||||
ifeq ($(BR2_DEBUG_1),y)
|
||||
TARGET_DEBUGGING=-g1
|
||||
@@ -88,14 +88,6 @@ ifeq ($(BR2_LARGEFILE),y)
|
||||
TARGET_CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
|
||||
endif
|
||||
|
||||
# Handle bug fixes in toolchain
|
||||
ifeq ($(BR2_arm),y)
|
||||
ifeq ($(BR2_GCC_VERSION_4_3_2),y)
|
||||
# Removes segment violation in mpg123.
|
||||
TARGET_CFLAGS+=-DARM_UNROLL_FIX
|
||||
endif
|
||||
endif
|
||||
|
||||
TARGET_CXXFLAGS=$(TARGET_CFLAGS)
|
||||
|
||||
# else it's an external toolchain
|
||||
|
||||
50
package/busybox/busybox-1.13.2-init.patch
Normal file
50
package/busybox/busybox-1.13.2-init.patch
Normal file
@@ -0,0 +1,50 @@
|
||||
--- busybox-1.13.2/init/init.c Wed Dec 31 04:06:45 2008
|
||||
+++ busybox-1.13.2-init/init/init.c Thu Jan 29 03:02:13 2009
|
||||
@@ -671,15 +671,14 @@
|
||||
*/
|
||||
static void parse_inittab(void)
|
||||
{
|
||||
+#if ENABLE_FEATURE_USE_INITTAB
|
||||
char *token[4];
|
||||
- /* order must correspond to SYSINIT..RESTART constants */
|
||||
- static const char actions[] ALIGN1 =
|
||||
- "sysinit\0""respawn\0""askfirst\0""wait\0""once\0"
|
||||
- "ctrlaltdel\0""shutdown\0""restart\0";
|
||||
+ parser_t *parser = config_open2("/etc/inittab", fopen_for_read);
|
||||
|
||||
- parser_t *parser = config_open2(INITTAB, fopen_for_read);
|
||||
- /* No inittab file -- set up some default behavior */
|
||||
- if (parser == NULL) {
|
||||
+ if (parser == NULL)
|
||||
+#endif
|
||||
+ {
|
||||
+ /* No inittab file -- set up some default behavior */
|
||||
/* Reboot on Ctrl-Alt-Del */
|
||||
new_init_action(CTRLALTDEL, "reboot", "");
|
||||
/* Umount all filesystems on halt/reboot */
|
||||
@@ -699,11 +698,17 @@
|
||||
new_init_action(SYSINIT, INIT_SCRIPT, "");
|
||||
return;
|
||||
}
|
||||
+
|
||||
+#if ENABLE_FEATURE_USE_INITTAB
|
||||
/* optional_tty:ignored_runlevel:action:command
|
||||
* Delims are not to be collapsed and need exactly 4 tokens
|
||||
*/
|
||||
while (config_read(parser, token, 4, 0, "#:",
|
||||
PARSE_NORMAL & ~(PARSE_TRIM | PARSE_COLLAPSE))) {
|
||||
+ /* order must correspond to SYSINIT..RESTART constants */
|
||||
+ static const char actions[] ALIGN1 =
|
||||
+ "sysinit\0""respawn\0""askfirst\0""wait\0""once\0"
|
||||
+ "ctrlaltdel\0""shutdown\0""restart\0";
|
||||
int action;
|
||||
char *tty = token[0];
|
||||
|
||||
@@ -727,6 +732,7 @@
|
||||
parser->lineno);
|
||||
}
|
||||
config_close(parser);
|
||||
+#endif
|
||||
}
|
||||
|
||||
#if ENABLE_FEATURE_USE_INITTAB
|
||||
99
package/busybox/busybox-1.13.2-modprobe.patch
Normal file
99
package/busybox/busybox-1.13.2-modprobe.patch
Normal file
@@ -0,0 +1,99 @@
|
||||
--- busybox-1.13.2/modutils/modutils-24.c Sat Nov 29 07:48:56 2008
|
||||
+++ busybox-1.13.2-modprobe/modutils/modutils-24.c Sun Feb 1 00:08:26 2009
|
||||
@@ -2150,7 +2150,7 @@
|
||||
sec->name = name;
|
||||
sec->idx = newidx;
|
||||
if (size)
|
||||
- sec->contents = xmalloc(size);
|
||||
+ sec->contents = xzalloc(size);
|
||||
|
||||
obj_insert_section_load_order(f, sec);
|
||||
|
||||
@@ -2165,7 +2165,7 @@
|
||||
int newidx = f->header.e_shnum++;
|
||||
struct obj_section *sec;
|
||||
|
||||
- f->sections = xrealloc(f->sections, (newidx + 1) * sizeof(sec));
|
||||
+ f->sections = xrealloc_vector(f->sections, 2, newidx);
|
||||
f->sections[newidx] = sec = arch_new_section();
|
||||
|
||||
sec->header.sh_type = SHT_PROGBITS;
|
||||
@@ -2175,7 +2175,7 @@
|
||||
sec->name = name;
|
||||
sec->idx = newidx;
|
||||
if (size)
|
||||
- sec->contents = xmalloc(size);
|
||||
+ sec->contents = xzalloc(size);
|
||||
|
||||
sec->load_next = f->load_order;
|
||||
f->load_order = sec;
|
||||
@@ -2571,8 +2571,7 @@
|
||||
/* Collect the modules' symbols. */
|
||||
|
||||
if (nmod) {
|
||||
- ext_modules = modules = xmalloc(nmod * sizeof(*modules));
|
||||
- memset(modules, 0, nmod * sizeof(*modules));
|
||||
+ ext_modules = modules = xzalloc(nmod * sizeof(*modules));
|
||||
for (i = 0, mn = module_names, m = modules;
|
||||
i < nmod; ++i, ++m, mn += strlen(mn) + 1) {
|
||||
struct new_module_info info;
|
||||
@@ -2652,13 +2651,14 @@
|
||||
}
|
||||
|
||||
|
||||
-static void new_create_this_module(struct obj_file *f, const char *m_name)
|
||||
+static void new_create_this_module(struct obj_file *f, const char *m_name)
|
||||
{
|
||||
struct obj_section *sec;
|
||||
|
||||
sec = obj_create_alloced_section_first(f, ".this", tgt_sizeof_long,
|
||||
sizeof(struct new_module));
|
||||
- memset(sec->contents, 0, sizeof(struct new_module));
|
||||
+ /* done by obj_create_alloced_section_first: */
|
||||
+ /*memset(sec->contents, 0, sizeof(struct new_module));*/
|
||||
|
||||
obj_add_symbol(f, SPFX "__this_module", -1,
|
||||
ELF_ST_INFO(STB_LOCAL, STT_OBJECT), sec->idx, 0,
|
||||
@@ -2965,9 +2965,9 @@
|
||||
if (i == f->header.e_shnum) {
|
||||
struct obj_section *sec;
|
||||
|
||||
+ f->header.e_shnum++;
|
||||
f->sections = xrealloc_vector(f->sections, 2, i);
|
||||
f->sections[i] = sec = arch_new_section();
|
||||
- f->header.e_shnum = i + 1;
|
||||
|
||||
sec->header.sh_type = SHT_PROGBITS;
|
||||
sec->header.sh_flags = SHF_WRITE | SHF_ALLOC;
|
||||
@@ -3006,12 +3006,9 @@
|
||||
for (i = 0; i < f->header.e_shnum; ++i) {
|
||||
struct obj_section *s = f->sections[i];
|
||||
if (s->header.sh_type == SHT_NOBITS) {
|
||||
+ s->contents = NULL;
|
||||
if (s->header.sh_size != 0)
|
||||
- s->contents = memset(xmalloc(s->header.sh_size),
|
||||
- 0, s->header.sh_size);
|
||||
- else
|
||||
- s->contents = NULL;
|
||||
-
|
||||
+ s->contents = xzalloc(s->header.sh_size);
|
||||
s->header.sh_type = SHT_PROGBITS;
|
||||
}
|
||||
}
|
||||
@@ -3275,14 +3272,13 @@
|
||||
case SHT_SYMTAB:
|
||||
case SHT_STRTAB:
|
||||
case SHT_RELM:
|
||||
+ sec->contents = NULL;
|
||||
if (sec->header.sh_size > 0) {
|
||||
- sec->contents = xmalloc(sec->header.sh_size);
|
||||
+ sec->contents = xzalloc(sec->header.sh_size);
|
||||
fseek(fp, sec->header.sh_offset, SEEK_SET);
|
||||
if (fread(sec->contents, sec->header.sh_size, 1, fp) != 1) {
|
||||
bb_perror_msg_and_die("error reading ELF section data");
|
||||
}
|
||||
- } else {
|
||||
- sec->contents = NULL;
|
||||
}
|
||||
break;
|
||||
|
||||
@@ -13,10 +13,18 @@ DBUS_TARGET_BINARY:=usr/bin/dbus-daemon
|
||||
|
||||
ifeq ($(BR2_DBUS_EXPAT),y)
|
||||
DBUS_XML:=expat
|
||||
DBUS_XML_DEP:=expat
|
||||
# depend on the exact library file instead of expat so dbus isn't always
|
||||
# considered out-of-date
|
||||
DBUS_XML_DEP:=$(STAGING_DIR)/usr/lib/libexpat.so.1
|
||||
else
|
||||
DBUS_XML:=libxml
|
||||
DBUS_XML_DEP:=libxml2
|
||||
# Makefile.autotools.in unfortunately has broken dependency handling,
|
||||
# so we cannot do the same for libxml2 as the targets (like
|
||||
# libxml2-install-staging) are phony and hence, dbus will always be
|
||||
# considered out-of-date. Using the corresponding .stamp_* files (E.G.
|
||||
# LIBXML2_TARGET_INSTALL_STAGING doesn't work as there's no dependency
|
||||
# information between them.
|
||||
DBUS_XML_DEP:=libxml2-install-staging
|
||||
endif
|
||||
|
||||
$(DL_DIR)/$(DBUS_SOURCE):
|
||||
@@ -86,7 +94,7 @@ ifneq ($(BR2_HAVE_MANPAGES),y)
|
||||
rm -rf $(TARGET_DIR)/usr/share/man
|
||||
endif
|
||||
|
||||
dbus: uclibc pkgconfig $(DBUS_XML_DEP) $(TARGET_DIR)/$(DBUS_TARGET_BINARY)
|
||||
dbus: uclibc pkgconfig $(TARGET_DIR)/$(DBUS_TARGET_BINARY)
|
||||
|
||||
dbus-clean:
|
||||
rm -f $(TARGET_DIR)/etc/dbus-1/session.conf
|
||||
@@ -113,5 +121,3 @@ dbus-dirclean:
|
||||
ifeq ($(BR2_PACKAGE_DBUS),y)
|
||||
TARGETS+=dbus
|
||||
endif
|
||||
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ VIM_SITE:=http://ftp.vim.org/pub/vim
|
||||
VIM_SOURCE_SITE:=$(VIM_SITE)/unix
|
||||
VIM_PATCH_SITE:=$(VIM_SITE)/patches/7.1
|
||||
VIM_DIR:=$(BUILD_DIR)/vim71
|
||||
VIM_PATCHES:=$(shell cat package/editors/vim/patches | sed -s 's:\(.\+\):$(DL_DIR)/vim/$(VIM_VERSION).\1:')
|
||||
VIM_PATCHES:=$(shell sed -e 's:^:$(DL_DIR)/vim/$(VIM_VERSION).:' package/editors/vim/patches)
|
||||
VIM_CONFIG_H:=$(VIM_DIR)/src/auto/config.h
|
||||
VIM_CONFIG_MK:=$(VIM_DIR)/src/auto/config.mk
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ GMP_CAT:=$(BZCAT)
|
||||
GMP_DIR:=$(TOOL_BUILD_DIR)/gmp-$(GMP_VERSION)
|
||||
GMP_TARGET_DIR:=$(BUILD_DIR)/gmp-$(GMP_VERSION)
|
||||
GMP_BINARY:=libgmp$(LIBTGTEXT)
|
||||
GMP_HOST_BINARY:=libgmp$(HOST_SHREXT)
|
||||
GMP_HOST_BINARY:=libgmp$(HOST_LIBEXT)
|
||||
GMP_LIBVERSION:=3.4.2
|
||||
|
||||
# this is a workaround for a bug in GMP, please see
|
||||
@@ -83,13 +83,13 @@ $(GMP_DIR2)/.configured: $(GMP_DIR)/.unpacked
|
||||
--prefix="$(GMP_HOST_DIR)" \
|
||||
--build=$(GNU_HOST_NAME) \
|
||||
--host=$(GNU_HOST_NAME) \
|
||||
--enable-shared \
|
||||
--disable-shared \
|
||||
--enable-static \
|
||||
$(DISABLE_NLS) \
|
||||
)
|
||||
touch $@
|
||||
|
||||
$(GMP_HOST_DIR)/lib/libgmp$(HOST_LIBEXT) $(GMP_HOST_DIR)/lib/libgmp$(HOST_SHREXT) $(GMP_HOST_DIR)/lib/libgmp$(HOST_SHREXT).(GMP_LIBVERSION): $(GMP_DIR2)/.configured
|
||||
$(GMP_HOST_DIR)/lib/libgmp$(HOST_LIBEXT): $(GMP_DIR2)/.configured
|
||||
$(MAKE) -C $(GMP_DIR2) install
|
||||
|
||||
host-libgmp: $(GMP_HOST_DIR)/lib/$(GMP_HOST_BINARY)
|
||||
|
||||
@@ -22,32 +22,19 @@ $(LIBEXOSIP2_DIR)/.configured: $(LIBEXOSIP2_DIR)/.unpacked
|
||||
(cd $(LIBEXOSIP2_DIR); rm -rf config.cache; \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
$(TARGET_CONFIGURE_ARGS) \
|
||||
OSIP_CFLAGS="$(TARGET_CFLAGS)" \
|
||||
OSIP_LIBS="-L$(STAGING_DIR)/usr/lib -losip2 -losipparser2" \
|
||||
./configure \
|
||||
--target=$(GNU_TARGET_NAME) \
|
||||
--host=$(GNU_TARGET_NAME) \
|
||||
--build=$(GNU_HOST_NAME) \
|
||||
--prefix=/usr \
|
||||
--exec-prefix=/usr \
|
||||
--libexecdir=/usr/lib \
|
||||
--sysconfdir=/etc \
|
||||
--datadir=/usr/share \
|
||||
--localstatedir=/var \
|
||||
--libdir=/usr/lib \
|
||||
--includedir=$(STAGING_DIR)/usr/include \
|
||||
--oldincludedir=/usr/include \
|
||||
--enable-shared \
|
||||
--enable-static \
|
||||
$(DISABLE_NLS) \
|
||||
)
|
||||
touch $@
|
||||
|
||||
# --with-gnu-ld \
|
||||
# --libexecdir=$(STAGING_DIR)/usr/lib \
|
||||
# --libdir=$(STAGING_DIR)/usr/lib \
|
||||
# --libdir=/usr/lib \
|
||||
# --libexecdir=/usr/lib \
|
||||
|
||||
|
||||
$(LIBEXOSIP2_DIR)/.compiled: $(LIBEXOSIP2_DIR)/.configured
|
||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(LIBEXOSIP2_DIR)
|
||||
touch $@
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
config BR2_PACKAGE_LTT
|
||||
bool "LTT (Linux Trace Toolkit)"
|
||||
depends on BR2_DEPRECATED
|
||||
help
|
||||
A suite of tools designed to extract program execution
|
||||
details from the Linux operating system and interpret them.
|
||||
|
||||
http://www.opersys.com/LTT/
|
||||
The package is obsolete and has been replaced by ltt-ng
|
||||
|
||||
@@ -1,93 +0,0 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Load tracer module and create tracer device node.
|
||||
#
|
||||
|
||||
MODULE="tracer"
|
||||
MAIN_DEVICE="tracer"
|
||||
USER_DEVICE="tracerU"
|
||||
GROUP="root"
|
||||
MODE="664"
|
||||
|
||||
start() {
|
||||
if [ -e /dev/${MAIN_DEVICE} -o -e /dev/${USER_DEVICE} ]
|
||||
then
|
||||
# tell the user about what we are doing
|
||||
echo "Deleting old tracer nodes: /dev/tracer and /dev/tracerU"
|
||||
|
||||
# remove stale nodes
|
||||
rm -f /dev/${MAIN_DEVICE}
|
||||
rm -f /dev/${USER_DEVICE}
|
||||
fi
|
||||
|
||||
# look for the major number
|
||||
MAJOR=`/bin/grep " ${MODULE}$" /proc/devices | cut -d" " -f1`
|
||||
|
||||
# does the device exist?
|
||||
if [ ${MAJOR} ]
|
||||
then
|
||||
echo "Found tracer device with major number:" ${MAJOR}
|
||||
else
|
||||
echo "Loading tracer kernel module: "
|
||||
# invoke modprobe
|
||||
/sbin/modprobe ${MODULE}
|
||||
MAJOR=`/bin/grep " ${MODULE}$" /proc/devices | cut -d" " -f1`
|
||||
if [ ${MAJOR} ]
|
||||
then
|
||||
echo "Found tracer device with major number:" ${MAJOR}
|
||||
else
|
||||
echo "Did not find tracer device ... /dev entries not created ..."
|
||||
exit 1
|
||||
fi
|
||||
fi
|
||||
|
||||
# tell the user about what we are doing
|
||||
echo "Creating new tracer nodes: /dev/tracer and /dev/tracerU"
|
||||
|
||||
# create the character special file
|
||||
/bin/mknod /dev/${MAIN_DEVICE} c ${MAJOR} 0
|
||||
/bin/mknod /dev/${USER_DEVICE} c ${MAJOR} 1
|
||||
|
||||
# set permissions and ownership
|
||||
/bin/chgrp ${GROUP} /dev/${MAIN_DEVICE}
|
||||
/bin/chmod ${MODE} /dev/${MAIN_DEVICE}
|
||||
/bin/chgrp ${GROUP} /dev/${USER_DEVICE}
|
||||
/bin/chmod ${MODE} /dev/${USER_DEVICE}
|
||||
}
|
||||
stop() {
|
||||
# tell the user about what we are doing
|
||||
echo "Deleting tracer nodes: /dev/tracer and /dev/tracerU"
|
||||
|
||||
# remove nodes
|
||||
rm -f /dev/${MAIN_DEVICE}
|
||||
rm -f /dev/${USER_DEVICE}
|
||||
|
||||
if lsmod | /bin/grep "^${MODULE} "
|
||||
then
|
||||
echo -n "Removing tracer kernel module: "
|
||||
# invoke modprobe -r
|
||||
/sbin/modprobe -r ${MODULE}
|
||||
echo "OK"
|
||||
fi
|
||||
}
|
||||
restart() {
|
||||
stop
|
||||
start
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
start
|
||||
;;
|
||||
stop)
|
||||
stop
|
||||
;;
|
||||
restart|reload)
|
||||
restart
|
||||
;;
|
||||
*)
|
||||
echo $"Usage: $0 {start|stop|restart}"
|
||||
exit 1
|
||||
esac
|
||||
|
||||
exit $?
|
||||
@@ -1,23 +0,0 @@
|
||||
--- orig/TraceToolkit-0.9.5/Visualizer/MainWindow.c 2002-04-15 19:23:49.000000000 -0700
|
||||
+++ TraceToolkit-0.9.5/Visualizer/MainWindow.c 2006-04-05 16:04:47.000000000 -0700
|
||||
@@ -28,6 +28,7 @@
|
||||
#include <string.h>
|
||||
#include <fcntl.h>
|
||||
#include <unistd.h>
|
||||
+#include <stdlib.h>
|
||||
#include <sys/stat.h>
|
||||
#include <gdk/gdkkeysyms.h>
|
||||
|
||||
@@ -3146,8 +3147,10 @@
|
||||
|
||||
/* FORCEFULLY disconnect event handlers from the notebook widget */
|
||||
/* I didn't find any cleaner way to do this. K.Y. 9/5/2000 */
|
||||
- GTK_SIGNAL_FUNC(GTK_WIDGET_CLASS(GTK_OBJECT(pmSysView->Window->MNotebook)->klass)->key_press_event) = NULL,
|
||||
- GTK_SIGNAL_FUNC(GTK_WIDGET_CLASS(GTK_OBJECT(pmSysView->Window->MNotebook)->klass)->focus_in_event) = NULL,
|
||||
+ gtk_type_free(GTK_TYPE_SIGNAL,
|
||||
+ GTK_SIGNAL_FUNC(GTK_WIDGET_CLASS(GTK_OBJECT(pmSysView->Window->MNotebook)->klass)->key_press_event));
|
||||
+ gtk_type_free(GTK_TYPE_SIGNAL,
|
||||
+ GTK_SIGNAL_FUNC(GTK_WIDGET_CLASS(GTK_OBJECT(pmSysView->Window->MNotebook)->klass)->focus_in_event));
|
||||
|
||||
/* Connect the key press event */
|
||||
gtk_signal_connect(GTK_OBJECT(pmSysView->Window->MWindow),
|
||||
@@ -1,121 +0,0 @@
|
||||
#############################################################
|
||||
#
|
||||
# ltt
|
||||
#
|
||||
#############################################################
|
||||
LTT_VERSION:=0.9.5a
|
||||
LTT_SOURCE:=TraceToolkit-$(LTT_VERSION).tgz
|
||||
LTT_SITE:=http://www.opersys.com/ftp/pub/LTT
|
||||
LTT_CAT:=$(ZCAT)
|
||||
LTT_DIR1:=$(TOOL_BUILD_DIR)/TraceToolkit-$(LTT_VERSION:a=)
|
||||
LTT_DIR2:=$(BUILD_DIR)/TraceToolkit-$(LTT_VERSION:a=)
|
||||
LTT_BINARY:=Visualizer/tracevisualizer
|
||||
LTT_TARGET_BINARY:=Daemon/tracedaemon
|
||||
|
||||
$(DL_DIR)/$(LTT_SOURCE):
|
||||
$(call DOWNLOAD,$(LTT_SITE),$(LTT_SOURCE))
|
||||
|
||||
ltt-source: $(DL_DIR)/$(LTT_SOURCE)
|
||||
|
||||
|
||||
#############################################################
|
||||
#
|
||||
# build tracevisualizer for use on the host system
|
||||
#
|
||||
#############################################################
|
||||
$(LTT_DIR1)/.unpacked: $(DL_DIR)/$(LTT_SOURCE)
|
||||
$(LTT_CAT) $(DL_DIR)/$(LTT_SOURCE) | tar -C $(TOOL_BUILD_DIR) $(TAR_OPTIONS) -
|
||||
toolchain/patch-kernel.sh $(LTT_DIR1) package/ltt ltt\*.patch
|
||||
touch $(LTT_DIR1)/.unpacked
|
||||
|
||||
# Build without GTK if not available
|
||||
LTT_WITHOUT_GTK:=$(shell which gtk-config > /dev/null 2>&1 || echo "--without-gtk")
|
||||
|
||||
$(LTT_DIR1)/.configured: $(LTT_DIR1)/.unpacked
|
||||
(cd $(LTT_DIR1); rm -rf config.cache; \
|
||||
./configure \
|
||||
--prefix=$(TOOL_BUILD_DIR) \
|
||||
$(LTT_WITHOUT_GTK) \
|
||||
)
|
||||
touch $(LTT_DIR1)/.configured
|
||||
|
||||
$(LTT_DIR1)/$(LTT_BINARY): $(LTT_DIR1)/.configured
|
||||
$(MAKE) -C $(LTT_DIR1)/LibLTT
|
||||
$(MAKE) -C $(LTT_DIR1)/Visualizer
|
||||
|
||||
$(TOOL_BUILD_DIR)/bin/tracevisualizer: $(LTT_DIR1)/$(LTT_BINARY)
|
||||
$(MAKE) -C $(LTT_DIR1)/LibLTT install
|
||||
$(MAKE) -C $(LTT_DIR1)/Visualizer install
|
||||
|
||||
host-ltt-tracevisualizer: $(TOOL_BUILD_DIR)/bin/tracevisualizer
|
||||
|
||||
host-ltt-clean:
|
||||
-$(MAKE) -C $(LTT_DIR1) clean
|
||||
|
||||
host-ltt-dirclean:
|
||||
rm -rf $(LTT_DIR1)
|
||||
|
||||
|
||||
#############################################################
|
||||
#
|
||||
# build tracedaemon for use on the target system
|
||||
#
|
||||
#############################################################
|
||||
$(LTT_DIR2)/.unpacked: $(DL_DIR)/$(LTT_SOURCE)
|
||||
$(LTT_CAT) $(DL_DIR)/$(LTT_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
||||
toolchain/patch-kernel.sh $(LTT_DIR2) package/ltt ltt\*.patch
|
||||
touch $(LTT_DIR2)/.unpacked
|
||||
|
||||
$(LTT_DIR2)/.configured: $(LTT_DIR2)/.unpacked
|
||||
(cd $(LTT_DIR2); rm -rf config.cache; \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
$(TARGET_CONFIGURE_ARGS) \
|
||||
./configure \
|
||||
--host=$(GNU_TARGET_NAME) \
|
||||
--build=$(GNU_HOST_NAME) \
|
||||
--prefix=/usr \
|
||||
--exec-prefix=/usr \
|
||||
--bindir=/usr/bin \
|
||||
--sbindir=/usr/sbin \
|
||||
--libdir=/lib \
|
||||
--libexecdir=/usr/lib \
|
||||
--sysconfdir=/etc \
|
||||
--datadir=/usr/share \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
--infodir=/usr/info \
|
||||
)
|
||||
touch $(LTT_DIR2)/.configured
|
||||
|
||||
$(LTT_DIR2)/$(LTT_TARGET_BINARY): $(LTT_DIR2)/.configured
|
||||
$(MAKE) CC=$(TARGET_CC) -C $(LTT_DIR2)/LibUserTrace
|
||||
$(MAKE) CC=$(TARGET_CC) -C $(LTT_DIR2)/Daemon
|
||||
|
||||
$(TARGET_DIR)/usr/bin/tracedaemon: $(LTT_DIR2)/$(LTT_TARGET_BINARY)
|
||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) DESTDIR=$(TARGET_DIR) \
|
||||
-C $(LTT_DIR2)/LibUserTrace install
|
||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) DESTDIR=$(TARGET_DIR) \
|
||||
-C $(LTT_DIR2)/Daemon install
|
||||
$(STRIPCMD) $(TARGET_DIR)/usr/bin/tracedaemon > /dev/null 2>&1
|
||||
$(INSTALL) -D -m 0755 package/ltt/S27tracer $(TARGET_DIR)/etc/init.d
|
||||
|
||||
ltt-tracedaemon: uclibc $(TARGET_DIR)/usr/bin/tracedaemon
|
||||
|
||||
ltt-clean:
|
||||
$(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(LTT_DIR2) uninstall
|
||||
-$(MAKE) -C $(LTT_DIR2) clean
|
||||
|
||||
ltt-dirclean:
|
||||
rm -rf $(LTT_DIR2)
|
||||
|
||||
|
||||
ltt: host-ltt-tracevisualizer ltt-tracedaemon
|
||||
|
||||
#############################################################
|
||||
#
|
||||
# Toplevel Makefile options
|
||||
#
|
||||
#############################################################
|
||||
ifeq ($(BR2_PACKAGE_LTT),y)
|
||||
TARGETS+=ltt
|
||||
endif
|
||||
@@ -1,42 +0,0 @@
|
||||
diff -urN TraceToolkit-0.9.5.orig/LibLTT/EventDB.c TraceToolkit-0.9.5/LibLTT/EventDB.c
|
||||
--- TraceToolkit-0.9.5.orig/LibLTT/EventDB.c 2002-04-15 09:10:13.000000000 -0700
|
||||
+++ TraceToolkit-0.9.5/LibLTT/EventDB.c 2005-09-29 15:09:11.000000000 -0700
|
||||
@@ -2757,7 +2757,7 @@
|
||||
|
||||
/* Increment number of custom events */
|
||||
pmTraceDB->NbCustom++;
|
||||
- goto NoControlEvent;
|
||||
+ continue;
|
||||
break;
|
||||
|
||||
/* A custom event has occured */
|
||||
@@ -2800,8 +2800,6 @@
|
||||
lLastCtrlEvent = lEvent;
|
||||
lLastCtrlEventTime = lEventTime;
|
||||
}
|
||||
-
|
||||
-NoControlEvent:
|
||||
} while(DBEventNext(pmTraceDB, &lEvent) == TRUE);
|
||||
|
||||
/* Remember the last event and its time */
|
||||
diff -urN TraceToolkit-0.9.5.orig/LibLTT/RTAIDB.c TraceToolkit-0.9.5/LibLTT/RTAIDB.c
|
||||
--- TraceToolkit-0.9.5.orig/LibLTT/RTAIDB.c 2002-04-15 20:00:05.000000000 -0700
|
||||
+++ TraceToolkit-0.9.5/LibLTT/RTAIDB.c 2005-09-29 15:09:17.000000000 -0700
|
||||
@@ -2621,7 +2621,7 @@
|
||||
|
||||
/* Increment number of custom events */
|
||||
pmTraceDB->NbCustom++;
|
||||
- goto NoControlEvent;
|
||||
+ continue;
|
||||
break;
|
||||
|
||||
/* A custom event has occured */
|
||||
@@ -2936,8 +2936,6 @@
|
||||
lLastCtrlEvent = lEvent;
|
||||
lLastCtrlEventTime = lEventTime;
|
||||
}
|
||||
-
|
||||
-NoControlEvent:
|
||||
} while(DBEventNext(pmTraceDB, &lEvent) == TRUE);
|
||||
|
||||
/* Remember the last event and it's time */
|
||||
@@ -82,7 +82,10 @@ ifneq ($(MICROPERL_MODS),)
|
||||
done; \
|
||||
)
|
||||
endif
|
||||
cp -dpf $(MICROPERL_DIR)/microperl $(TARGET_DIR)/usr/bin/microperl
|
||||
cp -dpf $(MICROPERL_DIR)/microperl $@
|
||||
ifneq ($(BR2_STRIP_none),y)
|
||||
$(STRIPCMD) $(STRIP_STRIP_ALL) $@
|
||||
endif
|
||||
(cd $(TARGET_DIR)/usr/bin; rm -f perl; ln -s microperl perl;)
|
||||
|
||||
microperl: uclibc $(TARGET_DIR)/usr/bin/microperl
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
# mpfr
|
||||
#
|
||||
#############################################################
|
||||
MPFR_VERSION:=2.3.0
|
||||
MPFR_PATCH:=patches
|
||||
MPFR_VERSION:=2.3.2
|
||||
#MPFR_PATCH:=patches
|
||||
MPFR_PATCH_FILE:=mpfr-$(MPFR_VERSION).patch
|
||||
MPFR_SOURCE:=mpfr-$(MPFR_VERSION).tar.bz2
|
||||
MPFR_CAT:=$(BZCAT)
|
||||
@@ -12,9 +12,8 @@ MPFR_SITE:=http://www.mpfr.org/mpfr-$(MPFR_VERSION)
|
||||
MPFR_DIR:=$(TOOL_BUILD_DIR)/mpfr-$(MPFR_VERSION)
|
||||
MPFR_TARGET_DIR:=$(BUILD_DIR)/mpfr-$(MPFR_VERSION)
|
||||
MPFR_BINARY:=libmpfr$(LIBTGTEXT)
|
||||
MPFR_HOST_BINARY:=libmpfr$(HOST_SHREXT)
|
||||
MPFR_LIBVERSION:=1.0.1
|
||||
#MPFR_SVN_CMD:=svn co svn://scm.gforge.inria.fr/svn/mpfr/branches/2.3 mpfr-2.3
|
||||
MPFR_HOST_BINARY:=libmpfr$(HOST_LIBEXT)
|
||||
MPFR_LIBVERSION:=1.1.2
|
||||
|
||||
# need patch
|
||||
ifneq ($(MPFR_PATCH),)
|
||||
@@ -97,14 +96,14 @@ $(MPFR_DIR2)/.configured: $(MPFR_DIR)/.unpacked $(GMP_HOST_DIR)/lib/$(GMP_HOST_B
|
||||
--prefix="$(MPFR_HOST_DIR)" \
|
||||
--build=$(GNU_HOST_NAME) \
|
||||
--host=$(GNU_HOST_NAME) \
|
||||
--enable-shared \
|
||||
--disable-shared \
|
||||
--enable-static \
|
||||
--with-gmp=$(GMP_HOST_DIR) \
|
||||
$(DISABLE_NLS) \
|
||||
)
|
||||
touch $@
|
||||
|
||||
$(MPFR_HOST_DIR)/lib/libmpfr$(HOST_LIBEXT) $(MPFR_HOST_DIR)/lib/libmpfr$(HOST_SHREXT) $(MPFR_HOST_DIR)/lib/libmpfr$(HOST_SHREXT).$(MPFR_LIBVERSION): $(MPFR_DIR2)/.configured
|
||||
$(MPFR_HOST_DIR)/lib/libmpfr$(HOST_LIBEXT): $(MPFR_DIR2)/.configured
|
||||
$(MAKE) -C $(MPFR_DIR2) install
|
||||
|
||||
host-libmpfr: $(MPFR_HOST_DIR)/lib/$(MPFR_HOST_BINARY)
|
||||
|
||||
@@ -9,7 +9,7 @@ config BR2_PACKAGE_ALSA_LIB
|
||||
config BR2_PACKAGE_ALSA_LIB_PYTHON
|
||||
bool "Python support for alsa-lib"
|
||||
depends on BR2_PACKAGE_ALSA_LIB
|
||||
select BR2_PACKAGE_PYTHON
|
||||
depends on BR2_PACKAGE_PYTHON
|
||||
help
|
||||
Add python support for alsa-lib.
|
||||
Python will be built and libpython will be installed
|
||||
|
||||
@@ -11,20 +11,19 @@ ALSA_LIB_CAT:=$(BZCAT)
|
||||
ALSA_LIB_BINARY:=libasound.so.2.0.0
|
||||
ALSA_LIB_TARGET_BINARY:=usr/lib/$(ALSA_LIB_BINARY)
|
||||
|
||||
ALSA_LIB_CFLAGS=$(TARGET_CFLAGS)
|
||||
|
||||
ifeq ($(BR2_arm),y)
|
||||
ALSA_LIB_ABI+=-mabi=aapcs-linux
|
||||
else
|
||||
ALSA_LIB_ABI+=
|
||||
ALSA_LIB_CFLAGS+=-mabi=aapcs-linux
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_avr32),y)
|
||||
ALSA_LIB_ABI+=-DAVR32_INLINE_BUG
|
||||
else
|
||||
ALSA_LIB_ABI+=
|
||||
ALSA_LIB_CFLAGS+=-DAVR32_INLINE_BUG
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ALSA_LIB_PYTHON),y)
|
||||
ALSA_LIB_CONFIGURE_OPTS += --with-pythonlibs=-lpython$(PYTHON_VERSION_MAJOR)
|
||||
ALSA_LIB_CFLAGS+=-I$(STAGING_DIR)/usr/include/python$(PYTHON_VERSION_MAJOR)
|
||||
ALSA_LIB_DEPS = libpython
|
||||
else
|
||||
ALSA_LIB_CONFIGURE_OPTS += --disable-python
|
||||
@@ -47,7 +46,7 @@ $(ALSA_LIB_DIR)/.configured: $(ALSA_LIB_DIR)/.unpacked
|
||||
(cd $(ALSA_LIB_DIR); rm -rf config.cache; \
|
||||
$(TARGET_CONFIGURE_ARGS) \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
CFLAGS="$(TARGET_CFLAGS) $(ALSA_LIB_ABI)" \
|
||||
CFLAGS="$(ALSA_LIB_CFLAGS)" \
|
||||
LDFLAGS="$(TARGET_LDFLAGS) -lm" \
|
||||
./configure \
|
||||
--target=$(GNU_TARGET_NAME) \
|
||||
|
||||
@@ -108,7 +108,8 @@ $(TREMOR_DIR)/.libs: $(TREMOR_DIR)/.configured
|
||||
touch $@
|
||||
|
||||
$(TARGET_DIR)/usr/lib/tremor.so: $(TREMOR_DIR)/.libs
|
||||
$(MAKE) prefix=$(TARGET_DIR)/usr -C $(TREMOR_DIR) install
|
||||
$(MAKE) prefix=$(TARGET_DIR)/usr -C $(TREMOR_DIR) \
|
||||
$(if $(BR2_STRIP_none),install,install-strip)
|
||||
touch $@
|
||||
|
||||
$(TARGET_DIR)/usr/lib/tremor.a: $(TARGET_DIR)/usr/lib/tremor.so
|
||||
|
||||
@@ -5,9 +5,3 @@ config BR2_PACKAGE_MPG123
|
||||
MPEG 1.0/2.0 layers 1, 2 and 3.
|
||||
|
||||
http://www.mpg123.de/
|
||||
|
||||
config BR2_PACKAGE_MPG123_ALSA
|
||||
bool
|
||||
default y
|
||||
depends on BR2_PACKAGE_ALSA_LIB
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -13,15 +13,11 @@ MPG123_TARGET_BIN:=usr/bin/mpg123
|
||||
|
||||
# Check if ALSA is built, then we should configure after alsa-lib so
|
||||
# ./configure can find alsa-lib.
|
||||
ifeq ($(BR2_PACKAGE_MPG123_ALSA),y)
|
||||
ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
|
||||
MPG123_USE_ALSA:=--with-audio=alsa
|
||||
MPG123_ALSA_DEP:=alsa-lib
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_MPG123_ARM_UNROLL_FIX),y)
|
||||
MPG123_ARM_UNROLL_FIX:= -DMPG123_ARM_UNROLL_FIX
|
||||
endif
|
||||
|
||||
$(DL_DIR)/$(MPG123_SOURCE):
|
||||
$(call DOWNLOAD,$(MPG123_SITE),$(MPG123_SOURCE))
|
||||
|
||||
@@ -35,7 +31,7 @@ $(MPG123_DIR)/.configured: $(MPG123_DIR)/.unpacked
|
||||
(cd $(MPG123_DIR); rm -rf config.cache; \
|
||||
$(TARGET_CONFIGURE_ARGS) \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
CFLAGS="$(TARGET_CFLAGS) $(MPG123_ARM_UNROLL_FIX)" \
|
||||
CFLAGS="$(TARGET_CFLAGS)" \
|
||||
LDFLAGS="$(TARGET_LDFLAGS)" \
|
||||
./configure \
|
||||
--target=$(REAL_GNU_TARGET_NAME) \
|
||||
@@ -59,9 +55,6 @@ $(TARGET_DIR)/$(MPG123_TARGET_BIN): $(MPG123_DIR)/$(MPG123_BIN)
|
||||
|
||||
mpg123: uclibc $(MPG123_ALSA_DEP) $(TARGET_DIR)/$(MPG123_TARGET_BIN)
|
||||
|
||||
mpg123x:
|
||||
touch $(MPG123_DIR)/.configured
|
||||
|
||||
mpg123-unpacked: $(MPG123_DIR)/.unpacked
|
||||
|
||||
mpg123-clean:
|
||||
|
||||
@@ -7,5 +7,5 @@ config BR2_PACKAGE_XDRIVER_XF86_VIDEO_XGI
|
||||
select BR2_PACKAGE_XPROTO_XEXTPROTO
|
||||
select BR2_PACKAGE_XPROTO_XPROTO
|
||||
help
|
||||
xf86-video-xgi 1.3.0
|
||||
xf86-video-xgi 1.5.0
|
||||
XGI based chips video driver
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
################################################################################
|
||||
|
||||
XDRIVER_XF86_VIDEO_XGI_VERSION = 1.5.0
|
||||
XDRIVER_XF86_VIDEO_XGI_SOURCE = xf86-video-xgi-$(XDRIVER_XF86_VIDEO_VESA_VERSION).tar.bz2
|
||||
XDRIVER_XF86_VIDEO_XGI_SOURCE = xf86-video-xgi-$(XDRIVER_XF86_VIDEO_XGI_VERSION).tar.bz2
|
||||
XDRIVER_XF86_VIDEO_XGI_SITE = http://xorg.freedesktop.org/releases/individual/driver
|
||||
XDRIVER_XF86_VIDEO_XGI_AUTORECONF = NO
|
||||
XDRIVER_XF86_VIDEO_XGI_DEPENDENCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_xextproto xproto_xproto
|
||||
|
||||
@@ -11,353 +11,331 @@ make oldconfig > info.log 2>&1
|
||||
|
||||
source "scripts/testheader.inc"
|
||||
make flush
|
||||
|
||||
|
||||
skip mk busybox
|
||||
bb mk bash
|
||||
bb mk bzip2
|
||||
bb mk coreutils
|
||||
bb mk diffutils
|
||||
bb mk findutils
|
||||
EXE mk flex OK
|
||||
bb mk gawk
|
||||
bb mk grep
|
||||
EXE mk make OK
|
||||
|
||||
comment "# Other development stuff"
|
||||
EXE mk autoconf OK
|
||||
EXE mk automake OK
|
||||
EXE mk bison OK
|
||||
EXE mk cvs OK
|
||||
EXE mk distcc OK
|
||||
EXE mk dmalloc OK
|
||||
EXE mk fakeroot OK
|
||||
EXE mk gettext OK
|
||||
EXE mk libgmp OK
|
||||
EXE mk gperf OK
|
||||
EXE mk libmpfr OK
|
||||
EXE mk libtool OK
|
||||
EXE mk libiconv OK
|
||||
EXE mk popt OK
|
||||
EXE mk m4 OK
|
||||
skip mk mpatrol DISABLED "Needs gdb to build, and GDB_VERSION is not defined"
|
||||
EXE mk oprofile FAIL "error: bfd library not found"
|
||||
EXE mk pkgconfig OK
|
||||
EXE mk readline OK
|
||||
skip mk valgrind DISABLED "x86 specific"
|
||||
EXE mk pcre OK
|
||||
|
||||
comment "Other stuff"
|
||||
EXE mk at OK
|
||||
EXE mk beecrypt OK
|
||||
AVR mk berkeleydb OK "Machine avr32 not recognized"
|
||||
EXE mk bsdiff OK
|
||||
bb mk bootutils
|
||||
EXE mk cups OK
|
||||
EXE mk customize OK
|
||||
bb mk dash
|
||||
EXE mk file OK
|
||||
EXE mk gamin OK
|
||||
EXE mk icu OK "No rule to create out"
|
||||
AVR mk kexec OK "Machine avr32 not recognized"
|
||||
bb mk less
|
||||
EXE mk libconfig OK
|
||||
EXE mk libconfuse OK
|
||||
EXE mk libdaemon OK
|
||||
EXE mk libelf OK
|
||||
AVR mk libevent FAIL "Machine avr32 not recognized"
|
||||
skip mk libfloat DISABLED "Obsolete package"
|
||||
EXE mk libgcrypt OK
|
||||
EXE mk libgpg-error OK
|
||||
EXE mk liblockfile OK
|
||||
EXE mk liboil OK
|
||||
EXE mk libsysfs OK
|
||||
EXE mk lockfile-progs OK
|
||||
EXE mk logrotate OK
|
||||
EXE mk lsof OK
|
||||
skip mk ltp-testsuite DISABLED
|
||||
AVR mk ltrace FAIL "Machine avr32 not recognized"
|
||||
skip mk ltt DISABLED "Obsolete package ltt-ng"
|
||||
EXE mk memstat OK
|
||||
EXE mk module-init-tools OK "Use this instead of modutils"
|
||||
skip mk modutils FAIL "This package is for the Linus 2.4 kernel"
|
||||
EXE mk ng-spice-rework FAIL "Environment change"
|
||||
bb mk procps
|
||||
bb mk psmisc
|
||||
EXE mk screen OK
|
||||
EXE mk strace OK
|
||||
EXE mk sudo OK
|
||||
bb mk sysklogd
|
||||
|
||||
comment "busybox has init and the runit stuff"
|
||||
bb mk sysvinit
|
||||
bb mk tinylogin
|
||||
bb mk util-linux
|
||||
bb mk which
|
||||
|
||||
comment "database"
|
||||
EXE mk mysql_client
|
||||
EXE mk sqlite
|
||||
|
||||
comment "editors"
|
||||
EXE mk ed
|
||||
EXE mk nano
|
||||
EXE mk uemacs
|
||||
EXE mk vim
|
||||
|
||||
comment "Networking applications"
|
||||
AVR mk argus FAIL "Machine avr32 not recognized"
|
||||
EXE mk avahi OK
|
||||
EXE mk axel OK
|
||||
bb mk boa
|
||||
AVR mk bind FAIL "Machine avr32 not recognized"
|
||||
EXE mk bridge OK
|
||||
bb mk dhcp
|
||||
EXE mk dnsmasq OK
|
||||
EXE mk dropbear OK
|
||||
EXE mk ethtool OK
|
||||
EXE mk haserl OK
|
||||
skip mk hostap FAIL "Needs PCMCIA in kernel"
|
||||
EXE mk ifplugd OK
|
||||
skip mk irda-utils FAIL "Makefile is invalid"
|
||||
EXE mk iperf OK
|
||||
EXE mk iproute2 OK
|
||||
EXE mk ipsec-tools FAIL "Compile Error"
|
||||
EXE mk iptables OK
|
||||
AVR mk kismet FAIL "Machine avr32 not recognized"
|
||||
EXE mk l2tp OK
|
||||
EXE mk libcgi OK
|
||||
EXE mk libcgicc OK
|
||||
EXE mk libosip2 FAIL
|
||||
AVR mk libeXosip2 OK "Machine avr32 not recognized"
|
||||
EXE mk libpcap OK
|
||||
EXE mk libupnp OK
|
||||
bb mk lighttpd
|
||||
EXE mk links OK
|
||||
EXE mk lrzsz OK
|
||||
EXE mk mdnsresponder OK "Unable to recognise the format of the input file build/prod/mdnsd"
|
||||
bb mk microcom
|
||||
EXE mk mii-diag OK
|
||||
EXE mk mrouted OK
|
||||
EXE mk mutt FAIL "Compile Error"
|
||||
EXE mk nbd OK
|
||||
EXE mk ncftp OK "Depends on ncurses"
|
||||
EXE mk neon OK
|
||||
bb mk netcat
|
||||
EXE mk netkitbase OK
|
||||
EXE mk netkittelnet OK
|
||||
EXE mk netplug OK
|
||||
EXE mk netsnmp OK
|
||||
EXE mk nfs-utils OK
|
||||
EXE mk ntp OK
|
||||
EXE mk olsr OK
|
||||
AVR mk ntpd FAIL "Machine avr32 not recognized"
|
||||
EXE mk openssh OK
|
||||
EXE mk openssl OK
|
||||
EXE mk libcurl FAIL "ELF file data encoding not little-endian"
|
||||
AVR mk openvpn FAIL "Machine avr32 not recognized"
|
||||
EXE mk openswan FAIL "Compile Error"
|
||||
EXE mk portmap OK
|
||||
EXE mk pppd OK
|
||||
EXE mk rp-pppoe OK
|
||||
EXE mk pptp-linux OK
|
||||
EXE mk proftpd OK
|
||||
skip mk quagga DISABLED
|
||||
EXE mk rsync FAIL "error: conflicting types"
|
||||
EXE mk samba OK
|
||||
EXE mk socat OK
|
||||
AVR mk stunnel FAIL "Machine avr32 not recognized"
|
||||
EXE mk tcpdump OK
|
||||
EXE mk tftpd OK
|
||||
bb mk thttpd
|
||||
bb mk tinyhttpd
|
||||
skip mk tn5250 FAIL ""
|
||||
EXE mk ttcp OK
|
||||
bb mk udhcp
|
||||
EXE mk udpcast OK
|
||||
EXE mk vpnc OK
|
||||
EXE mk vsftpd OK
|
||||
AVR mk vtun FAIL "Machine avr32 not recognized"
|
||||
EXE mk webif OK
|
||||
bb mk wget
|
||||
EXE mk wireless-tools OK
|
||||
|
||||
comment "Hardware handling / blockdevices and filesystem maintenance"
|
||||
EXE mk acpid OK
|
||||
EXE mk dbus OK
|
||||
AVR mk dbus-glib FAIL "Machine avr32 not recognized"
|
||||
EXE mk devmem2 OK
|
||||
EXE mk dm OK
|
||||
AVR mk dmraid FAIL "Machine avr32 not recognized"
|
||||
EXE mk e2fsprogs OK
|
||||
EXE mk eeprog OK
|
||||
EXE mk fconfig OK
|
||||
EXE mk fis OK
|
||||
EXE mk libfuse OK
|
||||
EXE mk gadgetfs-test OK
|
||||
AVR mk hal FAIL "Machine avr32 not recognized"
|
||||
bb mk hdparm
|
||||
bb mk hotplug
|
||||
EXE mk hwdata OK
|
||||
EXE mk i2c-tools OK
|
||||
EXE mk input-tools OK
|
||||
EXE mk iostat OK
|
||||
EXE mk libaio OK
|
||||
skip mk libraw1394
|
||||
EXE mk libusb OK
|
||||
EXE mk lm-sensors OK
|
||||
EXE mk lvm2 OK
|
||||
EXE mk mdadm OK
|
||||
EXE mk memtester OK
|
||||
EXE mk mkdosfs OK
|
||||
EXE mk mtd OK
|
||||
AVR mk ntfs-3g FAIL "Machine avr32 not recognized"
|
||||
EXE mk pciutils FAIL "Compile Error"
|
||||
skip mk pcmcia DISABLED ""
|
||||
EXE mk setserial OK
|
||||
bb mk sfdisk
|
||||
AVR mk smartmontools FAIL "Machine avr32 not recognized"
|
||||
EXE mk usbmount OK
|
||||
EXE mk usbutils OK
|
||||
EXE mk wipe OK
|
||||
skip mk xfsprogs DISABLED
|
||||
|
||||
comment "Interpreter languages / Scripting"
|
||||
EXE mk lua OK
|
||||
EXE mk microperl FAIL "No rule to create target"
|
||||
EXE mk python OK
|
||||
AVR mk ruby FAIL "Machine avr32 not recognized"
|
||||
EXE mk tcl FAIL "Compile Error"
|
||||
EXE mk php FAIL "undefined references to acs_map"
|
||||
|
||||
comment "text rendering applications"
|
||||
EXE mk dialog OK
|
||||
|
||||
comment "Audio and video libraries and applications"
|
||||
EXE mk alsa-lib OK
|
||||
EXE mk alsa-utils FAIL "undefined references to acs_map"
|
||||
EXE mk asterisk FAIL "Patch fails"
|
||||
EXE mk aumix OK
|
||||
EXE mk gstreamer OK
|
||||
EXE mk gst-plugins-base OK
|
||||
EXE mk gst-plugins-good FAIL "/usr/lib/libaa.so: could not read symbols: File in wrong format"
|
||||
EXE mk gst-plugins-ugly OK
|
||||
EXE mk libid3tag OK
|
||||
EXE mk libmad OK
|
||||
EXE mk libmpd OK
|
||||
EXE mk libogg OK
|
||||
EXE mk libsndfile FAIL "Error: operand out of range (AVR32 specific compile error)"
|
||||
EXE mk libtheora FAIL "./vp3huff: cannot execute binary file"
|
||||
EXE mk libvorbis OK
|
||||
EXE mk madplay OK
|
||||
EXE mk mpg123 OK
|
||||
EXE mk mplayer OK
|
||||
EXE mk speex OK
|
||||
EXE mk festival FAIL "undefined reference to EST_TokenStream"
|
||||
EXE mk vlc FAIL "configure:Cannot find libmad library."
|
||||
|
||||
comment "Graphic libraries and applications (graphic/text)"
|
||||
|
||||
comment "text rendering libraries"
|
||||
EXE mk ncurses OK
|
||||
EXE mk newt OK
|
||||
EXE mk slang OK
|
||||
|
||||
comment "graphic libraries"
|
||||
EXE mk directfb OK
|
||||
EXE mk directfb-examples OK
|
||||
EXE mk fbdump OK
|
||||
EXE mk linux-fusion OK
|
||||
EXE mk imagemagick FAIL "cannot run test program while cross compiling"
|
||||
EXE mk jpeg OK
|
||||
EXE mk libart OK
|
||||
EXE mk libpng OK
|
||||
EXE mk libungif OK
|
||||
EXE mk lite OK
|
||||
EXE mk pixman OK
|
||||
EXE mk sawman FAIL "LDFLAGS has changed since the previous run"
|
||||
EXE mk sdl OK
|
||||
EXE mk sdl_image OK
|
||||
EXE mk sdl_mixer OK
|
||||
EXE mk SDL_net OK
|
||||
EXE mk sdl_ttf OK
|
||||
EXE mk tiff OK
|
||||
|
||||
comment "busybox graphic applications"
|
||||
comment " --> May be broken in busybox"
|
||||
EXE mk fbv OK
|
||||
EXE mk fbset OK
|
||||
|
||||
comment "other GUIs"
|
||||
skip mk busybox DISABLED
|
||||
bb mk bash
|
||||
bb mk bzip2
|
||||
bb mk coreutils
|
||||
bb mk diffutils
|
||||
bb mk findutils
|
||||
EXE mk flex OK
|
||||
bb mk gawk
|
||||
bb mk grep
|
||||
EXE mk make OK
|
||||
comment # Other development stuff
|
||||
EXE mk autoconf OK
|
||||
EXE mk automake OK
|
||||
EXE mk bison OK
|
||||
EXE mk cvs OK
|
||||
EXE mk distcc OK
|
||||
EXE mk dmalloc OK
|
||||
EXE mk fakeroot OK
|
||||
EXE mk gettext OK
|
||||
EXE mk libgmp OK
|
||||
EXE mk gperf OK
|
||||
EXE mk libmpfr OK
|
||||
EXE mk libtool OK
|
||||
EXE mk libiconv OK
|
||||
EXE mk popt OK
|
||||
EXE mk m4 OK
|
||||
skip mk mpatrol DISABLED "Needs gdb to build, and GDB_VERSION is not defined"
|
||||
EXE mk oprofile FAIL "error: bfd library not found"
|
||||
EXE mk pkgconfig OK
|
||||
EXE mk readline OK
|
||||
skip mk valgrind DISABLED "x86 specific"
|
||||
EXE mk pcre OK
|
||||
comment Other stuff
|
||||
EXE mk at OK
|
||||
EXE mk beecrypt OK
|
||||
AVR mk berkeleydb OK "Machine avr32 not recognized"
|
||||
EXE mk bsdiff OK
|
||||
bb mk bootutils
|
||||
EXE mk cups OK
|
||||
EXE mk customize OK
|
||||
bb mk dash
|
||||
EXE mk file OK
|
||||
EXE mk gamin OK
|
||||
EXE mk icu OK
|
||||
AVR mk kexec OK "Machine avr32 not recognized"
|
||||
bb mk less
|
||||
EXE mk libconfig OK
|
||||
EXE mk libconfuse OK
|
||||
EXE mk libdaemon OK
|
||||
EXE mk libelf OK
|
||||
AVR mk libevent OK "Machine avr32 not recognized"
|
||||
skip mk libfloat DISABLED "Obsolete package"
|
||||
EXE mk libgcrypt OK
|
||||
EXE mk libgpg-error OK
|
||||
EXE mk liblockfile OK
|
||||
EXE mk liboil OK
|
||||
EXE mk libsysfs OK
|
||||
EXE mk lockfile-progs OK
|
||||
EXE mk logrotate OK
|
||||
EXE mk lsof OK
|
||||
skip mk ltp-testsuite DISABLED
|
||||
AVR mk ltrace OK "Machine avr32 not recognized"
|
||||
skip mk ltt DISABLED "Obsolete package ltt-ng"
|
||||
EXE mk memstat OK
|
||||
EXE mk module-init-tools OK "Use this instead of modutils"
|
||||
skip mk modutils DISABLED "This package is for the Linux 2.4 kernel"
|
||||
EXE mk ng-spice-rework FAIL "Environment change"
|
||||
bb mk procps
|
||||
bb mk psmisc
|
||||
EXE mk screen OK
|
||||
EXE mk strace OK
|
||||
EXE mk sudo OK
|
||||
bb mk sysklogd
|
||||
comment busybox has init and the runit stuff
|
||||
bb mk sysvinit
|
||||
bb mk tinylogin
|
||||
bb mk util-linux
|
||||
bb mk which
|
||||
comment database
|
||||
EXE mk mysql_client OK
|
||||
EXE mk sqlite OK
|
||||
comment editors
|
||||
EXE mk ed OK
|
||||
EXE mk nano OK
|
||||
EXE mk uemacs OK
|
||||
EXE mk vim FAIL "Cannot find source"
|
||||
comment Networking applications
|
||||
AVR mk argus OK "Machine avr32 not recognized"
|
||||
EXE mk avahi OK
|
||||
EXE mk axel OK
|
||||
bb mk boa
|
||||
AVR mk bind OK "Machine avr32 not recognized"
|
||||
EXE mk bridge OK
|
||||
bb mk dhcp
|
||||
EXE mk dnsmasq OK
|
||||
EXE mk dropbear OK
|
||||
EXE mk ethtool OK
|
||||
EXE mk haserl OK
|
||||
skip mk hostap DISABLED "Needs PCMCIA in kernel"
|
||||
EXE mk ifplugd OK
|
||||
skip mk irda-utils DISABLED "Makefile is invalid"
|
||||
EXE mk iperf OK
|
||||
EXE mk iproute2 OK
|
||||
EXE mk ipsec-tools OK
|
||||
EXE mk iptables OK
|
||||
AVR mk kismet OK "Machine avr32 not recognized"
|
||||
EXE mk l2tp OK
|
||||
EXE mk libcgi OK
|
||||
EXE mk libcgicc OK
|
||||
EXE mk libosip2 OK
|
||||
AVR mk libeXosip2 OK "Machine avr32 not recognized"
|
||||
EXE mk libpcap OK
|
||||
EXE mk libupnp OK
|
||||
bb mk lighttpd
|
||||
EXE mk links OK
|
||||
EXE mk lrzsz OK
|
||||
EXE mk mdnsresponder OK
|
||||
bb mk microcom
|
||||
EXE mk mii-diag OK
|
||||
EXE mk mrouted OK
|
||||
EXE mk mutt FAIL "Compile Error"
|
||||
EXE mk nbd OK
|
||||
EXE mk ncftp OK
|
||||
EXE mk neon OK
|
||||
bb mk netcat
|
||||
EXE mk netkitbase OK
|
||||
EXE mk netkittelnet OK
|
||||
EXE mk netplug OK
|
||||
EXE mk netsnmp OK
|
||||
EXE mk nfs-utils OK
|
||||
EXE mk ntp FAIL ""
|
||||
EXE mk olsr OK
|
||||
AVR mk ntpd OK "Machine avr32 not recognized"
|
||||
EXE mk openssh OK
|
||||
EXE mk openssl OK
|
||||
EXE mk libcurl FAIL "ELF file data encoding not little-endian"
|
||||
AVR mk openvpn OK "Machine avr32 not recognized"
|
||||
EXE mk openswan FAIL "Compile Error"
|
||||
EXE mk portmap OK
|
||||
EXE mk pppd OK
|
||||
EXE mk rp-pppoe OK
|
||||
EXE mk pptp-linux OK
|
||||
EXE mk proftpd OK
|
||||
skip mk quagga DISABLED
|
||||
EXE mk rsync OK
|
||||
EXE mk samba OK
|
||||
EXE mk socat OK
|
||||
AVR mk stunnel OK "Machine avr32 not recognized"
|
||||
EXE mk tcpdump OK
|
||||
EXE mk tftpd OK
|
||||
bb mk thttpd
|
||||
bb mk tinyhttpd
|
||||
skip mk tn5250 DISABLED
|
||||
EXE mk ttcp OK
|
||||
bb mk udhcp
|
||||
EXE mk udpcast OK
|
||||
EXE mk vpnc OK
|
||||
EXE mk vsftpd OK
|
||||
AVR mk vtun OK "Machine avr32 not recognized"
|
||||
EXE mk webif OK
|
||||
bb mk wget
|
||||
EXE mk wireless-tools OK
|
||||
comment Hardware handling / blockdevices and filesystem maintenance
|
||||
EXE mk acpid OK
|
||||
EXE mk dbus OK
|
||||
AVR mk dbus-glib OK "Machine avr32 not recognized"
|
||||
EXE mk devmem2 OK
|
||||
EXE mk dm OK
|
||||
AVR mk dmraid OK "Machine avr32 not recognized"
|
||||
EXE mk e2fsprogs OK
|
||||
EXE mk eeprog OK
|
||||
EXE mk fconfig OK
|
||||
EXE mk fis OK
|
||||
EXE mk libfuse OK
|
||||
EXE mk gadgetfs-test OK
|
||||
AVR mk hal FAIL "Machine avr32 not recognized"
|
||||
bb mk hdparm
|
||||
bb mk hotplug
|
||||
EXE mk hwdata OK
|
||||
EXE mk i2c-tools OK
|
||||
EXE mk input-tools OK
|
||||
EXE mk iostat OK
|
||||
EXE mk libaio OK
|
||||
skip mk libraw1394 DISABLED
|
||||
EXE mk libusb OK
|
||||
EXE mk lm-sensors OK
|
||||
EXE mk lvm2 OK
|
||||
EXE mk mdadm OK
|
||||
EXE mk memtester OK
|
||||
EXE mk mkdosfs OK
|
||||
EXE mk mtd OK
|
||||
AVR mk ntfs-3g OK "Machine avr32 not recognized"
|
||||
EXE mk pciutils OK
|
||||
skip mk pcmcia DISABLED
|
||||
EXE mk setserial OK
|
||||
bb mk sfdisk
|
||||
AVR mk smartmontools OK "Machine avr32 not recognized"
|
||||
EXE mk usbmount OK
|
||||
EXE mk usbutils OK
|
||||
EXE mk wipe OK
|
||||
skip mk xfsprogs DISABLED
|
||||
comment Interpreter languages / Scripting
|
||||
EXE mk lua OK
|
||||
EXE mk microperl OK
|
||||
EXE mk python OK
|
||||
AVR mk ruby FAIL "can't find header files for ruby,Machine avr32 not recognized"
|
||||
EXE mk tcl FAIL "cannot find definition of 'struct stat'; Need __XOPEN"
|
||||
EXE mk php OK
|
||||
comment text rendering applications
|
||||
EXE mk dialog OK
|
||||
comment Audio and video libraries and applications
|
||||
EXE mk alsa-lib OK
|
||||
EXE mk alsa-utils OK
|
||||
EXE mk asterisk FAIL "Patch fails"
|
||||
EXE mk aumix OK
|
||||
EXE mk gstreamer OK
|
||||
EXE mk gst-plugins-base OK
|
||||
EXE mk gst-plugins-good FAIL "/usr/lib/libaa.so: could not read symbols: File in wrong format"
|
||||
EXE mk gst-plugins-ugly OK
|
||||
EXE mk libid3tag OK
|
||||
EXE mk libmad OK
|
||||
EXE mk libmpd OK
|
||||
EXE mk libogg OK
|
||||
EXE mk libsndfile OK "Error: operand out of range (AVR32 specific compile error)"
|
||||
EXE mk libtheora FAIL "./vp3huff: cannot execute binary file"
|
||||
EXE mk libvorbis OK
|
||||
EXE mk madplay OK
|
||||
EXE mk mpg123 OK
|
||||
EXE mk mplayer OK
|
||||
EXE mk speex OK
|
||||
EXE mk festival FAIL "undefined reference to EST_TokenStream"
|
||||
EXE mk vlc FAIL "configure:Cannot find libmad library."
|
||||
comment Graphic libraries and applications (graphic/text)
|
||||
comment text rendering libraries
|
||||
EXE mk ncurses OK
|
||||
EXE mk newt OK
|
||||
EXE mk slang OK
|
||||
comment graphic libraries
|
||||
EXE mk directfb OK
|
||||
EXE mk directfb-examples OK
|
||||
EXE mk fbdump OK
|
||||
EXE mk linux-fusion OK
|
||||
EXE mk imagemagick FAIL "cannot run test program while cross compiling"
|
||||
EXE mk jpeg OK
|
||||
EXE mk libart OK
|
||||
EXE mk libpng OK
|
||||
EXE mk libungif OK
|
||||
EXE mk lite OK
|
||||
EXE mk pixman OK
|
||||
EXE mk sawman OK
|
||||
EXE mk sdl OK
|
||||
EXE mk sdl_image OK
|
||||
EXE mk sdl_mixer OK
|
||||
EXE mk SDL_net OK
|
||||
EXE mk sdl_ttf OK
|
||||
EXE mk tiff OK
|
||||
comment busybox graphic applications
|
||||
comment --> May be broken in busybox
|
||||
EXE mk fbv OK
|
||||
EXE mk fbset OK
|
||||
comment other GUIs
|
||||
SKIP
|
||||
EXE mk qte DISABLED
|
||||
EXE mk qtopia4 DISABLED
|
||||
EXE mk x11r7 DISABLED
|
||||
EXE mk qte DISABLED
|
||||
EXE mk qtopia4 DISABLED
|
||||
EXE mk x11r7 DISABLED
|
||||
RESTART
|
||||
EXE mk atk
|
||||
EXE mk cairo
|
||||
EXE mk pango
|
||||
EXE mk libdrm
|
||||
EXE mk liberation
|
||||
EXE mk libglade
|
||||
EXE mk libglib12
|
||||
EXE mk libglib2
|
||||
EXE mk libgtk12
|
||||
EXE mk libgtk2
|
||||
EXE mk gtk2-engines
|
||||
EXE mk gtk2-themes
|
||||
EXE mk libsexy
|
||||
EXE mk fltk
|
||||
EXE mk openmotif
|
||||
EXE mk fontconfig
|
||||
EXE mk freetype
|
||||
EXE mk tslib
|
||||
EXE mk atk OK
|
||||
EXE mk cairo OK
|
||||
EXE mk pango OK
|
||||
EXE mk libdrm OK
|
||||
EXE mk liberation OK
|
||||
EXE mk libglade OK
|
||||
EXE mk libglib12 OK
|
||||
EXE mk libglib2 OK
|
||||
EXE mk libgtk12 FAIL "Depends on X11"
|
||||
EXE mk libgtk2 OK
|
||||
EXE mk gtk2-engines OK
|
||||
EXE mk gtk2-theme-hicolour FAIL "Fails in dbus"
|
||||
EXE mk libsexy OK
|
||||
EXE mk fltk OK
|
||||
skip mk openmotif DISABLED
|
||||
RESTART
|
||||
EXE mk fontconfig OK
|
||||
EXE mk freetype OK
|
||||
EXE mk tslib OK
|
||||
SKIP
|
||||
EXE mk webkit
|
||||
skip mk startup-notification DISABLED "Depends on X11"
|
||||
|
||||
comment "X Window managers"
|
||||
EXE mk matchbox
|
||||
EXE mk metacity
|
||||
EXE mk blackbox
|
||||
|
||||
comment "X applications"
|
||||
EXE mk alsamixergui
|
||||
EXE mk dillo
|
||||
EXE mk docker
|
||||
EXE mk gqview
|
||||
EXE mk gmpc
|
||||
EXE mk gtkperf
|
||||
EXE mk leafpad
|
||||
EXE mk midori
|
||||
EXE mk pcmanfm
|
||||
EXE mk rdesktop
|
||||
EXE mk rxvt
|
||||
EXE mk sylpheed
|
||||
EXE mk synergy
|
||||
EXE mk torsmo
|
||||
EXE mk x11vnc
|
||||
EXE mk xpdf
|
||||
EXE mk xstroke
|
||||
EXE mk xvkbd
|
||||
EXE mk webkit
|
||||
skip mk startup-notification DISABLED "Depends on X11"
|
||||
comment X Window managers
|
||||
EXE mk matchbox
|
||||
EXE mk metacity
|
||||
EXE mk blackbox
|
||||
comment X applications
|
||||
EXE mk alsamixergui
|
||||
EXE mk dillo
|
||||
EXE mk docker
|
||||
EXE mk gqview
|
||||
EXE mk gmpc
|
||||
EXE mk gtkperf
|
||||
EXE mk leafpad
|
||||
EXE mk midori
|
||||
EXE mk pcmanfm
|
||||
EXE mk rdesktop
|
||||
EXE mk rxvt
|
||||
EXE mk sylpheed
|
||||
EXE mk synergy
|
||||
EXE mk torsmo
|
||||
EXE mk x11vnc
|
||||
EXE mk xpdf
|
||||
EXE mk xstroke
|
||||
EXE mk xvkbd
|
||||
RESTART
|
||||
|
||||
comment "Compressors / decompressors"
|
||||
EXE mk lzo OK
|
||||
EXE mk lzma-host OK
|
||||
EXE mk lzma-target OK
|
||||
EXE mk zlib OK
|
||||
|
||||
comment "Package managers"
|
||||
EXE mk ipkg OK
|
||||
EXE mk portage OK
|
||||
|
||||
comment "XML handling"
|
||||
EXE mk expat OK
|
||||
EXE mk ezxml OK
|
||||
EXE mk libxml2 OK
|
||||
EXE mk libxslt OK
|
||||
AVR mk xerces FAIL "Machine avr32 not recognized"
|
||||
skip mk java DISABLED
|
||||
skip mk games DISABLED
|
||||
|
||||
comment Compressors / decompressors
|
||||
EXE mk lzo OK
|
||||
EXE mk lzma-host OK
|
||||
EXE mk lzma-target OK
|
||||
EXE mk zlib OK
|
||||
comment Package managers
|
||||
EXE mk ipkg OK
|
||||
EXE mk portage OK
|
||||
comment XML handling
|
||||
EXE mk expat OK
|
||||
EXE mk ezxml OK
|
||||
EXE mk libxml2 OK
|
||||
EXE mk libxslt OK
|
||||
AVR mk xerces OK "Machine avr32 not recognized"
|
||||
skip mk java DISABLED
|
||||
skip mk games DISABLED
|
||||
|
||||
@@ -9,15 +9,19 @@ usage() {
|
||||
cd "${1:-.}" || usage
|
||||
|
||||
# Check for git and a git repo.
|
||||
if head=`git rev-parse --verify HEAD 2>/dev/null`; then
|
||||
if head=`git rev-parse --verify --short HEAD 2>/dev/null`; then
|
||||
# Do we have an untagged version?
|
||||
if git name-rev --tags HEAD | grep -E '^HEAD[[:space:]]+(.*~[0-9]*|undefined)$' > /dev/null; then
|
||||
git describe 2>/dev/null | awk -F- '{printf("-%05d-%s", $(NF-1),$(NF))}'
|
||||
if tag=`git describe 2>/dev/null`; then
|
||||
echo $tag | awk -F- '{printf("-%05d-%s", $(NF-1),$(NF))}'
|
||||
else
|
||||
printf '%s%s' -g $head
|
||||
fi
|
||||
fi
|
||||
|
||||
# Is this git on svn?
|
||||
if git config --get svn-remote.svn.url >/dev/null; then
|
||||
printf -- '-svn%s' "`git svn find-rev $head`"
|
||||
printf -- '-svn%s' "`git-svn find-rev $head`"
|
||||
fi
|
||||
|
||||
# Are there uncommitted changes?
|
||||
@@ -52,13 +56,13 @@ if hgid=`hg id 2>/dev/null`; then
|
||||
fi
|
||||
|
||||
# Check for svn and a svn repo.
|
||||
if rev=`svn info 2>/dev/null | grep '^Revision'`; then
|
||||
if rev=`svn info 2>/dev/null | grep '^Last Changed Rev'`; then
|
||||
rev=`echo $rev | awk '{print $NF}'`
|
||||
changes=`svn status 2>/dev/null | grep '^[AMD]' | wc -l`
|
||||
|
||||
# Are there uncommitted changes?
|
||||
if [ $changes != 0 ]; then
|
||||
printf -- '-svn%s%s%s' "$rev" -dirty "$changes"
|
||||
printf -- '-svn%s%s' "$rev" -dirty
|
||||
else
|
||||
printf -- '-svn%s' "$rev"
|
||||
fi
|
||||
|
||||
@@ -18,7 +18,7 @@ config BR2_TARGET_TEST_PACKAGES
|
||||
select BR2_PACKAGE_BZIP2
|
||||
select BR2_PACKAGE_FLEX
|
||||
select BR2_PACKAGE_FLEX_LIBFL
|
||||
select BR2_PACKAGE_GCC_TARGET
|
||||
# BR2_PACKAGE_GCC_TARGET is not set
|
||||
select BR2_PACKAGE_MAKE
|
||||
select BR2_PACKAGE_AUTOCONF
|
||||
select BR2_PACKAGE_AUTOMAKE
|
||||
@@ -119,7 +119,6 @@ config BR2_TARGET_TEST_PACKAGES
|
||||
select BR2_PACKAGE_IPSEC_TOOLS_READLINE
|
||||
# BR2_PACKAGE_IPSEC_TOOLS_IPV6 is not set
|
||||
# BR2_PACKAGE_IPSEC_TOOLS_LIBS is not set
|
||||
|
||||
select BR2_PACKAGE_IPTABLES
|
||||
select BR2_PACKAGE_KISMET
|
||||
select BR2_PACKAGE_L2TP
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
ARCH=`make -f scripts/test/Makefile ARCH`
|
||||
|
||||
DATE=`date +%Y%m%d`
|
||||
LOGFILE=build-results-${DATE}-${ARCH}.log
|
||||
function mk()
|
||||
{
|
||||
scripts/mkpkg $1 $2 "$3"
|
||||
scripts/mkpkg $1 $2 "$3" | tee -a ${LOGFILE}
|
||||
}
|
||||
|
||||
function header()
|
||||
{
|
||||
echo "#!/bin/sh"
|
||||
echo "#!/bin/sh" | tee -a ${LOGFILE}
|
||||
echo "source \"scripts/testheader.inc\""
|
||||
|
||||
}
|
||||
@@ -17,51 +18,51 @@ busybox=0
|
||||
|
||||
function SKIP()
|
||||
{
|
||||
echo SKIP
|
||||
echo SKIP | tee -a ${LOGFILE}
|
||||
active=0
|
||||
}
|
||||
|
||||
function RESTART()
|
||||
{
|
||||
echo RESTART
|
||||
echo RESTART | tee -a ${LOGFILE}
|
||||
active=1
|
||||
}
|
||||
|
||||
function EXE()
|
||||
{
|
||||
printf "EXE "
|
||||
printf "EXE " | tee -a ${LOGFILE}
|
||||
if [ ${active} == 1 ] ; then
|
||||
$1 $2 $3 "$4"
|
||||
return 0;
|
||||
else
|
||||
printf "%-8s" "$1"
|
||||
printf "%-32s" "$2"
|
||||
printf "%-16s" "$3"
|
||||
printf "%-8s" "$1" | tee -a ${LOGFILE}
|
||||
printf "%-32s" "$2" | tee -a ${LOGFILE}
|
||||
printf "%-16s" "$3" | tee -a ${LOGFILE}
|
||||
if [ "${4}X" != "X" ] ; then
|
||||
printf "%-64s" "\"$4\""
|
||||
printf "%-64s" "\"$4\"" | tee -a ${LOGFILE}
|
||||
fi
|
||||
echo
|
||||
echo | tee -a ${LOGFILE}
|
||||
return 1;
|
||||
fi
|
||||
}
|
||||
|
||||
function AVR()
|
||||
{
|
||||
printf "AVR "
|
||||
printf "AVR " | tee -a ${LOGFILE}
|
||||
if [ "${ARCH}X" == "avr32X" ] ; then
|
||||
echo "mk $2 UNSUPPORTED \"$4\" $5 $6"
|
||||
echo "mk $2 UNSUPPORTED \"$4\" $5 $6" | tee -a ${LOGFILE}
|
||||
return 1;
|
||||
elif [ ${active} == 1 ] ; then
|
||||
$1 $2 "$3" "$4"
|
||||
return 0;
|
||||
else
|
||||
printf "%-8s" "$1"
|
||||
printf "%-32s" "$2"
|
||||
printf "%-16s" "$3"
|
||||
printf "%-8s" "$1" | tee -a ${LOGFILE}
|
||||
printf "%-32s" "$2" | tee -a ${LOGFILE}
|
||||
printf "%-16s" "$3" | tee -a ${LOGFILE}
|
||||
if [ "${4}X" != "X" ] ; then
|
||||
printf "%-64s" "\"$4\"";
|
||||
printf "%-64s" "\"$4\"" | tee -a ${LOGFILE}
|
||||
fi
|
||||
echo
|
||||
echo | tee -a ${LOGFILE}
|
||||
return 1;
|
||||
fi
|
||||
}
|
||||
@@ -69,53 +70,53 @@ function AVR()
|
||||
|
||||
function skip()
|
||||
{
|
||||
printf "skip %-8s" "$1"
|
||||
printf "%-32s" "$2"
|
||||
printf "skip %-8s" "$1" | tee -a ${LOGFILE}
|
||||
printf "%-32s" "$2" | tee -a ${LOGFILE}
|
||||
if [ "$3X" == "OKX" ] ; then
|
||||
printf "%-16s" "DISABLED"
|
||||
printf "%-16s" "DISABLED" | tee -a ${LOGFILE}
|
||||
if [ "${4}X" != "X" ] ; then
|
||||
printf "%-64s" "\"$4\""
|
||||
printf "%-64s" "\"$4\"" | tee -a ${LOGFILE}
|
||||
fi
|
||||
elif [ "$3X" == "FAILX" ] ; then
|
||||
printf "%-16s" "DISABLED"
|
||||
printf "%-16s" "DISABLED" | tee -a ${LOGFILE}
|
||||
if [ "${4}X" != "X" ] ; then
|
||||
printf "%-64s" "\"$4\""
|
||||
printf "%-64s" "\"$4\"" | tee -a ${LOGFILE}
|
||||
fi
|
||||
elif [ "$3X" == "BROKENX" ] ; then
|
||||
printf "%-16s" "DISABLED"
|
||||
printf "%-16s" "DISABLED" | tee -a ${LOGFILE}
|
||||
if [ "${4}X" != "X" ] ; then
|
||||
printf "%-64s" "\"$4\""
|
||||
printf "%-64s" "\"$4\"" | tee -a ${LOGFILE}
|
||||
fi
|
||||
elif [ "$3X" == "DISABLEDX" ] ; then
|
||||
printf "%-16s" "DISABLED"
|
||||
printf "%-16s" "DISABLED" | tee -a ${LOGFILE}
|
||||
if [ "${4}X" != "X" ] ; then
|
||||
printf "%-64s" "\"$4\""
|
||||
printf "%-64s" "\"$4\"" | tee -a ${LOGFILE}
|
||||
fi
|
||||
else
|
||||
printf "%-16s" "DISABLED"
|
||||
printf "%-16s" "DISABLED" | tee -a ${LOGFILE}
|
||||
if [ "${4}X" != "X" ] ; then
|
||||
printf "%-64s" "\"$4\""
|
||||
printf "%-64s" "\"$4\"" | tee -a ${LOGFILE}
|
||||
fi
|
||||
fi
|
||||
echo
|
||||
echo | tee -a ${LOGFILE}
|
||||
}
|
||||
|
||||
function bb()
|
||||
{
|
||||
printf "%-8s" "bb"
|
||||
printf "%-8s" "bb" | tee -a ${LOGFILE}
|
||||
if [ ${busybox} == 1 ] ; then
|
||||
printf "%-8s" "$1"
|
||||
printf "%-8s" "$1" | tee -a ${LOGFILE}
|
||||
$1 $2 $3 $4 $5 $6
|
||||
return 0;
|
||||
else
|
||||
echo "$1 $2 $3 $4 $5 $6"
|
||||
echo "$1 $2 $3 $4 $5 $6" | tee -a ${LOGFILE}
|
||||
return 1;
|
||||
fi
|
||||
}
|
||||
|
||||
function comment()
|
||||
{
|
||||
echo "comment $1"
|
||||
echo "comment $1" | tee -a ${LOGFILE}
|
||||
}
|
||||
|
||||
# Enable HASERL
|
||||
|
||||
@@ -1,5 +1,17 @@
|
||||
menu "Target filesystem options"
|
||||
|
||||
config BR2_ROOTFS_PREFIX
|
||||
string "Custom root fs prefix"
|
||||
default "rootfs"
|
||||
help
|
||||
Add a custom string to the beginning of the root file system name.
|
||||
|
||||
config BR2_ROOTFS_SUFFIX
|
||||
string "Custom root fs suffix"
|
||||
default ""
|
||||
help
|
||||
Add a custom string to the end of the root file system name.
|
||||
|
||||
comment "filesystem for target device"
|
||||
|
||||
source "target/cramfs/Config.in"
|
||||
@@ -26,8 +38,7 @@ endmenu
|
||||
menu "Kernel"
|
||||
choice
|
||||
prompt "Kernel type"
|
||||
default BR2_KERNEL_LINUX_ADVANCED if BR2_TARGET_ATMEL
|
||||
default BR2_KERNEL_none if !BR2_TARGET_ATMEL
|
||||
default BR2_KERNEL_none
|
||||
|
||||
config BR2_KERNEL_none
|
||||
bool "none"
|
||||
|
||||
680
target/device/Atmel/at91rm9200df/at91rm9200df_ext_bare_defconfig
Normal file
680
target/device/Atmel/at91rm9200df/at91rm9200df_ext_bare_defconfig
Normal file
@@ -0,0 +1,680 @@
|
||||
#
|
||||
# Automatically generated make config: don't edit
|
||||
# Sat Jan 31 22:18:13 2009
|
||||
#
|
||||
BR2_HAVE_DOT_CONFIG=y
|
||||
BR2_VERSION="2009.02-svn"
|
||||
# BR2_alpha is not set
|
||||
BR2_arm=y
|
||||
# BR2_armeb is not set
|
||||
# BR2_avr32 is not set
|
||||
# BR2_cris is not set
|
||||
# BR2_ia64 is not set
|
||||
# BR2_i386 is not set
|
||||
# BR2_m68k is not set
|
||||
# BR2_mips is not set
|
||||
# BR2_mipsel is not set
|
||||
# BR2_nios2 is not set
|
||||
# BR2_powerpc is not set
|
||||
# BR2_sh is not set
|
||||
# BR2_sh64 is not set
|
||||
# BR2_sparc is not set
|
||||
# BR2_sparc64 is not set
|
||||
# BR2_x86_64 is not set
|
||||
BR2_generic_arm=y
|
||||
# BR2_arm7tdmi is not set
|
||||
# BR2_arm610 is not set
|
||||
# BR2_arm710 is not set
|
||||
# BR2_arm720t is not set
|
||||
# BR2_arm920t is not set
|
||||
# BR2_arm922t is not set
|
||||
# BR2_arm926t is not set
|
||||
# BR2_arm10t is not set
|
||||
# BR2_arm1136jf_s is not set
|
||||
# BR2_arm1176jz_s is not set
|
||||
# BR2_arm1176jzf_s is not set
|
||||
# BR2_sa110 is not set
|
||||
# BR2_sa1100 is not set
|
||||
# BR2_xscale is not set
|
||||
# BR2_iwmmxt is not set
|
||||
BR2_ARM_TYPE="GENERIC_ARM"
|
||||
BR2_ARM_OABI=y
|
||||
# BR2_ARM_EABI is not set
|
||||
BR2_ARCH="arm"
|
||||
BR2_ENDIAN="LITTLE"
|
||||
BR2_GCC_TARGET_ABI="apcs-gnu"
|
||||
|
||||
#
|
||||
# Target options
|
||||
#
|
||||
|
||||
#
|
||||
# Project Options
|
||||
#
|
||||
BR2_PROJECT="at91rm9200df_ext_bare"
|
||||
BR2_HOSTNAME="at91rm9200df"
|
||||
BR2_BANNER="Welcome to the Erik's uClibc development environment running on the AT91RM9200DF"
|
||||
|
||||
#
|
||||
# Preset Devices
|
||||
#
|
||||
# BR2_TARGET_ARMLTD is not set
|
||||
BR2_BOARD_NAME="at91rm9200df"
|
||||
BR2_BOARD_PATH="target/device/Atmel/$(BR2_BOARD_NAME)"
|
||||
BR2_TARGET_ATMEL=y
|
||||
|
||||
#
|
||||
# Atmel AT91 Specific Device Support
|
||||
#
|
||||
BR2_TARGET_AT91=y
|
||||
|
||||
#
|
||||
# Selection criteria
|
||||
#
|
||||
BR2_TARGET_ATMEL_ALL=y
|
||||
|
||||
#
|
||||
# Device Selection
|
||||
#
|
||||
BR2_TARGET_AT91RM9200=y
|
||||
# BR2_TARGET_AT91SAM9260 is not set
|
||||
# BR2_TARGET_AT91SAM9G20 is not set
|
||||
# BR2_TARGET_AT91SAM9261 is not set
|
||||
# BR2_TARGET_AT91SAM9261S is not set
|
||||
# BR2_TARGET_AT91SAM9RL64 is not set
|
||||
# BR2_TARGET_AT91SAM9263 is not set
|
||||
# BR2_TARGET_AT91SAM9G40 is not set
|
||||
# BR2_TARGET_AT91SAM9M10 is not set
|
||||
# BR2_TARGET_AT91SAM9M11 is not set
|
||||
# BR2_TARGET_AT91SAM9XE is not set
|
||||
# BR2_TARGET_AT572D940HF is not set
|
||||
# BR2_TARGET_AT91CAP9 is not set
|
||||
|
||||
#
|
||||
# Development Board Selection
|
||||
#
|
||||
BR2_TARGET_AT91RM9200DF=y
|
||||
# BR2_TARGET_AT91RM9200EK is not set
|
||||
# BR2_TARGET_AT91RM9200DK is not set
|
||||
# BR2_TARGET_AT91SAM9260DFC is not set
|
||||
# BR2_TARGET_AT91SAM9260EK is not set
|
||||
# BR2_TARGET_AT91SAM9G20DFC is not set
|
||||
# BR2_TARGET_AT91SAM9G20EK is not set
|
||||
# BR2_TARGET_AT91SAM9XEEK is not set
|
||||
# BR2_TARGET_AT91SAM9261EK is not set
|
||||
# BR2_TARGET_AT91SAM9RL64EK is not set
|
||||
# BR2_TARGET_AT91SAM9263EK is not set
|
||||
# BR2_TARGET_AT572D940DCM is not set
|
||||
# BR2_TARGET_AT91CAP9DK is not set
|
||||
# BR2_TARGET_AT91CAP9ADK is not set
|
||||
BR2_TARGET_AT91_ADVANCED_INFO=y
|
||||
|
||||
#
|
||||
# Package support
|
||||
#
|
||||
|
||||
#
|
||||
# Secondary locations
|
||||
#
|
||||
BR2_AT91_LINUXPATCH_SITE="http://maxim.org.za/AT91RM9200/2.6"
|
||||
BR2_TARGET_ATMEL_COPYTO="/tftpboot"
|
||||
# BR2_TARGET_DATAFLASHBOOT is not set
|
||||
# BR2_TARGET_KWIKBYTE is not set
|
||||
|
||||
#
|
||||
# Generic System Support
|
||||
#
|
||||
# BR2_TARGET_GENERIC_ACCESS_POINT is not set
|
||||
# BR2_TARGET_GENERIC_FIREWALL is not set
|
||||
# BR2_TARGET_GENERIC_DEV_SYSTEM is not set
|
||||
|
||||
#
|
||||
# Build options
|
||||
#
|
||||
BR2_WGET="wget --passive-ftp -nd"
|
||||
BR2_SVN_CO="svn co"
|
||||
BR2_SVN_UP="svn up"
|
||||
BR2_GIT="git clone"
|
||||
BR2_ZCAT="gzip -d -c"
|
||||
BR2_BZCAT="bzcat"
|
||||
BR2_TAR_OPTIONS=""
|
||||
BR2_DL_DIR="$(BASE_DIR)/dl"
|
||||
BR2_COPYTO=""
|
||||
|
||||
#
|
||||
# Mirrors and Download locations
|
||||
#
|
||||
BR2_PRIMARY_SITE=""
|
||||
BR2_BACKUP_SITE="http://buildroot.uclibc.org/downloads/sources/"
|
||||
BR2_SOURCEFORGE_MIRROR="easynews"
|
||||
BR2_KERNEL_MIRROR="http://www.kernel.org/pub/"
|
||||
BR2_GNU_MIRROR="http://ftp.gnu.org/pub/gnu"
|
||||
BR2_DEBIAN_MIRROR="http://ftp.debian.org"
|
||||
|
||||
#
|
||||
# Atmel Mirrors
|
||||
#
|
||||
BR2_ATMEL_MIRROR="ftp://www.at91.com/pub/buildroot"
|
||||
BR2_AT91_PATCH_MIRROR="http://maxim.org.za/AT91RM9200/2.6/"
|
||||
BR2_STAGING_DIR="$(BUILD_DIR)/staging_dir"
|
||||
# BR2_FPU_SUFFIX is not set
|
||||
BR2_TOPDIR_PREFIX=""
|
||||
BR2_TOPDIR_SUFFIX=""
|
||||
BR2_ROOTFS_PREFIX="at91rm9200df-rootfs"
|
||||
BR2_ROOTFS_SUFFIX="$(DATE)"
|
||||
BR2_GNU_BUILD_SUFFIX="pc-linux-gnu"
|
||||
BR2_GNU_TARGET_SUFFIX="linux-uclibc"
|
||||
BR2_JLEVEL=2
|
||||
# BR2_PREFER_IMA is not set
|
||||
# BR2_DEPRECATED is not set
|
||||
BR2_RECENT=y
|
||||
# BR2_CONFIG_CACHE is not set
|
||||
# BR2_ENABLE_DEBUG is not set
|
||||
BR2_STRIP_strip=y
|
||||
# BR2_STRIP_sstrip is not set
|
||||
# BR2_STRIP_none is not set
|
||||
# BR2_OPTIMIZE_0 is not set
|
||||
# BR2_OPTIMIZE_1 is not set
|
||||
BR2_OPTIMIZE_2=y
|
||||
# BR2_OPTIMIZE_3 is not set
|
||||
# BR2_OPTIMIZE_S is not set
|
||||
# BR2_PREFER_STATIC_LIB is not set
|
||||
# BR2_HAVE_MANPAGES is not set
|
||||
# BR2_HAVE_INFOPAGES is not set
|
||||
# BR2_HAVE_DOCUMENTATION is not set
|
||||
# BR2_HAVE_DEVFILES is not set
|
||||
BR2_UPDATE_CONFIG=y
|
||||
|
||||
#
|
||||
# Toolchain
|
||||
#
|
||||
# BR2_TOOLCHAIN_BUILDROOT is not set
|
||||
BR2_TOOLCHAIN_EXTERNAL=y
|
||||
# BR2_TOOLCHAIN_EXTERNAL_SOURCE is not set
|
||||
# BR2_TOOLCHAIN_SOURCE is not set
|
||||
BR2_TOOLCHAIN_EXTERNAL_PATH="$(GCCROOT)"
|
||||
BR2_TOOLCHAIN_EXTERNAL_PREFIX="$(ARCH)-linux"
|
||||
BR2_EXT_GCC_VERSION_4_1_2=y
|
||||
BR2_EXT_GCC_VERSION_4_2_1=y
|
||||
BR2_EXT_GCC_VERSION_4_2_2=y
|
||||
BR2_EXT_GCC_VERSION_4_2_3=y
|
||||
BR2_EXT_BINUTILS_VERSION_2_17=y
|
||||
BR2_EXT_BINUTILS_VERSION_2_18=y
|
||||
BR2_EXT_UCLIBC_VERSION_0_9_28_3=y
|
||||
BR2_EXT_UCLIBC_VERSION_0_9_29=y
|
||||
BR2_EXT_UCLIBC_VERSION_0_9_30=y
|
||||
BR2_TOOLCHAIN_EXTERNAL_LIB_C="libc.so.0"
|
||||
BR2_TOOLCHAIN_EXTERNAL_LIBS="ld-uClibc.so.0 libcrypt.so.0 libdl.so.0 libgcc_s.so libm.so.0 libnsl.so.0 libpthread.so.0 libresolv.so.0 librt.so.0 libutil.so.0"
|
||||
BR2_TOOLCHAIN_EXTERNAL_STRIP=y
|
||||
|
||||
#
|
||||
# Gdb Options
|
||||
#
|
||||
# BR2_PACKAGE_GDB is not set
|
||||
# BR2_PACKAGE_GDB_SERVER is not set
|
||||
# BR2_PACKAGE_GDB_HOST is not set
|
||||
|
||||
#
|
||||
# Common Toolchain Options
|
||||
#
|
||||
BR2_LARGEFILE=y
|
||||
BR2_INET_IPV6=y
|
||||
BR2_INET_RPC=y
|
||||
BR2_ENABLE_LOCALE=y
|
||||
BR2_USE_WCHAR=y
|
||||
# BR2_SOFT_FLOAT is not set
|
||||
# BR2_PTHREADS_NONE is not set
|
||||
# BR2_PTHREADS is not set
|
||||
BR2_PTHREADS_OLD=y
|
||||
# BR2_PTHREADS_NATIVE is not set
|
||||
BR2_GCC_CROSS_CXX=y
|
||||
BR2_INSTALL_LIBSTDCPP=y
|
||||
BR2_TARGET_OPTIMIZATION="-Os -pipe"
|
||||
|
||||
#
|
||||
# Package Selection for the target
|
||||
#
|
||||
# BR2_PACKAGE_BUSYBOX is not set
|
||||
|
||||
#
|
||||
# The minimum needed to build a uClibc development system
|
||||
#
|
||||
# BR2_PACKAGE_BASH is not set
|
||||
# BR2_PACKAGE_BZIP2 is not set
|
||||
# BR2_PACKAGE_COREUTILS is not set
|
||||
# BR2_PACKAGE_DIFFUTILS is not set
|
||||
# BR2_PACKAGE_FINDUTILS is not set
|
||||
# BR2_PACKAGE_FLEX is not set
|
||||
# BR2_PACKAGE_GAWK is not set
|
||||
# BR2_PACKAGE_GCC_TARGET is not set
|
||||
# BR2_PACKAGE_GREP is not set
|
||||
# BR2_PACKAGE_MAKE is not set
|
||||
# BR2_PACKAGE_PATCH is not set
|
||||
# BR2_PACKAGE_SED is not set
|
||||
# BR2_PACKAGE_TAR is not set
|
||||
|
||||
#
|
||||
# Other development stuff
|
||||
#
|
||||
# BR2_PACKAGE_AUTOCONF is not set
|
||||
# BR2_PACKAGE_AUTOMAKE is not set
|
||||
# BR2_PACKAGE_BISON is not set
|
||||
# BR2_PACKAGE_CCACHE_TARGET is not set
|
||||
# BR2_PACKAGE_CVS is not set
|
||||
# BR2_PACKAGE_DISTCC is not set
|
||||
# BR2_PACKAGE_DMALLOC is not set
|
||||
# BR2_PACKAGE_FAKEROOT is not set
|
||||
# BR2_PACKAGE_GETTEXT is not set
|
||||
# BR2_PACKAGE_LIBINTL is not set
|
||||
# BR2_PACKAGE_LIBGMP is not set
|
||||
# BR2_PACKAGE_GPERF is not set
|
||||
# BR2_PACKAGE_LIBMPFR is not set
|
||||
# BR2_PACKAGE_LIBTOOL is not set
|
||||
# BR2_PACKAGE_M4 is not set
|
||||
# BR2_PACKAGE_OPROFILE is not set
|
||||
# BR2_PACKAGE_PKGCONFIG is not set
|
||||
# BR2_PACKAGE_READLINE is not set
|
||||
# BR2_PACKAGE_PCRE is not set
|
||||
|
||||
#
|
||||
# Other stuff
|
||||
#
|
||||
# BR2_PACKAGE_AT is not set
|
||||
# BR2_PACKAGE_BEECRYPT is not set
|
||||
# BR2_PACKAGE_BERKELEYDB is not set
|
||||
# BR2_PACKAGE_BSDIFF is not set
|
||||
# BR2_PACKAGE_BOOTUTILS is not set
|
||||
# BR2_PACKAGE_CUPS is not set
|
||||
# BR2_PACKAGE_CUSTOMIZE is not set
|
||||
# BR2_PACKAGE_DASH is not set
|
||||
# BR2_PACKAGE_FILE is not set
|
||||
# BR2_PACKAGE_GAMIN is not set
|
||||
# BR2_PACKAGE_ICU is not set
|
||||
# BR2_PACKAGE_KEXEC is not set
|
||||
# BR2_PACKAGE_LESS is not set
|
||||
# BR2_PACKAGE_LIBCONFIG is not set
|
||||
# BR2_PACKAGE_LIBCONFUSE is not set
|
||||
# BR2_PACKAGE_LIBDAEMON is not set
|
||||
# BR2_PACKAGE_LIBELF is not set
|
||||
# BR2_PACKAGE_LIBEVENT is not set
|
||||
# BR2_PACKAGE_LIBGCRYPT is not set
|
||||
# BR2_PACKAGE_LIBGPG_ERROR is not set
|
||||
# BR2_PACKAGE_LIBICONV is not set
|
||||
# BR2_PACKAGE_LIBIDN is not set
|
||||
# BR2_PACKAGE_LIBLOCKFILE is not set
|
||||
# BR2_PACKAGE_LIBOIL is not set
|
||||
# BR2_PACKAGE_LIBSYSFS is not set
|
||||
# BR2_PACKAGE_LOCKFILE_PROGS is not set
|
||||
# BR2_PACKAGE_LOGROTATE is not set
|
||||
# BR2_PACKAGE_LSOF is not set
|
||||
# BR2_PACKAGE_LTP-TESTSUITE is not set
|
||||
# BR2_PACKAGE_LTRACE is not set
|
||||
# BR2_PACKAGE_MEMSTAT is not set
|
||||
# BR2_PACKAGE_MODULE_INIT_TOOLS is not set
|
||||
# BR2_PACKAGE_NG_SPICE_REWORK is not set
|
||||
# BR2_PACKAGE_POPT is not set
|
||||
# BR2_PACKAGE_PROCPS is not set
|
||||
# BR2_PACKAGE_PSMISC is not set
|
||||
# BR2_PACKAGE_SCREEN is not set
|
||||
# BR2_PACKAGE_STARTUP_NOTIFICATION is not set
|
||||
# BR2_PACKAGE_STRACE is not set
|
||||
# BR2_PACKAGE_SUDO is not set
|
||||
# BR2_PACKAGE_SYSKLOGD is not set
|
||||
# BR2_PACKAGE_SYSVINIT is not set
|
||||
# BR2_PACKAGE_UTIL-LINUX is not set
|
||||
# BR2_PACKAGE_WHICH is not set
|
||||
|
||||
#
|
||||
# Database
|
||||
#
|
||||
# BR2_PACKAGE_MYSQL_CLIENT is not set
|
||||
# BR2_PACKAGE_SQLITE is not set
|
||||
|
||||
#
|
||||
# Text editors
|
||||
#
|
||||
# BR2_PACKAGE_ED is not set
|
||||
# BR2_PACKAGE_NANO is not set
|
||||
# BR2_PACKAGE_UEMACS is not set
|
||||
# BR2_PACKAGE_VIM is not set
|
||||
|
||||
#
|
||||
# Networking
|
||||
#
|
||||
|
||||
#
|
||||
# Networking applications
|
||||
#
|
||||
# BR2_PACKAGE_ARGUS is not set
|
||||
# BR2_PACKAGE_AVAHI is not set
|
||||
# BR2_PACKAGE_AXEL is not set
|
||||
# BR2_PACKAGE_BOA is not set
|
||||
# BR2_PACKAGE_BIND is not set
|
||||
# BR2_PACKAGE_BRIDGE is not set
|
||||
# BR2_PACKAGE_ISC_DHCP is not set
|
||||
# BR2_PACKAGE_DNSMASQ is not set
|
||||
# BR2_PACKAGE_DROPBEAR is not set
|
||||
# BR2_PACKAGE_ETHTOOL is not set
|
||||
# BR2_PACKAGE_HASERL is not set
|
||||
# BR2_PACKAGE_IFPLUGD is not set
|
||||
# BR2_PACKAGE_IPERF is not set
|
||||
# BR2_PACKAGE_IPROUTE2 is not set
|
||||
|
||||
#
|
||||
# ipsec-tools - disabled (requires openssl, flex and the flex library (libfl.a) )
|
||||
#
|
||||
# BR2_PACKAGE_IPTABLES is not set
|
||||
# BR2_PACKAGE_KISMET is not set
|
||||
# BR2_PACKAGE_L2TP is not set
|
||||
# BR2_PACKAGE_LIBCGI is not set
|
||||
# BR2_PACKAGE_LIBCGICC is not set
|
||||
# BR2_PACKAGE_LIBCURL is not set
|
||||
# BR2_PACKAGE_LIBDNET is not set
|
||||
# BR2_PACKAGE_LIBEXOSIP2 is not set
|
||||
# BR2_PACKAGE_LIBOSIP2 is not set
|
||||
# BR2_PACKAGE_LIBPCAP is not set
|
||||
# BR2_PACKAGE_LIBUPNP is not set
|
||||
# BR2_PACKAGE_LIGHTTPD is not set
|
||||
# BR2_PACKAGE_LINKS is not set
|
||||
# BR2_PACKAGE_LRZSZ is not set
|
||||
# BR2_PACKAGE_MDNSRESPONDER is not set
|
||||
# BR2_PACKAGE_MICROCOM is not set
|
||||
# BR2_PACKAGE_MIIDIAG is not set
|
||||
# BR2_PACKAGE_MROUTED is not set
|
||||
# BR2_PACKAGE_MUTT is not set
|
||||
# BR2_PACKAGE_NBD is not set
|
||||
# BR2_PACKAGE_NCFTP is not set
|
||||
# BR2_PACKAGE_NEON is not set
|
||||
# BR2_PACKAGE_NETCAT is not set
|
||||
# BR2_PACKAGE_NETKITBASE is not set
|
||||
# BR2_PACKAGE_NETKITTELNET is not set
|
||||
# BR2_PACKAGE_NETPLUG is not set
|
||||
# BR2_PACKAGE_NETSNMP is not set
|
||||
# BR2_PACKAGE_NFS_UTILS is not set
|
||||
# BR2_PACKAGE_NTP is not set
|
||||
# BR2_PACKAGE_OLSR is not set
|
||||
# BR2_PACKAGE_OPENNTPD is not set
|
||||
# BR2_PACKAGE_OPENSSH is not set
|
||||
# BR2_PACKAGE_OPENSSL is not set
|
||||
# BR2_PACKAGE_OPENVPN is not set
|
||||
# BR2_PACKAGE_OPENSWAN is not set
|
||||
# BR2_PACKAGE_PORTMAP is not set
|
||||
# BR2_PACKAGE_PPPD is not set
|
||||
# BR2_PACKAGE_RADVD is not set
|
||||
# BR2_PACKAGE_RP_PPPOE is not set
|
||||
# BR2_PACKAGE_PPTP_LINUX is not set
|
||||
# BR2_PACKAGE_PROFTPD is not set
|
||||
|
||||
#
|
||||
# quagga suite
|
||||
#
|
||||
# BR2_PACKAGE_QUAGGA_ZEBRA is not set
|
||||
# BR2_PACKAGE_QUAGGA_BGPD is not set
|
||||
# BR2_PACKAGE_QUAGGA_RIPD is not set
|
||||
# BR2_PACKAGE_QUAGGA_RIPNGD is not set
|
||||
# BR2_PACKAGE_QUAGGA_OSPFD is not set
|
||||
# BR2_PACKAGE_QUAGGA_OSPF6D is not set
|
||||
# BR2_PACKAGE_QUAGGA_WATCHQUAGGA is not set
|
||||
# BR2_PACKAGE_QUAGGA_ISISD is not set
|
||||
# BR2_PACKAGE_RSYNC is not set
|
||||
# BR2_PACKAGE_SAMBA is not set
|
||||
# BR2_PACKAGE_SOCAT is not set
|
||||
# BR2_PACKAGE_STUNNEL is not set
|
||||
# BR2_PACKAGE_TCPDUMP is not set
|
||||
# BR2_PACKAGE_DHCPDUMP is not set
|
||||
# BR2_PACKAGE_TFTPD is not set
|
||||
# BR2_PACKAGE_THTTPD is not set
|
||||
# BR2_PACKAGE_TINYHTTPD is not set
|
||||
# BR2_PACKAGE_TN5250 is not set
|
||||
# BR2_PACKAGE_TTCP is not set
|
||||
# BR2_PACKAGE_UDPCAST is not set
|
||||
# BR2_PACKAGE_VPNC is not set
|
||||
# BR2_PACKAGE_VSFTPD is not set
|
||||
# BR2_PACKAGE_VTUN is not set
|
||||
# BR2_PACKAGE_WEBIF is not set
|
||||
# BR2_PACKAGE_WGET is not set
|
||||
# BR2_PACKAGE_WIRELESS_TOOLS is not set
|
||||
|
||||
#
|
||||
# Hardware handling / blockdevices and filesystem maintenance
|
||||
#
|
||||
|
||||
#
|
||||
# dbus not available (need expat or libxml2)
|
||||
#
|
||||
# BR2_PACKAGE_DEVMEM2 is not set
|
||||
# BR2_PACKAGE_DM is not set
|
||||
# BR2_PACKAGE_DMRAID is not set
|
||||
# BR2_PACKAGE_E2FSPROGS is not set
|
||||
# BR2_PACKAGE_EEPROG is not set
|
||||
# BR2_PACKAGE_FCONFIG is not set
|
||||
# BR2_PACKAGE_FIS is not set
|
||||
# BR2_PACKAGE_LIBFUSE is not set
|
||||
# BR2_PACKAGE_GADGETFS_TEST is not set
|
||||
# BR2_PACKAGE_HAL is not set
|
||||
# BR2_PACKAGE_HDPARM is not set
|
||||
# BR2_PACKAGE_HOTPLUG is not set
|
||||
# BR2_PACKAGE_HWDATA is not set
|
||||
# BR2_PACKAGE_I2C_TOOLS is not set
|
||||
# BR2_PACKAGE_INPUT_TOOLS is not set
|
||||
# BR2_PACKAGE_IOSTAT is not set
|
||||
# BR2_PACKAGE_LIBAIO is not set
|
||||
# BR2_PACKAGE_LIBRAW1394 is not set
|
||||
# BR2_PACKAGE_LIBUSB is not set
|
||||
# BR2_PACKAGE_LM_SENSORS is not set
|
||||
# BR2_PACKAGE_LVM2 is not set
|
||||
# BR2_PACKAGE_MDADM is not set
|
||||
# BR2_PACKAGE_MEMTESTER is not set
|
||||
# BR2_PACKAGE_MKDOSFS is not set
|
||||
# BR2_PACKAGE_MTD is not set
|
||||
# BR2_PACKAGE_NTFS-3G is not set
|
||||
# BR2_PACKAGE_PCIUTILS is not set
|
||||
# BR2_PACKAGE_SETSERIAL is not set
|
||||
# BR2_PACKAGE_SFDISK is not set
|
||||
# BR2_PACKAGE_SMARTMONTOOLS is not set
|
||||
# BR2_PACKAGE_UDEV is not set
|
||||
# BR2_PACKAGE_USBMOUNT is not set
|
||||
# BR2_PACKAGE_USBUTILS is not set
|
||||
# BR2_PACKAGE_WIPE is not set
|
||||
# BR2_PACKAGE_XFSPROGS is not set
|
||||
|
||||
#
|
||||
# Audio and video libraries and applications
|
||||
#
|
||||
# BR2_PACKAGE_ALSA_LIB is not set
|
||||
|
||||
#
|
||||
# asterisk - disabled (required openssl and mpg123)
|
||||
#
|
||||
# BR2_PACKAGE_AUMIX is not set
|
||||
# BR2_PACKAGE_GSTREAMER is not set
|
||||
# BR2_PACKAGE_LIBID3TAG is not set
|
||||
# BR2_PACKAGE_LIBMAD is not set
|
||||
# BR2_PACKAGE_LIBMPD is not set
|
||||
# BR2_PACKAGE_LIBOGG is not set
|
||||
# BR2_PACKAGE_LIBSNDFILE is not set
|
||||
# BR2_PACKAGE_LIBTHEORA is not set
|
||||
|
||||
#
|
||||
# libvorbis requires the package libogg to build
|
||||
#
|
||||
# BR2_PACKAGE_MADPLAY is not set
|
||||
# BR2_PACKAGE_MPG123 is not set
|
||||
# BR2_PACKAGE_MPLAYER is not set
|
||||
# BR2_PACKAGE_SPEEX is not set
|
||||
# BR2_PACKAGE_FESTIVAL is not set
|
||||
# BR2_PACKAGE_VLC is not set
|
||||
|
||||
#
|
||||
# Graphic libraries and applications (graphic/text)
|
||||
#
|
||||
|
||||
#
|
||||
# text rendering libraries
|
||||
#
|
||||
# BR2_PACKAGE_NCURSES is not set
|
||||
# BR2_PACKAGE_NEWT is not set
|
||||
# BR2_PACKAGE_SLANG is not set
|
||||
|
||||
#
|
||||
# text rendering applications
|
||||
#
|
||||
# BR2_PACKAGE_DIALOG is not set
|
||||
|
||||
#
|
||||
# graphic libraries
|
||||
#
|
||||
# BR2_PACKAGE_DIRECTFB is not set
|
||||
# BR2_PACKAGE_FBDUMP is not set
|
||||
# BR2_PACKAGE_IMAGEMAGICK is not set
|
||||
# BR2_PACKAGE_JPEG is not set
|
||||
# BR2_PACKAGE_LIBART is not set
|
||||
# BR2_PACKAGE_LIBPNG is not set
|
||||
# BR2_PACKAGE_LIBUNGIF is not set
|
||||
# BR2_PACKAGE_LINUX_FUSION is not set
|
||||
# BR2_PACKAGE_PIXMAN is not set
|
||||
# BR2_PACKAGE_SDL is not set
|
||||
# BR2_PACKAGE_TIFF is not set
|
||||
|
||||
#
|
||||
# busybox graphic applications
|
||||
#
|
||||
|
||||
#
|
||||
# --> May be broken in busybox
|
||||
#
|
||||
# BR2_PACKAGE_FBV is not set
|
||||
# BR2_PACKAGE_FBSET is not set
|
||||
|
||||
#
|
||||
# other GUIs
|
||||
#
|
||||
# BR2_PACKAGE_QTOPIA4 is not set
|
||||
BR2_PACKAGE_XSERVER_none=y
|
||||
# BR2_PACKAGE_XSERVER_xorg is not set
|
||||
# BR2_PACKAGE_XSERVER_tinyx is not set
|
||||
|
||||
#
|
||||
# X libraries and helper libraries
|
||||
#
|
||||
# BR2_PACKAGE_ATK is not set
|
||||
# BR2_PACKAGE_PANGO is not set
|
||||
# BR2_PACKAGE_LIBDRM is not set
|
||||
# BR2_PACKAGE_LIBERATION is not set
|
||||
# BR2_PACKAGE_LIBGLIB12 is not set
|
||||
# BR2_PACKAGE_LIBGLIB2 is not set
|
||||
# BR2_PACKAGE_OPENMOTIF is not set
|
||||
# BR2_PACKAGE_FONTCONFIG is not set
|
||||
# BR2_PACKAGE_FREETYPE is not set
|
||||
# BR2_PACKAGE_TSLIB is not set
|
||||
# BR2_PACKAGE_WEBKIT is not set
|
||||
|
||||
#
|
||||
# X Window managers
|
||||
#
|
||||
# BR2_PACKAGE_MATCHBOX is not set
|
||||
|
||||
#
|
||||
# X applications
|
||||
#
|
||||
# BR2_PACKAGE_ALSAMIXERGUI is not set
|
||||
|
||||
#
|
||||
# dillo - disabled (requires jpeg,libglib12,libgtk12,zlib,libpng and Xorg(7))
|
||||
#
|
||||
# BR2_PACKAGE_GQVIEW is not set
|
||||
# BR2_PACKAGE_LEAFPAD is not set
|
||||
|
||||
#
|
||||
# midori - disabled (requires Xorg(7))
|
||||
#
|
||||
# BR2_PACKAGE_PCMANFM is not set
|
||||
# BR2_PACKAGE_SYLPHEED is not set
|
||||
# BR2_PACKAGE_TORSMO is not set
|
||||
# BR2_PACKAGE_X11VNC is not set
|
||||
# BR2_PACKAGE_XPDF is not set
|
||||
# BR2_PACKAGE_XSTROKE is not set
|
||||
# BR2_PACKAGE_XVKBD is not set
|
||||
|
||||
#
|
||||
# Compressors / decompressors
|
||||
#
|
||||
# BR2_PACKAGE_GZIP is not set
|
||||
# BR2_PACKAGE_LZO is not set
|
||||
# BR2_PACKAGE_LZMA_TARGET is not set
|
||||
# BR2_PACKAGE_LZMA_HOST is not set
|
||||
# BR2_PACKAGE_ZLIB is not set
|
||||
|
||||
#
|
||||
# Package managers
|
||||
#
|
||||
# BR2_PACKAGE_IPKG is not set
|
||||
# BR2_PACKAGE_PORTAGE is not set
|
||||
# BR2_PACKAGE_RPM is not set
|
||||
|
||||
#
|
||||
# Interpreter languages / Scripting
|
||||
#
|
||||
# BR2_PACKAGE_LUA is not set
|
||||
# BR2_PACKAGE_MICROPERL is not set
|
||||
# BR2_PACKAGE_PYTHON is not set
|
||||
# BR2_PACKAGE_RUBY is not set
|
||||
# BR2_PACKAGE_TCL is not set
|
||||
# BR2_PACKAGE_PHP is not set
|
||||
|
||||
#
|
||||
# XML handling
|
||||
#
|
||||
# BR2_PACKAGE_EXPAT is not set
|
||||
# BR2_PACKAGE_EZXML is not set
|
||||
# BR2_PACKAGE_LIBXML2 is not set
|
||||
# BR2_PACKAGE_LIBXSLT is not set
|
||||
# BR2_PACKAGE_XERCES is not set
|
||||
|
||||
#
|
||||
# Java
|
||||
#
|
||||
# BR2_PACKAGE_CLASSPATH is not set
|
||||
|
||||
#
|
||||
# Games
|
||||
#
|
||||
# BR2_PACKAGE_GNUCHESS is not set
|
||||
# BR2_PACKAGE_MAGICCUBE4D is not set
|
||||
# BR2_PACKAGE_PRBOOM is not set
|
||||
# BR2_PACKAGE_RUBIX is not set
|
||||
# BR2_PACKAGE_VICE is not set
|
||||
# BR2_PACKAGE_XBOARD is not set
|
||||
|
||||
#
|
||||
# Target filesystem options
|
||||
#
|
||||
|
||||
#
|
||||
# filesystem for target device
|
||||
#
|
||||
# BR2_TARGET_ROOTFS_CRAMFS is not set
|
||||
# BR2_TARGET_ROOTFS_CLOOP is not set
|
||||
# BR2_TARGET_ROOTFS_EXT2 is not set
|
||||
# BR2_TARGET_ROOTFS_JFFS2 is not set
|
||||
# BR2_TARGET_ROOTFS_UBIFS is not set
|
||||
# BR2_TARGET_ROOTFS_SQUASHFS is not set
|
||||
# BR2_TARGET_ROOTFS_TAR is not set
|
||||
# BR2_TARGET_ROOTFS_CPIO is not set
|
||||
# BR2_TARGET_ROOTFS_INITRAMFS is not set
|
||||
# BR2_TARGET_ROOTFS_ROMFS is not set
|
||||
|
||||
#
|
||||
# bootloader for target device
|
||||
#
|
||||
# BR2_TARGET_UBOOT is not set
|
||||
BR2_BOOTSOURCE_DATAFLASHCARD=y
|
||||
BR2_BOOTSOURCE=y
|
||||
|
||||
#
|
||||
# Kernel
|
||||
#
|
||||
BR2_KERNEL_none=y
|
||||
# BR2_KERNEL_LINUX_ADVANCED is not set
|
||||
# BR2_KERNEL_LINUX is not set
|
||||
# BR2_KERNEL_HURD is not set
|
||||
972
target/device/Atmel/at91rm9200df/at91rm9200df_ext_defconfig
Normal file
972
target/device/Atmel/at91rm9200df/at91rm9200df_ext_defconfig
Normal file
@@ -0,0 +1,972 @@
|
||||
#
|
||||
# Automatically generated make config: don't edit
|
||||
# Sat Jan 31 22:35:16 2009
|
||||
#
|
||||
BR2_HAVE_DOT_CONFIG=y
|
||||
BR2_VERSION="2009.02-svn"
|
||||
# BR2_alpha is not set
|
||||
BR2_arm=y
|
||||
# BR2_armeb is not set
|
||||
# BR2_avr32 is not set
|
||||
# BR2_cris is not set
|
||||
# BR2_ia64 is not set
|
||||
# BR2_i386 is not set
|
||||
# BR2_m68k is not set
|
||||
# BR2_mips is not set
|
||||
# BR2_mipsel is not set
|
||||
# BR2_nios2 is not set
|
||||
# BR2_powerpc is not set
|
||||
# BR2_sh is not set
|
||||
# BR2_sh64 is not set
|
||||
# BR2_sparc is not set
|
||||
# BR2_sparc64 is not set
|
||||
# BR2_x86_64 is not set
|
||||
BR2_generic_arm=y
|
||||
# BR2_arm7tdmi is not set
|
||||
# BR2_arm610 is not set
|
||||
# BR2_arm710 is not set
|
||||
# BR2_arm720t is not set
|
||||
# BR2_arm920t is not set
|
||||
# BR2_arm922t is not set
|
||||
# BR2_arm926t is not set
|
||||
# BR2_arm10t is not set
|
||||
# BR2_arm1136jf_s is not set
|
||||
# BR2_arm1176jz_s is not set
|
||||
# BR2_arm1176jzf_s is not set
|
||||
# BR2_sa110 is not set
|
||||
# BR2_sa1100 is not set
|
||||
# BR2_xscale is not set
|
||||
# BR2_iwmmxt is not set
|
||||
BR2_ARM_TYPE="GENERIC_ARM"
|
||||
BR2_ARM_OABI=y
|
||||
# BR2_ARM_EABI is not set
|
||||
BR2_ARCH="arm"
|
||||
BR2_ENDIAN="LITTLE"
|
||||
BR2_GCC_TARGET_ABI="apcs-gnu"
|
||||
|
||||
#
|
||||
# Target options
|
||||
#
|
||||
|
||||
#
|
||||
# Project Options
|
||||
#
|
||||
BR2_PROJECT="at91rm9200df_ext"
|
||||
BR2_HOSTNAME="at91rm9200df"
|
||||
BR2_BANNER="Welcome to the Erik's uClibc development environment running on the AT91RM9200DF"
|
||||
|
||||
#
|
||||
# Preset Devices
|
||||
#
|
||||
# BR2_TARGET_ARMLTD is not set
|
||||
BR2_BOARD_NAME="at91rm9200df"
|
||||
BR2_BOARD_PATH="target/device/Atmel/$(BR2_BOARD_NAME)"
|
||||
BR2_TARGET_ATMEL=y
|
||||
|
||||
#
|
||||
# Atmel AT91 Specific Device Support
|
||||
#
|
||||
BR2_TARGET_AT91=y
|
||||
|
||||
#
|
||||
# Selection criteria
|
||||
#
|
||||
BR2_TARGET_ATMEL_ALL=y
|
||||
|
||||
#
|
||||
# Device Selection
|
||||
#
|
||||
BR2_TARGET_AT91RM9200=y
|
||||
# BR2_TARGET_AT91SAM9260 is not set
|
||||
# BR2_TARGET_AT91SAM9G20 is not set
|
||||
# BR2_TARGET_AT91SAM9261 is not set
|
||||
# BR2_TARGET_AT91SAM9261S is not set
|
||||
# BR2_TARGET_AT91SAM9RL64 is not set
|
||||
# BR2_TARGET_AT91SAM9263 is not set
|
||||
# BR2_TARGET_AT91SAM9G40 is not set
|
||||
# BR2_TARGET_AT91SAM9M10 is not set
|
||||
# BR2_TARGET_AT91SAM9M11 is not set
|
||||
# BR2_TARGET_AT91SAM9XE is not set
|
||||
# BR2_TARGET_AT572D940HF is not set
|
||||
# BR2_TARGET_AT91CAP9 is not set
|
||||
|
||||
#
|
||||
# Development Board Selection
|
||||
#
|
||||
BR2_TARGET_AT91RM9200DF=y
|
||||
# BR2_TARGET_AT91RM9200EK is not set
|
||||
# BR2_TARGET_AT91RM9200DK is not set
|
||||
# BR2_TARGET_AT91SAM9260DFC is not set
|
||||
# BR2_TARGET_AT91SAM9260EK is not set
|
||||
# BR2_TARGET_AT91SAM9G20DFC is not set
|
||||
# BR2_TARGET_AT91SAM9G20EK is not set
|
||||
# BR2_TARGET_AT91SAM9XEEK is not set
|
||||
# BR2_TARGET_AT91SAM9261EK is not set
|
||||
# BR2_TARGET_AT91SAM9RL64EK is not set
|
||||
# BR2_TARGET_AT91SAM9263EK is not set
|
||||
# BR2_TARGET_AT572D940DCM is not set
|
||||
# BR2_TARGET_AT91CAP9DK is not set
|
||||
# BR2_TARGET_AT91CAP9ADK is not set
|
||||
BR2_TARGET_AT91_ADVANCED_INFO=y
|
||||
|
||||
#
|
||||
# Package support
|
||||
#
|
||||
|
||||
#
|
||||
# Secondary locations
|
||||
#
|
||||
BR2_AT91_LINUXPATCH_SITE="http://maxim.org.za/AT91RM9200/2.6"
|
||||
BR2_TARGET_ATMEL_COPYTO="/tftpboot"
|
||||
# BR2_TARGET_DATAFLASHBOOT is not set
|
||||
# BR2_TARGET_AT91BOOT_DATAFLASH is not set
|
||||
# BR2_TARGET_AT91BOOT_DATAFLASHCARD is not set
|
||||
# BR2_TARGET_AT91BOOT_NANDFLASH is not set
|
||||
# BR2_TARGET_AT91BOOT_FLASH is not set
|
||||
# BR2_TARGET_AT91BOOT_SDCARD is not set
|
||||
# BR2_TARGET_AT91BOOT_EEPROM is not set
|
||||
# BR2_AT91BOOTSTRAP_JUMP_TO_DEFAULT is not set
|
||||
# BR2_AT91BOOTSTRAP_JUMP_TO_HIGH_SDRAM is not set
|
||||
# BR2_AT91BOOTSTRAP_JUMP_TO_START_OF_SDRAM is not set
|
||||
# BR2_TARGET_KWIKBYTE is not set
|
||||
BR2_KERNEL_ARCH_PATCH_VERSION="2.6.28"
|
||||
BR2_KERNEL_ARCH_PATCH_DIR="target/device/Atmel/arch-arm/kernel-patches-$(BR2_KERNEL_ARCH_PATCH_VERSION)"
|
||||
|
||||
#
|
||||
# Generic System Support
|
||||
#
|
||||
# BR2_TARGET_GENERIC_ACCESS_POINT is not set
|
||||
# BR2_TARGET_GENERIC_FIREWALL is not set
|
||||
# BR2_TARGET_GENERIC_DEV_SYSTEM is not set
|
||||
|
||||
#
|
||||
# Build options
|
||||
#
|
||||
BR2_WGET="wget --passive-ftp -nd"
|
||||
BR2_SVN_CO="svn co"
|
||||
BR2_SVN_UP="svn up"
|
||||
BR2_GIT="git clone"
|
||||
BR2_ZCAT="gzip -d -c"
|
||||
BR2_BZCAT="bzcat"
|
||||
BR2_TAR_OPTIONS=""
|
||||
BR2_DL_DIR="$(BASE_DIR)/dl"
|
||||
BR2_COPYTO=""
|
||||
|
||||
#
|
||||
# Mirrors and Download locations
|
||||
#
|
||||
BR2_PRIMARY_SITE=""
|
||||
BR2_BACKUP_SITE="http://buildroot.uclibc.org/downloads/sources/"
|
||||
BR2_SOURCEFORGE_MIRROR="easynews"
|
||||
BR2_KERNEL_MIRROR="http://www.kernel.org/pub/"
|
||||
BR2_GNU_MIRROR="http://ftp.gnu.org/pub/gnu"
|
||||
BR2_DEBIAN_MIRROR="http://ftp.debian.org"
|
||||
|
||||
#
|
||||
# Atmel Mirrors
|
||||
#
|
||||
BR2_ATMEL_MIRROR="ftp://www.at91.com/pub/buildroot"
|
||||
BR2_AT91_PATCH_MIRROR="http://maxim.org.za/AT91RM9200/2.6/"
|
||||
BR2_STAGING_DIR="$(BUILD_DIR)/staging_dir"
|
||||
# BR2_FPU_SUFFIX is not set
|
||||
BR2_TOPDIR_PREFIX=""
|
||||
BR2_TOPDIR_SUFFIX=""
|
||||
BR2_ROOTFS_PREFIX="at91rm9200df-rootfs"
|
||||
BR2_ROOTFS_SUFFIX="$(DATE)"
|
||||
BR2_GNU_BUILD_SUFFIX="pc-linux-gnu"
|
||||
BR2_GNU_TARGET_SUFFIX="linux-uclibc"
|
||||
BR2_JLEVEL=2
|
||||
# BR2_PREFER_IMA is not set
|
||||
# BR2_DEPRECATED is not set
|
||||
BR2_RECENT=y
|
||||
# BR2_CONFIG_CACHE is not set
|
||||
# BR2_ENABLE_DEBUG is not set
|
||||
BR2_STRIP_strip=y
|
||||
# BR2_STRIP_sstrip is not set
|
||||
# BR2_STRIP_none is not set
|
||||
# BR2_OPTIMIZE_0 is not set
|
||||
# BR2_OPTIMIZE_1 is not set
|
||||
BR2_OPTIMIZE_2=y
|
||||
# BR2_OPTIMIZE_3 is not set
|
||||
# BR2_OPTIMIZE_S is not set
|
||||
# BR2_PREFER_STATIC_LIB is not set
|
||||
# BR2_HAVE_MANPAGES is not set
|
||||
# BR2_HAVE_INFOPAGES is not set
|
||||
# BR2_HAVE_DOCUMENTATION is not set
|
||||
# BR2_HAVE_DEVFILES is not set
|
||||
BR2_UPDATE_CONFIG=y
|
||||
|
||||
#
|
||||
# Toolchain
|
||||
#
|
||||
# BR2_TOOLCHAIN_BUILDROOT is not set
|
||||
BR2_TOOLCHAIN_EXTERNAL=y
|
||||
# BR2_TOOLCHAIN_EXTERNAL_SOURCE is not set
|
||||
# BR2_TOOLCHAIN_SOURCE is not set
|
||||
BR2_TOOLCHAIN_EXTERNAL_PATH="$(GCCROOT)"
|
||||
BR2_TOOLCHAIN_EXTERNAL_PREFIX="$(ARCH)-linux"
|
||||
BR2_EXT_GCC_VERSION_4_1_2=y
|
||||
BR2_EXT_GCC_VERSION_4_2_1=y
|
||||
BR2_EXT_GCC_VERSION_4_2_2=y
|
||||
BR2_EXT_GCC_VERSION_4_2_3=y
|
||||
BR2_EXT_BINUTILS_VERSION_2_17=y
|
||||
BR2_EXT_BINUTILS_VERSION_2_18=y
|
||||
BR2_EXT_UCLIBC_VERSION_0_9_28_3=y
|
||||
BR2_EXT_UCLIBC_VERSION_0_9_29=y
|
||||
BR2_EXT_UCLIBC_VERSION_0_9_30=y
|
||||
BR2_TOOLCHAIN_EXTERNAL_LIB_C="libc.so.0"
|
||||
BR2_TOOLCHAIN_EXTERNAL_LIBS="ld-uClibc.so.0 libcrypt.so.0 libdl.so.0 libgcc_s.so libm.so.0 libnsl.so.0 libpthread.so.0 libresolv.so.0 librt.so.0 libutil.so.0"
|
||||
BR2_TOOLCHAIN_EXTERNAL_STRIP=y
|
||||
|
||||
#
|
||||
# Gdb Options
|
||||
#
|
||||
# BR2_PACKAGE_GDB is not set
|
||||
BR2_PACKAGE_GDB_SERVER=y
|
||||
# BR2_PACKAGE_GDB_HOST is not set
|
||||
# BR2_GDB_VERSION_6_2_1 is not set
|
||||
# BR2_GDB_VERSION_6_3 is not set
|
||||
# BR2_GDB_VERSION_6_4 is not set
|
||||
# BR2_GDB_VERSION_6_5 is not set
|
||||
# BR2_GDB_VERSION_6_6 is not set
|
||||
# BR2_GDB_VERSION_6_7_1 is not set
|
||||
BR2_GDB_VERSION_6_8=y
|
||||
# BR2_GDB_VERSION_SNAPSHOT is not set
|
||||
BR2_GDB_VERSION="6.8"
|
||||
|
||||
#
|
||||
# Common Toolchain Options
|
||||
#
|
||||
BR2_LARGEFILE=y
|
||||
BR2_INET_IPV6=y
|
||||
BR2_INET_RPC=y
|
||||
BR2_ENABLE_LOCALE=y
|
||||
BR2_USE_WCHAR=y
|
||||
# BR2_SOFT_FLOAT is not set
|
||||
# BR2_PTHREADS_NONE is not set
|
||||
# BR2_PTHREADS is not set
|
||||
BR2_PTHREADS_OLD=y
|
||||
# BR2_PTHREADS_NATIVE is not set
|
||||
BR2_GCC_CROSS_CXX=y
|
||||
BR2_INSTALL_LIBSTDCPP=y
|
||||
BR2_TARGET_OPTIMIZATION="-Os -pipe"
|
||||
|
||||
#
|
||||
# Package Selection for the target
|
||||
#
|
||||
BR2_PACKAGE_BUSYBOX=y
|
||||
# BR2_BUSYBOX_VERSION_1_2_2_1 is not set
|
||||
# BR2_BUSYBOX_VERSION_1_6_1 is not set
|
||||
# BR2_BUSYBOX_VERSION_1_7_X is not set
|
||||
# BR2_BUSYBOX_VERSION_1_8_X is not set
|
||||
# BR2_BUSYBOX_VERSION_1_9_X is not set
|
||||
# BR2_BUSYBOX_VERSION_1_10_X is not set
|
||||
# BR2_BUSYBOX_VERSION_1_11_X is not set
|
||||
# BR2_BUSYBOX_VERSION_1_12_X is not set
|
||||
BR2_BUSYBOX_VERSION_1_13_X=y
|
||||
# BR2_PACKAGE_BUSYBOX_SNAPSHOT is not set
|
||||
BR2_BUSYBOX_VERSION="1.13.2"
|
||||
BR2_PACKAGE_BUSYBOX_FULLINSTALL=y
|
||||
BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.13.x.config"
|
||||
BR2_PACKAGE_BUSYBOX_HIDE_OTHERS=y
|
||||
# BR2_PACKAGE_BUSYBOX_SKELETON is not set
|
||||
|
||||
#
|
||||
# The minimum needed to build a uClibc development system
|
||||
#
|
||||
# BR2_PACKAGE_FLEX is not set
|
||||
# BR2_PACKAGE_GCC_TARGET is not set
|
||||
# BR2_PACKAGE_MAKE is not set
|
||||
|
||||
#
|
||||
# Other development stuff
|
||||
#
|
||||
# BR2_PACKAGE_AUTOCONF is not set
|
||||
# BR2_PACKAGE_AUTOMAKE is not set
|
||||
# BR2_PACKAGE_BISON is not set
|
||||
# BR2_PACKAGE_CCACHE_TARGET is not set
|
||||
# BR2_PACKAGE_CVS is not set
|
||||
# BR2_PACKAGE_DISTCC is not set
|
||||
# BR2_PACKAGE_DMALLOC is not set
|
||||
# BR2_PACKAGE_FAKEROOT is not set
|
||||
BR2_HOST_FAKEROOT=y
|
||||
BR2_PACKAGE_GETTEXT=y
|
||||
# BR2_PACKAGE_GETTEXT_STATIC is not set
|
||||
BR2_PACKAGE_LIBINTL=y
|
||||
# BR2_PACKAGE_LIBGMP is not set
|
||||
# BR2_PACKAGE_GPERF is not set
|
||||
# BR2_PACKAGE_LIBMPFR is not set
|
||||
# BR2_PACKAGE_LIBTOOL is not set
|
||||
# BR2_PACKAGE_M4 is not set
|
||||
# BR2_PACKAGE_OPROFILE is not set
|
||||
BR2_PACKAGE_PKGCONFIG=y
|
||||
BR2_PACKAGE_READLINE=y
|
||||
# BR2_PACKAGE_PCRE is not set
|
||||
|
||||
#
|
||||
# Other stuff
|
||||
#
|
||||
BR2_PACKAGE_AT=y
|
||||
# BR2_PACKAGE_BEECRYPT is not set
|
||||
# BR2_PACKAGE_BERKELEYDB is not set
|
||||
# BR2_PACKAGE_BSDIFF is not set
|
||||
# BR2_PACKAGE_CUPS is not set
|
||||
# BR2_PACKAGE_CUSTOMIZE is not set
|
||||
# BR2_PACKAGE_FILE is not set
|
||||
# BR2_PACKAGE_GAMIN is not set
|
||||
# BR2_PACKAGE_ICU is not set
|
||||
# BR2_PACKAGE_KEXEC is not set
|
||||
# BR2_PACKAGE_LIBCONFIG is not set
|
||||
# BR2_PACKAGE_LIBCONFUSE is not set
|
||||
BR2_PACKAGE_LIBDAEMON=y
|
||||
# BR2_PACKAGE_LIBELF is not set
|
||||
BR2_PACKAGE_LIBEVENT=y
|
||||
BR2_PACKAGE_LIBGCRYPT=y
|
||||
BR2_PACKAGE_LIBGPG_ERROR=y
|
||||
BR2_PACKAGE_LIBICONV=y
|
||||
# BR2_PACKAGE_LIBIDN is not set
|
||||
BR2_PACKAGE_LIBLOCKFILE=y
|
||||
# BR2_PACKAGE_LIBOIL is not set
|
||||
# BR2_PACKAGE_LIBSYSFS is not set
|
||||
BR2_PACKAGE_LOCKFILE_PROGS=y
|
||||
# BR2_PACKAGE_LOGROTATE is not set
|
||||
# BR2_PACKAGE_LSOF is not set
|
||||
# BR2_PACKAGE_LTP-TESTSUITE is not set
|
||||
# BR2_PACKAGE_LTRACE is not set
|
||||
# BR2_PACKAGE_MEMSTAT is not set
|
||||
# BR2_PACKAGE_NG_SPICE_REWORK is not set
|
||||
# BR2_PACKAGE_POPT is not set
|
||||
# BR2_PACKAGE_SCREEN is not set
|
||||
# BR2_PACKAGE_STARTUP_NOTIFICATION is not set
|
||||
# BR2_PACKAGE_STRACE is not set
|
||||
# BR2_PACKAGE_SUDO is not set
|
||||
|
||||
#
|
||||
# Database
|
||||
#
|
||||
# BR2_PACKAGE_MYSQL_CLIENT is not set
|
||||
# BR2_PACKAGE_SQLITE is not set
|
||||
|
||||
#
|
||||
# Networking
|
||||
#
|
||||
|
||||
#
|
||||
# Networking applications
|
||||
#
|
||||
# BR2_PACKAGE_ARGUS is not set
|
||||
BR2_PACKAGE_AVAHI=y
|
||||
BR2_PACKAGE_AVAHI_AUTOIPD=y
|
||||
# BR2_PACKAGE_AVAHI_DAEMON is not set
|
||||
BR2_PACKAGE_AXEL=y
|
||||
# BR2_PACKAGE_BIND is not set
|
||||
# BR2_PACKAGE_BRIDGE is not set
|
||||
# BR2_PACKAGE_DNSMASQ is not set
|
||||
BR2_PACKAGE_DROPBEAR=y
|
||||
BR2_PACKAGE_ETHTOOL=y
|
||||
BR2_PACKAGE_HASERL=y
|
||||
# BR2_PACKAGE_HASERL_VERSION_0_8_X is not set
|
||||
BR2_PACKAGE_HASERL_VERSION_0_9_X=y
|
||||
BR2_PACKAGE_HASERL_VERSION="0.9.25"
|
||||
BR2_PACKAGE_IFPLUGD=y
|
||||
# BR2_PACKAGE_IPERF is not set
|
||||
# BR2_PACKAGE_IPROUTE2 is not set
|
||||
|
||||
#
|
||||
# ipsec-tools - disabled (requires openssl, flex and the flex library (libfl.a) )
|
||||
#
|
||||
BR2_PACKAGE_IPTABLES=y
|
||||
# BR2_PACKAGE_KISMET is not set
|
||||
BR2_PACKAGE_L2TP=y
|
||||
BR2_PACKAGE_LIBCGI=y
|
||||
# BR2_PACKAGE_LIBCGICC is not set
|
||||
# BR2_PACKAGE_LIBCURL is not set
|
||||
BR2_PACKAGE_LIBDNET=y
|
||||
# BR2_PACKAGE_LIBDNET_PYTHON is not set
|
||||
# BR2_PACKAGE_LIBEXOSIP2 is not set
|
||||
# BR2_PACKAGE_LIBOSIP2 is not set
|
||||
BR2_PACKAGE_LIBPCAP=y
|
||||
BR2_PACKAGE_LIBUPNP=y
|
||||
# BR2_PACKAGE_LINKS is not set
|
||||
BR2_PACKAGE_LRZSZ=y
|
||||
# BR2_PACKAGE_MDNSRESPONDER is not set
|
||||
BR2_PACKAGE_MICROCOM=y
|
||||
# BR2_PACKAGE_MIIDIAG is not set
|
||||
# BR2_PACKAGE_MROUTED is not set
|
||||
# BR2_PACKAGE_MUTT is not set
|
||||
# BR2_PACKAGE_NBD is not set
|
||||
BR2_PACKAGE_NCFTP=y
|
||||
|
||||
#
|
||||
# ncFTP tools selection
|
||||
#
|
||||
BR2_PACKAGE_NCFTP_GET=y
|
||||
BR2_PACKAGE_NCFTP_PUT=y
|
||||
BR2_PACKAGE_NCFTP_LS=y
|
||||
BR2_PACKAGE_NCFTP_BATCH=y
|
||||
# BR2_PACKAGE_NCFTP_SPOOLER is not set
|
||||
# BR2_PACKAGE_NCFTP_BOOKMARKS is not set
|
||||
# BR2_PACKAGE_NEON is not set
|
||||
# BR2_PACKAGE_NETKITBASE is not set
|
||||
# BR2_PACKAGE_NETKITTELNET is not set
|
||||
BR2_PACKAGE_NETPLUG=y
|
||||
BR2_PACKAGE_NETSNMP=y
|
||||
BR2_PACKAGE_NFS_UTILS=y
|
||||
|
||||
#
|
||||
# NFS utilities selection
|
||||
#
|
||||
BR2_PACKAGE_NFS_UTILS_RPCDEBUG=y
|
||||
BR2_PACKAGE_NFS_UTILS_RPC_LOCKD=y
|
||||
BR2_PACKAGE_NFS_UTILS_RPC_RQUOTAD=y
|
||||
BR2_PACKAGE_NTP=y
|
||||
# BR2_PACKAGE_NTP_SNTP is not set
|
||||
# BR2_PACKAGE_OLSR is not set
|
||||
# BR2_PACKAGE_OPENNTPD is not set
|
||||
BR2_PACKAGE_OPENSSH=y
|
||||
BR2_PACKAGE_OPENSSL=y
|
||||
BR2_PACKAGE_OPENSSL_BIN=y
|
||||
# BR2_PACKAGE_OPENSSL_ENGINES is not set
|
||||
BR2_PACKAGE_OPENVPN=y
|
||||
# BR2_PACKAGE_OPENSWAN is not set
|
||||
BR2_PACKAGE_PORTMAP=y
|
||||
BR2_PACKAGE_PPPD=y
|
||||
# BR2_PACKAGE_RADVD is not set
|
||||
BR2_PACKAGE_RP_PPPOE=y
|
||||
# BR2_PACKAGE_PPTP_LINUX is not set
|
||||
# BR2_PACKAGE_PROFTPD is not set
|
||||
|
||||
#
|
||||
# quagga suite
|
||||
#
|
||||
# BR2_PACKAGE_QUAGGA_ZEBRA is not set
|
||||
# BR2_PACKAGE_QUAGGA_BGPD is not set
|
||||
# BR2_PACKAGE_QUAGGA_RIPD is not set
|
||||
# BR2_PACKAGE_QUAGGA_RIPNGD is not set
|
||||
# BR2_PACKAGE_QUAGGA_OSPFD is not set
|
||||
# BR2_PACKAGE_QUAGGA_OSPF6D is not set
|
||||
# BR2_PACKAGE_QUAGGA_WATCHQUAGGA is not set
|
||||
# BR2_PACKAGE_QUAGGA_ISISD is not set
|
||||
BR2_PACKAGE_RSYNC=y
|
||||
BR2_PACKAGE_SAMBA=y
|
||||
|
||||
#
|
||||
# Samba tools selection
|
||||
#
|
||||
BR2_PACKAGE_SAMBA_CIFS=y
|
||||
BR2_PACKAGE_SAMBA_EVENTLOGADM=y
|
||||
|
||||
#
|
||||
# findsmb - disabled (requires nmblookup, smbclient and perl)
|
||||
#
|
||||
BR2_PACKAGE_SAMBA_NET=y
|
||||
BR2_PACKAGE_SAMBA_NMBD=y
|
||||
BR2_PACKAGE_SAMBA_NMBLOOKUP=y
|
||||
BR2_PACKAGE_SAMBA_NTLM_AUTH=y
|
||||
BR2_PACKAGE_SAMBA_PDBEDIT=y
|
||||
BR2_PACKAGE_SAMBA_PROFILES=y
|
||||
BR2_PACKAGE_SAMBA_RPCCLIENT=y
|
||||
BR2_PACKAGE_SAMBA_SMBCACLS=y
|
||||
BR2_PACKAGE_SAMBA_SMBCLIENT=y
|
||||
BR2_PACKAGE_SAMBA_SMBCONTROL=y
|
||||
BR2_PACKAGE_SAMBA_SMBCQUOTAS=y
|
||||
BR2_PACKAGE_SAMBA_SMBGET=y
|
||||
BR2_PACKAGE_SAMBA_SMBPASSWD=y
|
||||
BR2_PACKAGE_SAMBA_SMBSPOOL=y
|
||||
BR2_PACKAGE_SAMBA_SMBSTATUS=y
|
||||
BR2_PACKAGE_SAMBA_SMBTREE=y
|
||||
BR2_PACKAGE_SAMBA_SWAT=y
|
||||
BR2_PACKAGE_SAMBA_SMBTAR=y
|
||||
BR2_PACKAGE_SAMBA_TDB=y
|
||||
BR2_PACKAGE_SAMBA_TESTPARM=y
|
||||
BR2_PACKAGE_SAMBA_WINBINDD=y
|
||||
BR2_PACKAGE_SAMBA_WBINFO=y
|
||||
BR2_PACKAGE_SOCAT=y
|
||||
BR2_PACKAGE_SOCAT_PREDEF_CRDLY_SHIFT="9"
|
||||
BR2_PACKAGE_SOCAT_PREDEF_TABDLY_SHIFT="11"
|
||||
BR2_PACKAGE_SOCAT_PREDEF_CSIZE_SHIFT="4"
|
||||
BR2_PACKAGE_STUNNEL=y
|
||||
# BR2_PACKAGE_TCPDUMP is not set
|
||||
# BR2_PACKAGE_DHCPDUMP is not set
|
||||
BR2_PACKAGE_TFTPD=y
|
||||
# BR2_PACKAGE_TN5250 is not set
|
||||
# BR2_PACKAGE_TTCP is not set
|
||||
# BR2_PACKAGE_UDPCAST is not set
|
||||
BR2_PACKAGE_VPNC=y
|
||||
# BR2_PACKAGE_VSFTPD is not set
|
||||
BR2_PACKAGE_VTUN=y
|
||||
# BR2_PACKAGE_WEBIF is not set
|
||||
# BR2_PACKAGE_WIRELESS_TOOLS is not set
|
||||
|
||||
#
|
||||
# Hardware handling / blockdevices and filesystem maintenance
|
||||
#
|
||||
BR2_PACKAGE_DBUS=y
|
||||
BR2_DBUS_EXPAT=y
|
||||
# BR2_DBUS_LIBXML2 is not set
|
||||
# BR2_PACKAGE_DBUS_GLIB is not set
|
||||
BR2_PACKAGE_DEVMEM2=y
|
||||
BR2_PACKAGE_DM=y
|
||||
# BR2_PACKAGE_DMRAID is not set
|
||||
BR2_PACKAGE_E2FSPROGS=y
|
||||
BR2_PACKAGE_E2FSPROGS_BADBLOCKS=y
|
||||
BR2_PACKAGE_E2FSPROGS_BLKID=y
|
||||
BR2_PACKAGE_E2FSPROGS_CHATTR=y
|
||||
BR2_PACKAGE_E2FSPROGS_DUMPE2FS=y
|
||||
BR2_PACKAGE_E2FSPROGS_E2FSCK=y
|
||||
BR2_PACKAGE_E2FSPROGS_E2LABEL=y
|
||||
BR2_PACKAGE_E2FSPROGS_FILEFRAG=y
|
||||
BR2_PACKAGE_E2FSPROGS_FINDFS=y
|
||||
BR2_PACKAGE_E2FSPROGS_FSCK=y
|
||||
BR2_PACKAGE_E2FSPROGS_LOGSAVE=y
|
||||
BR2_PACKAGE_E2FSPROGS_LSATTR=y
|
||||
BR2_PACKAGE_E2FSPROGS_MKE2FS=y
|
||||
BR2_PACKAGE_E2FSPROGS_MKLOSTFOUND=y
|
||||
BR2_PACKAGE_E2FSPROGS_TUNE2FS=y
|
||||
BR2_PACKAGE_E2FSPROGS_UUIDGEN=y
|
||||
# BR2_PACKAGE_EEPROG is not set
|
||||
# BR2_PACKAGE_FCONFIG is not set
|
||||
# BR2_PACKAGE_FIS is not set
|
||||
# BR2_PACKAGE_LIBFUSE is not set
|
||||
# BR2_PACKAGE_GADGETFS_TEST is not set
|
||||
# BR2_PACKAGE_HAL is not set
|
||||
# BR2_PACKAGE_HWDATA is not set
|
||||
# BR2_PACKAGE_I2C_TOOLS is not set
|
||||
BR2_PACKAGE_INPUT_TOOLS=y
|
||||
BR2_PACKAGE_INPUT_TOOLS_EVTEST=y
|
||||
BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH=y
|
||||
BR2_PACKAGE_INPUT_TOOLS_JSCAL=y
|
||||
BR2_PACKAGE_INPUT_TOOLS_JSTEST=y
|
||||
# BR2_PACKAGE_IOSTAT is not set
|
||||
# BR2_PACKAGE_LIBAIO is not set
|
||||
# BR2_PACKAGE_LIBRAW1394 is not set
|
||||
BR2_PACKAGE_LIBUSB=y
|
||||
# BR2_PACKAGE_LM_SENSORS is not set
|
||||
# BR2_PACKAGE_LVM2 is not set
|
||||
# BR2_PACKAGE_MDADM is not set
|
||||
# BR2_PACKAGE_MEMTESTER is not set
|
||||
BR2_PACKAGE_MKDOSFS=y
|
||||
BR2_PACKAGE_MTD=y
|
||||
# BR2_PACKAGE_MTD_UTILS is not set
|
||||
BR2_PACKAGE_MTD_20061007=y
|
||||
# BR2_PACKAGE_MTD_20050122 is not set
|
||||
# BR2_PACKAGE_MTD_UTILS_GIT is not set
|
||||
|
||||
#
|
||||
# MTD tools selection
|
||||
#
|
||||
BR2_PACKAGE_MTD_DOCFDISK=y
|
||||
BR2_PACKAGE_MTD_DOC_LOADBIOS=y
|
||||
BR2_PACKAGE_MTD_FLASHCP=y
|
||||
BR2_PACKAGE_MTD_FLASH_ERASE=y
|
||||
BR2_PACKAGE_MTD_FLASH_ERASEALL=y
|
||||
BR2_PACKAGE_MTD_FLASH_INFO=y
|
||||
BR2_PACKAGE_MTD_FLASH_LOCK=y
|
||||
BR2_PACKAGE_MTD_FLASH_UNLOCK=y
|
||||
BR2_PACKAGE_MTD_FTL_CHECK=y
|
||||
BR2_PACKAGE_MTD_FTL_FORMAT=y
|
||||
BR2_PACKAGE_MTD_JFFS2DUMP=y
|
||||
BR2_PACKAGE_MTD_MKFSJFFS2=y
|
||||
BR2_PACKAGE_MTD_MKFSJFFS=y
|
||||
BR2_PACKAGE_MTD_MTD_DEBUG=y
|
||||
BR2_PACKAGE_MTD_NANDDUMP=y
|
||||
BR2_PACKAGE_MTD_NANDWRITE=y
|
||||
BR2_PACKAGE_MTD_NFTL_FORMAT=y
|
||||
BR2_PACKAGE_MTD_NFTLDUMP=y
|
||||
BR2_PACKAGE_MTD_SUMTOOL=y
|
||||
# BR2_PACKAGE_NTFS-3G is not set
|
||||
# BR2_PACKAGE_PCIUTILS is not set
|
||||
# BR2_PACKAGE_PCMCIA is not set
|
||||
BR2_PACKAGE_SETSERIAL=y
|
||||
# BR2_PACKAGE_SMARTMONTOOLS is not set
|
||||
BR2_PACKAGE_UDEV_VOLUME_ID=y
|
||||
BR2_PACKAGE_UDEV_SCSI_ID=y
|
||||
BR2_PACKAGE_USBMOUNT=y
|
||||
BR2_PACKAGE_USBUTILS=y
|
||||
# BR2_PACKAGE_WIPE is not set
|
||||
# BR2_PACKAGE_XFSPROGS is not set
|
||||
|
||||
#
|
||||
# Audio and video libraries and applications
|
||||
#
|
||||
# BR2_PACKAGE_ALSA_LIB is not set
|
||||
|
||||
#
|
||||
# asterisk - disabled (required openssl and mpg123)
|
||||
#
|
||||
BR2_PACKAGE_AUMIX=y
|
||||
BR2_PACKAGE_GSTREAMER=y
|
||||
# BR2_PACKAGE_GST_PLUGINS_BASE is not set
|
||||
# BR2_PACKAGE_GST_PLUGINS_GOOD is not set
|
||||
# BR2_PACKAGE_GST_PLUGINS_UGLY is not set
|
||||
BR2_PACKAGE_LIBID3TAG=y
|
||||
BR2_PACKAGE_LIBMAD=y
|
||||
# BR2_PACKAGE_LIBMAD_TARGET_HEADERS is not set
|
||||
BR2_PACKAGE_LIBMPD=y
|
||||
BR2_PACKAGE_LIBOGG=y
|
||||
# BR2_PACKAGE_LIBSNDFILE is not set
|
||||
# BR2_PACKAGE_LIBTHEORA is not set
|
||||
# BR2_PACKAGE_LIBVORBIS is not set
|
||||
BR2_PACKAGE_MADPLAY=y
|
||||
# BR2_PACKAGE_MPG123 is not set
|
||||
BR2_PACKAGE_MPLAYER=y
|
||||
BR2_PACKAGE_SPEEX=y
|
||||
BR2_PACKAGE_SPEEX_ARM_GENERIC=y
|
||||
# BR2_PACKAGE_FESTIVAL is not set
|
||||
# BR2_PACKAGE_VLC is not set
|
||||
|
||||
#
|
||||
# Graphic libraries and applications (graphic/text)
|
||||
#
|
||||
|
||||
#
|
||||
# text rendering libraries
|
||||
#
|
||||
BR2_PACKAGE_NCURSES=y
|
||||
# BR2_PACKAGE_NCURSES_TARGET_PANEL is not set
|
||||
# BR2_PACKAGE_NCURSES_TARGET_FORM is not set
|
||||
# BR2_PACKAGE_NCURSES_TARGET_MENU is not set
|
||||
# BR2_PACKAGE_NCURSES_TARGET_HEADERS is not set
|
||||
# BR2_PACKAGE_NEWT is not set
|
||||
# BR2_PACKAGE_SLANG is not set
|
||||
|
||||
#
|
||||
# text rendering applications
|
||||
#
|
||||
# BR2_PACKAGE_DIALOG is not set
|
||||
|
||||
#
|
||||
# graphic libraries
|
||||
#
|
||||
# BR2_PACKAGE_DIRECTFB is not set
|
||||
# BR2_PACKAGE_FBDUMP is not set
|
||||
# BR2_PACKAGE_IMAGEMAGICK is not set
|
||||
# BR2_PACKAGE_JPEG is not set
|
||||
# BR2_PACKAGE_LIBART is not set
|
||||
# BR2_PACKAGE_LIBPNG is not set
|
||||
# BR2_PACKAGE_LIBUNGIF is not set
|
||||
# BR2_PACKAGE_LINUX_FUSION is not set
|
||||
# BR2_PACKAGE_PIXMAN is not set
|
||||
# BR2_PACKAGE_SDL is not set
|
||||
# BR2_PACKAGE_TIFF is not set
|
||||
|
||||
#
|
||||
# busybox graphic applications
|
||||
#
|
||||
|
||||
#
|
||||
# --> May be broken in busybox
|
||||
#
|
||||
# BR2_PACKAGE_FBV is not set
|
||||
# BR2_PACKAGE_FBSET is not set
|
||||
|
||||
#
|
||||
# other GUIs
|
||||
#
|
||||
# BR2_PACKAGE_QTOPIA4 is not set
|
||||
BR2_PACKAGE_XSERVER_none=y
|
||||
# BR2_PACKAGE_XSERVER_xorg is not set
|
||||
# BR2_PACKAGE_XSERVER_tinyx is not set
|
||||
|
||||
#
|
||||
# X libraries and helper libraries
|
||||
#
|
||||
# BR2_PACKAGE_ATK is not set
|
||||
# BR2_PACKAGE_PANGO is not set
|
||||
# BR2_PACKAGE_LIBDRM is not set
|
||||
# BR2_PACKAGE_LIBERATION is not set
|
||||
# BR2_PACKAGE_LIBGLIB12 is not set
|
||||
BR2_PACKAGE_LIBGLIB2=y
|
||||
# BR2_PACKAGE_OPENMOTIF is not set
|
||||
# BR2_PACKAGE_FONTCONFIG is not set
|
||||
# BR2_PACKAGE_FREETYPE is not set
|
||||
# BR2_PACKAGE_TSLIB is not set
|
||||
# BR2_PACKAGE_WEBKIT is not set
|
||||
|
||||
#
|
||||
# X Window managers
|
||||
#
|
||||
# BR2_PACKAGE_MATCHBOX is not set
|
||||
|
||||
#
|
||||
# X applications
|
||||
#
|
||||
# BR2_PACKAGE_ALSAMIXERGUI is not set
|
||||
|
||||
#
|
||||
# dillo - disabled (requires jpeg,libglib12,libgtk12,zlib,libpng and Xorg(7))
|
||||
#
|
||||
# BR2_PACKAGE_GQVIEW is not set
|
||||
# BR2_PACKAGE_LEAFPAD is not set
|
||||
|
||||
#
|
||||
# midori - disabled (requires Xorg(7))
|
||||
#
|
||||
# BR2_PACKAGE_PCMANFM is not set
|
||||
# BR2_PACKAGE_SYLPHEED is not set
|
||||
# BR2_PACKAGE_TORSMO is not set
|
||||
# BR2_PACKAGE_X11VNC is not set
|
||||
# BR2_PACKAGE_XPDF is not set
|
||||
# BR2_PACKAGE_XSTROKE is not set
|
||||
# BR2_PACKAGE_XVKBD is not set
|
||||
|
||||
#
|
||||
# Compressors / decompressors
|
||||
#
|
||||
BR2_PACKAGE_LZO=y
|
||||
# BR2_PACKAGE_LZMA_TARGET is not set
|
||||
# BR2_PACKAGE_LZMA_HOST is not set
|
||||
BR2_PACKAGE_ZLIB=y
|
||||
# BR2_PACKAGE_ZLIB_TARGET_HEADERS is not set
|
||||
|
||||
#
|
||||
# Package managers
|
||||
#
|
||||
# BR2_PACKAGE_IPKG is not set
|
||||
# BR2_PACKAGE_PORTAGE is not set
|
||||
|
||||
#
|
||||
# Interpreter languages / Scripting
|
||||
#
|
||||
# BR2_PACKAGE_LUA is not set
|
||||
# BR2_PACKAGE_MICROPERL is not set
|
||||
BR2_PACKAGE_PYTHON=y
|
||||
# BR2_PACKAGE_PYTHON_DEV is not set
|
||||
BR2_PACKAGE_PYTHON_PY_ONLY=y
|
||||
# BR2_PACKAGE_PYTHON_PYC_ONLY is not set
|
||||
# BR2_PACKAGE_PYTHON_PY_PYC is not set
|
||||
|
||||
#
|
||||
# The following modules are unusual or require extra libraries
|
||||
#
|
||||
# BR2_PACKAGE_PYTHON_BSDDB is not set
|
||||
BR2_PACKAGE_PYTHON_CODECSCJK=y
|
||||
# BR2_PACKAGE_PYTHON_CURSES is not set
|
||||
# BR2_PACKAGE_PYTHON_GDBM is not set
|
||||
# BR2_PACKAGE_PYTHON_NIS is not set
|
||||
# BR2_PACKAGE_PYTHON_PYEXPAT is not set
|
||||
# BR2_PACKAGE_PYTHON_READLINE is not set
|
||||
# BR2_PACKAGE_PYTHON_SSL is not set
|
||||
# BR2_PACKAGE_PYTHON_TKINTER is not set
|
||||
BR2_PACKAGE_PYTHON_UNICODEDATA=y
|
||||
# BR2_PACKAGE_RUBY is not set
|
||||
# BR2_PACKAGE_TCL is not set
|
||||
# BR2_PACKAGE_PHP is not set
|
||||
|
||||
#
|
||||
# XML handling
|
||||
#
|
||||
BR2_PACKAGE_EXPAT=y
|
||||
# BR2_PACKAGE_EZXML is not set
|
||||
BR2_PACKAGE_LIBXML2=y
|
||||
# BR2_PACKAGE_LIBXSLT is not set
|
||||
# BR2_PACKAGE_XERCES is not set
|
||||
|
||||
#
|
||||
# Java
|
||||
#
|
||||
# BR2_PACKAGE_CLASSPATH is not set
|
||||
|
||||
#
|
||||
# Games
|
||||
#
|
||||
# BR2_PACKAGE_GNUCHESS is not set
|
||||
# BR2_PACKAGE_MAGICCUBE4D is not set
|
||||
# BR2_PACKAGE_PRBOOM is not set
|
||||
# BR2_PACKAGE_RUBIX is not set
|
||||
# BR2_PACKAGE_VICE is not set
|
||||
# BR2_PACKAGE_XBOARD is not set
|
||||
|
||||
#
|
||||
# Target filesystem options
|
||||
#
|
||||
|
||||
#
|
||||
# filesystem for target device
|
||||
#
|
||||
# BR2_TARGET_ROOTFS_CRAMFS is not set
|
||||
# BR2_TARGET_ROOTFS_CLOOP is not set
|
||||
BR2_TARGET_ROOTFS_EXT2=y
|
||||
BR2_TARGET_ROOTFS_EXT2_BLOCKS=0
|
||||
BR2_TARGET_ROOTFS_EXT2_INODES=0
|
||||
BR2_TARGET_ROOTFS_EXT2_RESBLKS=0
|
||||
BR2_TARGET_ROOTFS_EXT2_SQUASH=y
|
||||
BR2_TARGET_ROOTFS_EXT2_OUTPUT="$(IMAGE).ext2"
|
||||
BR2_TARGET_ROOTFS_EXT2_NONE=y
|
||||
# BR2_TARGET_ROOTFS_EXT2_GZIP is not set
|
||||
# BR2_TARGET_ROOTFS_EXT2_BZIP2 is not set
|
||||
# BR2_TARGET_ROOTFS_EXT2_LZMA is not set
|
||||
BR2_TARGET_ROOTFS_EXT2_COPYTO="/tftpboot"
|
||||
BR2_TARGET_ROOTFS_JFFS2=y
|
||||
BR2_TARGET_ROOTFS_JFFS2_DATAFLASH_1056=y
|
||||
# BR2_TARGET_ROOTFS_JFFS2_DATAFLASH_528 is not set
|
||||
# BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K is not set
|
||||
# BR2_TARGET_ROOTFS_JFFS2_FLASH_128 is not set
|
||||
# BR2_TARGET_ROOTFS_JFFS2_FLASH_64 is not set
|
||||
# BR2_TARGET_ROOTFS_JFFS2_CUSTOM is not set
|
||||
BR2_TARGET_ROOTFS_JFFS2_PAGESIZE=0x420
|
||||
BR2_TARGET_ROOTFS_JFFS2_EBSIZE=0x2100
|
||||
BR2_TARGET_ROOTFS_JFFS2_NOCLEANMARKER=y
|
||||
# BR2_JFFS2_TARGET_SREC is not set
|
||||
# BR2_TARGET_ROOTFS_JFFS2_PAD is not set
|
||||
BR2_TARGET_ROOTFS_JFFS2_LE=y
|
||||
# BR2_TARGET_ROOTFS_JFFS2_BE is not set
|
||||
# BR2_TARGET_ROOTFS_JFFS2_SQUASH is not set
|
||||
# BR2_TARGET_ROOTFS_JFFS2_SUMMARY is not set
|
||||
BR2_TARGET_ROOTFS_JFFS2_OUTPUT="$(IMAGE).jffs2"
|
||||
BR2_TARGET_ROOTFS_JFFS2_COPYTO="/tftpboot"
|
||||
# BR2_TARGET_ROOTFS_UBIFS is not set
|
||||
# BR2_TARGET_ROOTFS_SQUASHFS is not set
|
||||
# BR2_TARGET_ROOTFS_TAR is not set
|
||||
# BR2_TARGET_ROOTFS_CPIO is not set
|
||||
# BR2_TARGET_ROOTFS_INITRAMFS is not set
|
||||
# BR2_TARGET_ROOTFS_ROMFS is not set
|
||||
|
||||
#
|
||||
# bootloader for target device
|
||||
#
|
||||
BR2_TARGET_UBOOT=y
|
||||
BR2_TARGET_UBOOT_BOARDNAME="$(BOARD_NAME)"
|
||||
BR2_TARGET_UBOOT_2009_01=y
|
||||
# BR2_TARGET_UBOOT_2008_10 is not set
|
||||
# BR2_TARGET_UBOOT_1_3_4 is not set
|
||||
# BR2_TARGET_UBOOT_1_2_0_ATMEL is not set
|
||||
BR2_UBOOT_VERSION="2009.01"
|
||||
BR2_U_BOOT_SITE="ftp://ftp.denx.de/pub/u-boot"
|
||||
BR2_TARGET_U_BOOT_ARCH_PATCH=y
|
||||
BR2_TARGET_U_BOOT_2009_01_ARCH_AT91=y
|
||||
BR2_TARGET_U_BOOT_ARCH_AT91_PATCH_DIR="target/device/Atmel/arch-arm/u-boot/2009.01"
|
||||
BR2_TARGET_UBOOT_CUSTOM_PATCH=""
|
||||
BR2_TARGET_UBOOT_BOOTSOURCE_DATAFLASHCARD=y
|
||||
# BR2_TARGET_UBOOT_BOOTSOURCE_DATAFLASH is not set
|
||||
# BR2_TARGET_UBOOT_BOOTSOURCE_NANDFLASH is not set
|
||||
# BR2_TARGET_UBOOT_BOOTSOURCE_FLASH is not set
|
||||
# BR2_TARGET_UBOOT_BOOTSOURCE_SDCARD is not set
|
||||
# BR2_TARGET_UBOOT_BOOTSOURCE_EEPROM is not set
|
||||
BR2_TARGET_UBOOT_BOOTSOURCE="dataflash"
|
||||
# BR2_TARGET_UBOOT_SILENT is not set
|
||||
# BR2_TARGET_UBOOT_TOOL_MKIMAGE is not set
|
||||
# BR2_TARGET_UBOOT_TOOL_ENV is not set
|
||||
BR2_TARGET_UBOOT_DEFAULT_ENV=y
|
||||
# BR2_TARGET_UBOOT_SDRAM_SIZE_256MB is not set
|
||||
# BR2_TARGET_UBOOT_SDRAM_SIZE_128MB is not set
|
||||
BR2_TARGET_UBOOT_SDRAM_SIZE_64MB=y
|
||||
# BR2_TARGET_UBOOT_SDRAM_SIZE_32MB is not set
|
||||
# BR2_TARGET_UBOOT_SDRAM_SIZE_16MB is not set
|
||||
# BR2_TARGET_UBOOT_SDRAM_SIZE_8MB is not set
|
||||
BR2_TARGET_UBOOT_MEMORY_SIZE="64M"
|
||||
# BR2_TARGET_UBOOT_KERNEL_SIZE_1_25MB is not set
|
||||
# BR2_TARGET_UBOOT_KERNEL_SIZE_1_50MB is not set
|
||||
# BR2_TARGET_UBOOT_KERNEL_SIZE_1_75MB is not set
|
||||
BR2_TARGET_UBOOT_KERNEL_SIZE_2_00MB=y
|
||||
# BR2_TARGET_UBOOT_KERNEL_SIZE_2_25MB is not set
|
||||
# BR2_TARGET_UBOOT_KERNEL_SIZE_2_50MB is not set
|
||||
BR2_TARGET_UBOOT_DATAFLASH_SIZE_8MB=y
|
||||
# BR2_TARGET_UBOOT_DATAFLASH_SIZE_4MB is not set
|
||||
# BR2_TARGET_UBOOT_DATAFLASH_SIZE_2MB is not set
|
||||
# BR2_TARGET_UBOOT_DATAFLASH_SIZE_1MB is not set
|
||||
# BR2_TARGET_UBOOT_DATAFLASH_SIZE_0_50MB is not set
|
||||
# BR2_TARGET_UBOOT_DATAFLASH_SIZE_0_25MB is not set
|
||||
BR2_TARGET_UBOOT_END_OF_FLASH="C083FFFF"
|
||||
BR2_TARGET_UBOOT_KERNEL_START="21000000"
|
||||
BR2_TARGET_UBOOT_KERNEL_LOCATION="C0042000"
|
||||
BR2_TARGET_UBOOT_FILESYSTEM_START="21210000"
|
||||
BR2_TARGET_UBOOT_FILESYSTEM_LOCATION="C0252000"
|
||||
BR2_TARGET_UBOOT_FILESYSTEM_SIZE="6000000"
|
||||
BR2_TARGET_UBOOT_NETWORK=y
|
||||
BR2_TARGET_UBOOT_SERVERIP="10.175.196.221"
|
||||
BR2_TARGET_UBOOT_IPADDR="10.175.196.18"
|
||||
BR2_TARGET_UBOOT_GATEWAY="10.175.196.1"
|
||||
BR2_TARGET_UBOOT_NETMASK="255.255.255.0"
|
||||
BR2_TARGET_UBOOT_ETHADDR="04:25:fe:ed:00:18"
|
||||
BR2_BOOTSOURCE_DATAFLASHCARD=y
|
||||
BR2_BOOTSOURCE=y
|
||||
|
||||
#
|
||||
# Kernel
|
||||
#
|
||||
# BR2_KERNEL_none is not set
|
||||
BR2_KERNEL_LINUX_ADVANCED=y
|
||||
# BR2_KERNEL_LINUX is not set
|
||||
# BR2_KERNEL_HURD is not set
|
||||
BR2_PACKAGE_LINUX=y
|
||||
BR2_PACKAGE_LINUX_KCONFIG="$(BR2_BOARD_PATH)/$(BR2_BOARD_NAME)-linux-$(BR2_LINUX26_VERSION).config"
|
||||
BR2_PACKAGE_LINUX_FORMAT="uImage"
|
||||
BR2_KERNEL_CURRENT_VERSION="2.6.28.2"
|
||||
BR2_KERNEL_LATEST_2_6_28="2"
|
||||
BR2_KERNEL_LATEST_2_6_27="13"
|
||||
BR2_KERNEL_LATEST_2_6_26="8"
|
||||
BR2_KERNEL_LATEST_2_6_25="19"
|
||||
BR2_KERNEL_LATEST_2_6_24="7"
|
||||
BR2_KERNEL_LATEST_2_6_23="17"
|
||||
BR2_KERNEL_LATEST_2_6_22="19"
|
||||
BR2_KERNEL_LATEST_2_6_21="7"
|
||||
BR2_KERNEL_LATEST_2_6_20="21"
|
||||
BR2_KERNEL_PATCH_LEVEL="$(BR2_KERNEL_MINORLEVEL)"
|
||||
BR2_KERNEL_NEXT_VERSION="2.6.29"
|
||||
BR2_KERNEL_THIS_VERSION="2.6.28"
|
||||
BR2_KERNEL_SITE="http://ftp.kernel.org/pub/linux/kernel/v2.6"
|
||||
BR2_MM_PATCH_SITE="http://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6"
|
||||
BR2_RC_MM_PATCH_DIR="$(BR2_KERNEL_NEXT_VERSION)-rc$(BR2_KERNEL_RC_LEVEL)/2.6.$(BR2_KERNEL_NEXT_VERSION)-rc$(BR2_KERNEL_RC_LEVEL)-mm$(BR2_KERNEL_MM_LEVEL)"
|
||||
BR2_KERNEL_PATCH_SITE="$(BR2_KERNEL_SITE)"
|
||||
# BR2_LINUX_2_6_STABLE is not set
|
||||
BR2_LINUX_2_6_28=y
|
||||
# BR2_LINUX_2_6_27 is not set
|
||||
# BR2_LINUX_2_6_26 is not set
|
||||
# BR2_LINUX_2_6_25 is not set
|
||||
# BR2_LINUX_2_6_24 is not set
|
||||
# BR2_LINUX_2_6_23 is not set
|
||||
# BR2_LINUX_2_6_22 is not set
|
||||
# BR2_LINUX_2_6_21 is not set
|
||||
# BR2_LINUX_2_6_20 is not set
|
||||
# BR2_LINUX_2_6_29 is not set
|
||||
# BR2_LINUX26_CUSTOM is not set
|
||||
|
||||
#
|
||||
# Patches
|
||||
#
|
||||
BR2_KERNEL_ADD_KERNEL_ORG_PATCH=y
|
||||
# BR2_KERNEL_ADD_LATEST is not set
|
||||
# BR2_KERNEL_ADD_LATEST_MINORPATCH is not set
|
||||
BR2_KERNEL_ADD_MINORPATCH=y
|
||||
# BR2_KERNEL_ADD_LATEST_RC_PATCH is not set
|
||||
# BR2_KERNEL_ADD_RC_PATCH is not set
|
||||
# BR2_KERNEL_ADD_LATEST_SNAPSHOT is not set
|
||||
# BR2_KERNEL_ADD_SNAPSHOT is not set
|
||||
# BR2_KERNEL_ADD_LATEST_MM_PATCH is not set
|
||||
# BR2_KERNEL_ADD_MM_PATCH is not set
|
||||
BR2_KERNEL_ADD_PATCH=y
|
||||
BR2_KERNEL_MINORLEVEL="2"
|
||||
BR2_KERNEL_ARCH_PATCH_ENABLED=y
|
||||
BR2_ARCH_AT91_2_6_28=y
|
||||
# BR2_ARCH_AT91_2_6_27 is not set
|
||||
# BR2_ARCH_AT91_2_6_26 is not set
|
||||
# BR2_ARCH_AT91_2_6_25 is not set
|
||||
# BR2_ARCH_AT91_2_6_24 is not set
|
||||
# BR2_ARCH_AT91_2_6_22 is not set
|
||||
BR2_LINUX_BSP_PATCH=""
|
||||
BR2_KERNEL_PATCH="patch-$(BR2_DOWNLOAD_LINUX26_VERSION).$(BR2_KERNEL_PATCH_LEVEL).bz2"
|
||||
BR2_EXTRA_VERSION=".$(BR2_KERNEL_PATCH_LEVEL)"
|
||||
BR2_KERNEL_BASE=y
|
||||
BR2_DOWNLOAD_LINUX26_VERSION="$(BR2_KERNEL_THIS_VERSION)"
|
||||
BR2_LINUX26_VERSION="$(BR2_KERNEL_THIS_VERSION).$(BR2_KERNEL_PATCH_LEVEL)"
|
||||
|
||||
#
|
||||
# Linux Kernel Configuration
|
||||
#
|
||||
BR2_PACKAGE_LINUX_USE_KCONFIG=y
|
||||
# BR2_PACKAGE_LINUX_USE_DEFCONFIG is not set
|
||||
# BR2_PACKAGE_LINUX_USE_XCONFIG is not set
|
||||
# BR2_LINUX_BIN_BZIMAGE is not set
|
||||
BR2_LINUX_BIN_UIMAGE=y
|
||||
# BR2_LINUX_BIN_VMLINUX is not set
|
||||
# BR2_LINUX_BIN_ZIMAGE is not set
|
||||
# BR2_LINUX_BIN_CUSTOM is not set
|
||||
|
||||
#
|
||||
# Destinations for linux kernel binaries
|
||||
#
|
||||
# BR2_LINUX_COPYTO_ROOTFS is not set
|
||||
BR2_LINUX_COPYTO_TFTPBOOT=y
|
||||
BR2_LINUX_COPYTO=""
|
||||
BR2_LINUX_COPY_CONFIGURATION=y
|
||||
@@ -228,7 +228,7 @@ BR2_PTHREADS_OLD=y
|
||||
BR2_GCC_CROSS_CXX=y
|
||||
BR2_INSTALL_LIBSTDCPP=y
|
||||
BR2_TARGET_OPTIMIZATION="-Os -pipe"
|
||||
BR2_TOOLCHAIN_EXTERNAL_PATH="/path/to/staging_dir/usr"
|
||||
BR2_TOOLCHAIN_EXTERNAL_PATH="$(GCCROOT)"
|
||||
BR2_TOOLCHAIN_EXTERNAL_PREFIX="$(ARCH)-linux"
|
||||
|
||||
#
|
||||
|
||||
@@ -0,0 +1,684 @@
|
||||
#
|
||||
# Automatically generated make config: don't edit
|
||||
# Sat Jan 31 22:25:39 2009
|
||||
#
|
||||
BR2_HAVE_DOT_CONFIG=y
|
||||
BR2_VERSION="2009.02-svn"
|
||||
# BR2_alpha is not set
|
||||
BR2_arm=y
|
||||
# BR2_armeb is not set
|
||||
# BR2_avr32 is not set
|
||||
# BR2_cris is not set
|
||||
# BR2_ia64 is not set
|
||||
# BR2_i386 is not set
|
||||
# BR2_m68k is not set
|
||||
# BR2_mips is not set
|
||||
# BR2_mipsel is not set
|
||||
# BR2_nios2 is not set
|
||||
# BR2_powerpc is not set
|
||||
# BR2_sh is not set
|
||||
# BR2_sh64 is not set
|
||||
# BR2_sparc is not set
|
||||
# BR2_sparc64 is not set
|
||||
# BR2_x86_64 is not set
|
||||
BR2_generic_arm=y
|
||||
# BR2_arm7tdmi is not set
|
||||
# BR2_arm610 is not set
|
||||
# BR2_arm710 is not set
|
||||
# BR2_arm720t is not set
|
||||
# BR2_arm920t is not set
|
||||
# BR2_arm922t is not set
|
||||
# BR2_arm926t is not set
|
||||
# BR2_arm10t is not set
|
||||
# BR2_arm1136jf_s is not set
|
||||
# BR2_arm1176jz_s is not set
|
||||
# BR2_arm1176jzf_s is not set
|
||||
# BR2_sa110 is not set
|
||||
# BR2_sa1100 is not set
|
||||
# BR2_xscale is not set
|
||||
# BR2_iwmmxt is not set
|
||||
BR2_ARM_TYPE="GENERIC_ARM"
|
||||
BR2_ARM_OABI=y
|
||||
# BR2_ARM_EABI is not set
|
||||
BR2_ARCH="arm"
|
||||
BR2_ENDIAN="LITTLE"
|
||||
BR2_GCC_TARGET_ABI="apcs-gnu"
|
||||
|
||||
#
|
||||
# Target options
|
||||
#
|
||||
|
||||
#
|
||||
# Project Options
|
||||
#
|
||||
BR2_PROJECT="at91sam9261ek_ext_bare"
|
||||
BR2_HOSTNAME="at91sam9261ek"
|
||||
BR2_BANNER="Welcome to the Erik's uClibc development environment running on the AT91SAM9261EK"
|
||||
|
||||
#
|
||||
# Preset Devices
|
||||
#
|
||||
# BR2_TARGET_ARMLTD is not set
|
||||
BR2_BOARD_NAME="at91sam9261ek"
|
||||
BR2_BOARD_PATH="target/device/Atmel/$(BR2_BOARD_NAME)"
|
||||
BR2_TARGET_ATMEL=y
|
||||
|
||||
#
|
||||
# Atmel AT91 Specific Device Support
|
||||
#
|
||||
BR2_TARGET_AT91=y
|
||||
|
||||
#
|
||||
# Selection criteria
|
||||
#
|
||||
BR2_TARGET_ATMEL_ALL=y
|
||||
|
||||
#
|
||||
# Device Selection
|
||||
#
|
||||
# BR2_TARGET_AT91RM9200 is not set
|
||||
# BR2_TARGET_AT91SAM9260 is not set
|
||||
# BR2_TARGET_AT91SAM9G20 is not set
|
||||
BR2_TARGET_AT91SAM9261=y
|
||||
# BR2_TARGET_AT91SAM9261S is not set
|
||||
# BR2_TARGET_AT91SAM9RL64 is not set
|
||||
# BR2_TARGET_AT91SAM9263 is not set
|
||||
# BR2_TARGET_AT91SAM9G40 is not set
|
||||
# BR2_TARGET_AT91SAM9M10 is not set
|
||||
# BR2_TARGET_AT91SAM9M11 is not set
|
||||
# BR2_TARGET_AT91SAM9XE is not set
|
||||
# BR2_TARGET_AT572D940HF is not set
|
||||
# BR2_TARGET_AT91CAP9 is not set
|
||||
|
||||
#
|
||||
# Development Board Selection
|
||||
#
|
||||
# BR2_TARGET_AT91RM9200DF is not set
|
||||
# BR2_TARGET_AT91RM9200EK is not set
|
||||
# BR2_TARGET_AT91RM9200DK is not set
|
||||
# BR2_TARGET_AT91SAM9260DFC is not set
|
||||
# BR2_TARGET_AT91SAM9260EK is not set
|
||||
# BR2_TARGET_AT91SAM9G20DFC is not set
|
||||
# BR2_TARGET_AT91SAM9G20EK is not set
|
||||
# BR2_TARGET_AT91SAM9XEEK is not set
|
||||
BR2_TARGET_AT91SAM9261EK=y
|
||||
# BR2_TARGET_AT91SAM9RL64EK is not set
|
||||
# BR2_TARGET_AT91SAM9263EK is not set
|
||||
# BR2_TARGET_AT572D940DCM is not set
|
||||
# BR2_TARGET_AT91CAP9DK is not set
|
||||
# BR2_TARGET_AT91CAP9ADK is not set
|
||||
BR2_TARGET_AT91SAM9261EK_SPIMODE0=y
|
||||
# BR2_TARGET_AT91SAM9261EK_SPIMODE3 is not set
|
||||
BR2_TARGET_AT91_ADVANCED_INFO=y
|
||||
|
||||
#
|
||||
# Package support
|
||||
#
|
||||
|
||||
#
|
||||
# Secondary locations
|
||||
#
|
||||
BR2_AT91_LINUXPATCH_SITE="http://maxim.org.za/AT91RM9200/2.6"
|
||||
BR2_TARGET_ATMEL_COPYTO="/tftpboot"
|
||||
# BR2_TARGET_DATAFLASHBOOT is not set
|
||||
# BR2_TARGET_AT91BOOTSTRAP is not set
|
||||
# BR2_TARGET_KWIKBYTE is not set
|
||||
|
||||
#
|
||||
# Generic System Support
|
||||
#
|
||||
# BR2_TARGET_GENERIC_ACCESS_POINT is not set
|
||||
# BR2_TARGET_GENERIC_FIREWALL is not set
|
||||
# BR2_TARGET_GENERIC_DEV_SYSTEM is not set
|
||||
|
||||
#
|
||||
# Build options
|
||||
#
|
||||
BR2_WGET="wget --passive-ftp -nd"
|
||||
BR2_SVN_CO="svn co"
|
||||
BR2_SVN_UP="svn up"
|
||||
BR2_GIT="git clone"
|
||||
BR2_ZCAT="gzip -d -c"
|
||||
BR2_BZCAT="bzcat"
|
||||
BR2_TAR_OPTIONS=""
|
||||
BR2_DL_DIR="$(BASE_DIR)/dl"
|
||||
BR2_COPYTO=""
|
||||
|
||||
#
|
||||
# Mirrors and Download locations
|
||||
#
|
||||
BR2_PRIMARY_SITE=""
|
||||
BR2_BACKUP_SITE="http://buildroot.uclibc.org/downloads/sources/"
|
||||
BR2_SOURCEFORGE_MIRROR="easynews"
|
||||
BR2_KERNEL_MIRROR="http://www.kernel.org/pub/"
|
||||
BR2_GNU_MIRROR="http://ftp.gnu.org/pub/gnu"
|
||||
BR2_DEBIAN_MIRROR="http://ftp.debian.org"
|
||||
|
||||
#
|
||||
# Atmel Mirrors
|
||||
#
|
||||
BR2_ATMEL_MIRROR="ftp://www.at91.com/pub/buildroot"
|
||||
BR2_AT91_PATCH_MIRROR="http://maxim.org.za/AT91RM9200/2.6/"
|
||||
BR2_STAGING_DIR="$(BUILD_DIR)/staging_dir"
|
||||
# BR2_FPU_SUFFIX is not set
|
||||
BR2_TOPDIR_PREFIX=""
|
||||
BR2_TOPDIR_SUFFIX=""
|
||||
BR2_ROOTFS_PREFIX="at91sam9261ek-rootfs"
|
||||
BR2_ROOTFS_SUFFIX="$(DATE)"
|
||||
BR2_GNU_BUILD_SUFFIX="pc-linux-gnu"
|
||||
BR2_GNU_TARGET_SUFFIX="linux-uclibc"
|
||||
BR2_JLEVEL=2
|
||||
# BR2_PREFER_IMA is not set
|
||||
# BR2_DEPRECATED is not set
|
||||
BR2_RECENT=y
|
||||
# BR2_CONFIG_CACHE is not set
|
||||
# BR2_ENABLE_DEBUG is not set
|
||||
BR2_STRIP_strip=y
|
||||
# BR2_STRIP_sstrip is not set
|
||||
# BR2_STRIP_none is not set
|
||||
# BR2_OPTIMIZE_0 is not set
|
||||
# BR2_OPTIMIZE_1 is not set
|
||||
BR2_OPTIMIZE_2=y
|
||||
# BR2_OPTIMIZE_3 is not set
|
||||
# BR2_OPTIMIZE_S is not set
|
||||
# BR2_PREFER_STATIC_LIB is not set
|
||||
# BR2_HAVE_MANPAGES is not set
|
||||
# BR2_HAVE_INFOPAGES is not set
|
||||
# BR2_HAVE_DOCUMENTATION is not set
|
||||
# BR2_HAVE_DEVFILES is not set
|
||||
BR2_UPDATE_CONFIG=y
|
||||
|
||||
#
|
||||
# Toolchain
|
||||
#
|
||||
# BR2_TOOLCHAIN_BUILDROOT is not set
|
||||
BR2_TOOLCHAIN_EXTERNAL=y
|
||||
# BR2_TOOLCHAIN_EXTERNAL_SOURCE is not set
|
||||
# BR2_TOOLCHAIN_SOURCE is not set
|
||||
BR2_TOOLCHAIN_EXTERNAL_PATH="$(GCCROOT)"
|
||||
BR2_TOOLCHAIN_EXTERNAL_PREFIX="$(ARCH)-linux"
|
||||
BR2_EXT_GCC_VERSION_4_1_2=y
|
||||
BR2_EXT_GCC_VERSION_4_2_1=y
|
||||
BR2_EXT_GCC_VERSION_4_2_2=y
|
||||
BR2_EXT_GCC_VERSION_4_2_3=y
|
||||
BR2_EXT_BINUTILS_VERSION_2_17=y
|
||||
BR2_EXT_BINUTILS_VERSION_2_18=y
|
||||
BR2_EXT_UCLIBC_VERSION_0_9_28_3=y
|
||||
BR2_EXT_UCLIBC_VERSION_0_9_29=y
|
||||
BR2_EXT_UCLIBC_VERSION_0_9_30=y
|
||||
BR2_TOOLCHAIN_EXTERNAL_LIB_C="libc.so.0"
|
||||
BR2_TOOLCHAIN_EXTERNAL_LIBS="ld-uClibc.so.0 libcrypt.so.0 libdl.so.0 libgcc_s.so libm.so.0 libnsl.so.0 libpthread.so.0 libresolv.so.0 librt.so.0 libutil.so.0"
|
||||
BR2_TOOLCHAIN_EXTERNAL_STRIP=y
|
||||
|
||||
#
|
||||
# Gdb Options
|
||||
#
|
||||
# BR2_PACKAGE_GDB is not set
|
||||
# BR2_PACKAGE_GDB_SERVER is not set
|
||||
# BR2_PACKAGE_GDB_HOST is not set
|
||||
|
||||
#
|
||||
# Common Toolchain Options
|
||||
#
|
||||
BR2_LARGEFILE=y
|
||||
BR2_INET_IPV6=y
|
||||
BR2_INET_RPC=y
|
||||
BR2_ENABLE_LOCALE=y
|
||||
BR2_USE_WCHAR=y
|
||||
# BR2_SOFT_FLOAT is not set
|
||||
# BR2_PTHREADS_NONE is not set
|
||||
# BR2_PTHREADS is not set
|
||||
BR2_PTHREADS_OLD=y
|
||||
# BR2_PTHREADS_NATIVE is not set
|
||||
BR2_GCC_CROSS_CXX=y
|
||||
BR2_INSTALL_LIBSTDCPP=y
|
||||
BR2_TARGET_OPTIMIZATION="-Os -pipe"
|
||||
|
||||
#
|
||||
# Package Selection for the target
|
||||
#
|
||||
# BR2_PACKAGE_BUSYBOX is not set
|
||||
|
||||
#
|
||||
# The minimum needed to build a uClibc development system
|
||||
#
|
||||
# BR2_PACKAGE_BASH is not set
|
||||
# BR2_PACKAGE_BZIP2 is not set
|
||||
# BR2_PACKAGE_COREUTILS is not set
|
||||
# BR2_PACKAGE_DIFFUTILS is not set
|
||||
# BR2_PACKAGE_FINDUTILS is not set
|
||||
# BR2_PACKAGE_FLEX is not set
|
||||
# BR2_PACKAGE_GAWK is not set
|
||||
# BR2_PACKAGE_GCC_TARGET is not set
|
||||
# BR2_PACKAGE_GREP is not set
|
||||
# BR2_PACKAGE_MAKE is not set
|
||||
# BR2_PACKAGE_PATCH is not set
|
||||
# BR2_PACKAGE_SED is not set
|
||||
# BR2_PACKAGE_TAR is not set
|
||||
|
||||
#
|
||||
# Other development stuff
|
||||
#
|
||||
# BR2_PACKAGE_AUTOCONF is not set
|
||||
# BR2_PACKAGE_AUTOMAKE is not set
|
||||
# BR2_PACKAGE_BISON is not set
|
||||
# BR2_PACKAGE_CCACHE_TARGET is not set
|
||||
# BR2_PACKAGE_CVS is not set
|
||||
# BR2_PACKAGE_DISTCC is not set
|
||||
# BR2_PACKAGE_DMALLOC is not set
|
||||
# BR2_PACKAGE_FAKEROOT is not set
|
||||
# BR2_PACKAGE_GETTEXT is not set
|
||||
# BR2_PACKAGE_LIBINTL is not set
|
||||
# BR2_PACKAGE_LIBGMP is not set
|
||||
# BR2_PACKAGE_GPERF is not set
|
||||
# BR2_PACKAGE_LIBMPFR is not set
|
||||
# BR2_PACKAGE_LIBTOOL is not set
|
||||
# BR2_PACKAGE_M4 is not set
|
||||
# BR2_PACKAGE_OPROFILE is not set
|
||||
# BR2_PACKAGE_PKGCONFIG is not set
|
||||
# BR2_PACKAGE_READLINE is not set
|
||||
# BR2_PACKAGE_PCRE is not set
|
||||
|
||||
#
|
||||
# Other stuff
|
||||
#
|
||||
# BR2_PACKAGE_AT is not set
|
||||
# BR2_PACKAGE_BEECRYPT is not set
|
||||
# BR2_PACKAGE_BERKELEYDB is not set
|
||||
# BR2_PACKAGE_BSDIFF is not set
|
||||
# BR2_PACKAGE_BOOTUTILS is not set
|
||||
# BR2_PACKAGE_CUPS is not set
|
||||
# BR2_PACKAGE_CUSTOMIZE is not set
|
||||
# BR2_PACKAGE_DASH is not set
|
||||
# BR2_PACKAGE_FILE is not set
|
||||
# BR2_PACKAGE_GAMIN is not set
|
||||
# BR2_PACKAGE_ICU is not set
|
||||
# BR2_PACKAGE_KEXEC is not set
|
||||
# BR2_PACKAGE_LESS is not set
|
||||
# BR2_PACKAGE_LIBCONFIG is not set
|
||||
# BR2_PACKAGE_LIBCONFUSE is not set
|
||||
# BR2_PACKAGE_LIBDAEMON is not set
|
||||
# BR2_PACKAGE_LIBELF is not set
|
||||
# BR2_PACKAGE_LIBEVENT is not set
|
||||
# BR2_PACKAGE_LIBGCRYPT is not set
|
||||
# BR2_PACKAGE_LIBGPG_ERROR is not set
|
||||
# BR2_PACKAGE_LIBICONV is not set
|
||||
# BR2_PACKAGE_LIBIDN is not set
|
||||
# BR2_PACKAGE_LIBLOCKFILE is not set
|
||||
# BR2_PACKAGE_LIBOIL is not set
|
||||
# BR2_PACKAGE_LIBSYSFS is not set
|
||||
# BR2_PACKAGE_LOCKFILE_PROGS is not set
|
||||
# BR2_PACKAGE_LOGROTATE is not set
|
||||
# BR2_PACKAGE_LSOF is not set
|
||||
# BR2_PACKAGE_LTP-TESTSUITE is not set
|
||||
# BR2_PACKAGE_LTRACE is not set
|
||||
# BR2_PACKAGE_MEMSTAT is not set
|
||||
# BR2_PACKAGE_MODULE_INIT_TOOLS is not set
|
||||
# BR2_PACKAGE_NG_SPICE_REWORK is not set
|
||||
# BR2_PACKAGE_POPT is not set
|
||||
# BR2_PACKAGE_PROCPS is not set
|
||||
# BR2_PACKAGE_PSMISC is not set
|
||||
# BR2_PACKAGE_SCREEN is not set
|
||||
# BR2_PACKAGE_STARTUP_NOTIFICATION is not set
|
||||
# BR2_PACKAGE_STRACE is not set
|
||||
# BR2_PACKAGE_SUDO is not set
|
||||
# BR2_PACKAGE_SYSKLOGD is not set
|
||||
# BR2_PACKAGE_SYSVINIT is not set
|
||||
# BR2_PACKAGE_UTIL-LINUX is not set
|
||||
# BR2_PACKAGE_WHICH is not set
|
||||
|
||||
#
|
||||
# Database
|
||||
#
|
||||
# BR2_PACKAGE_MYSQL_CLIENT is not set
|
||||
# BR2_PACKAGE_SQLITE is not set
|
||||
|
||||
#
|
||||
# Text editors
|
||||
#
|
||||
# BR2_PACKAGE_ED is not set
|
||||
# BR2_PACKAGE_NANO is not set
|
||||
# BR2_PACKAGE_UEMACS is not set
|
||||
# BR2_PACKAGE_VIM is not set
|
||||
|
||||
#
|
||||
# Networking
|
||||
#
|
||||
|
||||
#
|
||||
# Networking applications
|
||||
#
|
||||
# BR2_PACKAGE_ARGUS is not set
|
||||
# BR2_PACKAGE_AVAHI is not set
|
||||
# BR2_PACKAGE_AXEL is not set
|
||||
# BR2_PACKAGE_BOA is not set
|
||||
# BR2_PACKAGE_BIND is not set
|
||||
# BR2_PACKAGE_BRIDGE is not set
|
||||
# BR2_PACKAGE_ISC_DHCP is not set
|
||||
# BR2_PACKAGE_DNSMASQ is not set
|
||||
# BR2_PACKAGE_DROPBEAR is not set
|
||||
# BR2_PACKAGE_ETHTOOL is not set
|
||||
# BR2_PACKAGE_HASERL is not set
|
||||
# BR2_PACKAGE_IFPLUGD is not set
|
||||
# BR2_PACKAGE_IPERF is not set
|
||||
# BR2_PACKAGE_IPROUTE2 is not set
|
||||
|
||||
#
|
||||
# ipsec-tools - disabled (requires openssl, flex and the flex library (libfl.a) )
|
||||
#
|
||||
# BR2_PACKAGE_IPTABLES is not set
|
||||
# BR2_PACKAGE_KISMET is not set
|
||||
# BR2_PACKAGE_L2TP is not set
|
||||
# BR2_PACKAGE_LIBCGI is not set
|
||||
# BR2_PACKAGE_LIBCGICC is not set
|
||||
# BR2_PACKAGE_LIBCURL is not set
|
||||
# BR2_PACKAGE_LIBDNET is not set
|
||||
# BR2_PACKAGE_LIBEXOSIP2 is not set
|
||||
# BR2_PACKAGE_LIBOSIP2 is not set
|
||||
# BR2_PACKAGE_LIBPCAP is not set
|
||||
# BR2_PACKAGE_LIBUPNP is not set
|
||||
# BR2_PACKAGE_LIGHTTPD is not set
|
||||
# BR2_PACKAGE_LINKS is not set
|
||||
# BR2_PACKAGE_LRZSZ is not set
|
||||
# BR2_PACKAGE_MDNSRESPONDER is not set
|
||||
# BR2_PACKAGE_MICROCOM is not set
|
||||
# BR2_PACKAGE_MIIDIAG is not set
|
||||
# BR2_PACKAGE_MROUTED is not set
|
||||
# BR2_PACKAGE_MUTT is not set
|
||||
# BR2_PACKAGE_NBD is not set
|
||||
# BR2_PACKAGE_NCFTP is not set
|
||||
# BR2_PACKAGE_NEON is not set
|
||||
# BR2_PACKAGE_NETCAT is not set
|
||||
# BR2_PACKAGE_NETKITBASE is not set
|
||||
# BR2_PACKAGE_NETKITTELNET is not set
|
||||
# BR2_PACKAGE_NETPLUG is not set
|
||||
# BR2_PACKAGE_NETSNMP is not set
|
||||
# BR2_PACKAGE_NFS_UTILS is not set
|
||||
# BR2_PACKAGE_NTP is not set
|
||||
# BR2_PACKAGE_OLSR is not set
|
||||
# BR2_PACKAGE_OPENNTPD is not set
|
||||
# BR2_PACKAGE_OPENSSH is not set
|
||||
# BR2_PACKAGE_OPENSSL is not set
|
||||
# BR2_PACKAGE_OPENVPN is not set
|
||||
# BR2_PACKAGE_OPENSWAN is not set
|
||||
# BR2_PACKAGE_PORTMAP is not set
|
||||
# BR2_PACKAGE_PPPD is not set
|
||||
# BR2_PACKAGE_RADVD is not set
|
||||
# BR2_PACKAGE_RP_PPPOE is not set
|
||||
# BR2_PACKAGE_PPTP_LINUX is not set
|
||||
# BR2_PACKAGE_PROFTPD is not set
|
||||
|
||||
#
|
||||
# quagga suite
|
||||
#
|
||||
# BR2_PACKAGE_QUAGGA_ZEBRA is not set
|
||||
# BR2_PACKAGE_QUAGGA_BGPD is not set
|
||||
# BR2_PACKAGE_QUAGGA_RIPD is not set
|
||||
# BR2_PACKAGE_QUAGGA_RIPNGD is not set
|
||||
# BR2_PACKAGE_QUAGGA_OSPFD is not set
|
||||
# BR2_PACKAGE_QUAGGA_OSPF6D is not set
|
||||
# BR2_PACKAGE_QUAGGA_WATCHQUAGGA is not set
|
||||
# BR2_PACKAGE_QUAGGA_ISISD is not set
|
||||
# BR2_PACKAGE_RSYNC is not set
|
||||
# BR2_PACKAGE_SAMBA is not set
|
||||
# BR2_PACKAGE_SOCAT is not set
|
||||
# BR2_PACKAGE_STUNNEL is not set
|
||||
# BR2_PACKAGE_TCPDUMP is not set
|
||||
# BR2_PACKAGE_DHCPDUMP is not set
|
||||
# BR2_PACKAGE_TFTPD is not set
|
||||
# BR2_PACKAGE_THTTPD is not set
|
||||
# BR2_PACKAGE_TINYHTTPD is not set
|
||||
# BR2_PACKAGE_TN5250 is not set
|
||||
# BR2_PACKAGE_TTCP is not set
|
||||
# BR2_PACKAGE_UDPCAST is not set
|
||||
# BR2_PACKAGE_VPNC is not set
|
||||
# BR2_PACKAGE_VSFTPD is not set
|
||||
# BR2_PACKAGE_VTUN is not set
|
||||
# BR2_PACKAGE_WEBIF is not set
|
||||
# BR2_PACKAGE_WGET is not set
|
||||
# BR2_PACKAGE_WIRELESS_TOOLS is not set
|
||||
|
||||
#
|
||||
# Hardware handling / blockdevices and filesystem maintenance
|
||||
#
|
||||
|
||||
#
|
||||
# dbus not available (need expat or libxml2)
|
||||
#
|
||||
# BR2_PACKAGE_DEVMEM2 is not set
|
||||
# BR2_PACKAGE_DM is not set
|
||||
# BR2_PACKAGE_DMRAID is not set
|
||||
# BR2_PACKAGE_E2FSPROGS is not set
|
||||
# BR2_PACKAGE_EEPROG is not set
|
||||
# BR2_PACKAGE_FCONFIG is not set
|
||||
# BR2_PACKAGE_FIS is not set
|
||||
# BR2_PACKAGE_LIBFUSE is not set
|
||||
# BR2_PACKAGE_GADGETFS_TEST is not set
|
||||
# BR2_PACKAGE_HAL is not set
|
||||
# BR2_PACKAGE_HDPARM is not set
|
||||
# BR2_PACKAGE_HOTPLUG is not set
|
||||
# BR2_PACKAGE_HWDATA is not set
|
||||
# BR2_PACKAGE_I2C_TOOLS is not set
|
||||
# BR2_PACKAGE_INPUT_TOOLS is not set
|
||||
# BR2_PACKAGE_IOSTAT is not set
|
||||
# BR2_PACKAGE_LIBAIO is not set
|
||||
# BR2_PACKAGE_LIBRAW1394 is not set
|
||||
# BR2_PACKAGE_LIBUSB is not set
|
||||
# BR2_PACKAGE_LM_SENSORS is not set
|
||||
# BR2_PACKAGE_LVM2 is not set
|
||||
# BR2_PACKAGE_MDADM is not set
|
||||
# BR2_PACKAGE_MEMTESTER is not set
|
||||
# BR2_PACKAGE_MKDOSFS is not set
|
||||
# BR2_PACKAGE_MTD is not set
|
||||
# BR2_PACKAGE_NTFS-3G is not set
|
||||
# BR2_PACKAGE_PCIUTILS is not set
|
||||
# BR2_PACKAGE_SETSERIAL is not set
|
||||
# BR2_PACKAGE_SFDISK is not set
|
||||
# BR2_PACKAGE_SMARTMONTOOLS is not set
|
||||
# BR2_PACKAGE_UDEV is not set
|
||||
# BR2_PACKAGE_USBMOUNT is not set
|
||||
# BR2_PACKAGE_USBUTILS is not set
|
||||
# BR2_PACKAGE_WIPE is not set
|
||||
# BR2_PACKAGE_XFSPROGS is not set
|
||||
|
||||
#
|
||||
# Audio and video libraries and applications
|
||||
#
|
||||
# BR2_PACKAGE_ALSA_LIB is not set
|
||||
|
||||
#
|
||||
# asterisk - disabled (required openssl and mpg123)
|
||||
#
|
||||
# BR2_PACKAGE_AUMIX is not set
|
||||
# BR2_PACKAGE_GSTREAMER is not set
|
||||
# BR2_PACKAGE_LIBID3TAG is not set
|
||||
# BR2_PACKAGE_LIBMAD is not set
|
||||
# BR2_PACKAGE_LIBMPD is not set
|
||||
# BR2_PACKAGE_LIBOGG is not set
|
||||
# BR2_PACKAGE_LIBSNDFILE is not set
|
||||
# BR2_PACKAGE_LIBTHEORA is not set
|
||||
|
||||
#
|
||||
# libvorbis requires the package libogg to build
|
||||
#
|
||||
# BR2_PACKAGE_MADPLAY is not set
|
||||
# BR2_PACKAGE_MPG123 is not set
|
||||
# BR2_PACKAGE_MPLAYER is not set
|
||||
# BR2_PACKAGE_SPEEX is not set
|
||||
# BR2_PACKAGE_FESTIVAL is not set
|
||||
# BR2_PACKAGE_VLC is not set
|
||||
|
||||
#
|
||||
# Graphic libraries and applications (graphic/text)
|
||||
#
|
||||
|
||||
#
|
||||
# text rendering libraries
|
||||
#
|
||||
# BR2_PACKAGE_NCURSES is not set
|
||||
# BR2_PACKAGE_NEWT is not set
|
||||
# BR2_PACKAGE_SLANG is not set
|
||||
|
||||
#
|
||||
# text rendering applications
|
||||
#
|
||||
# BR2_PACKAGE_DIALOG is not set
|
||||
|
||||
#
|
||||
# graphic libraries
|
||||
#
|
||||
# BR2_PACKAGE_DIRECTFB is not set
|
||||
# BR2_PACKAGE_FBDUMP is not set
|
||||
# BR2_PACKAGE_IMAGEMAGICK is not set
|
||||
# BR2_PACKAGE_JPEG is not set
|
||||
# BR2_PACKAGE_LIBART is not set
|
||||
# BR2_PACKAGE_LIBPNG is not set
|
||||
# BR2_PACKAGE_LIBUNGIF is not set
|
||||
# BR2_PACKAGE_LINUX_FUSION is not set
|
||||
# BR2_PACKAGE_PIXMAN is not set
|
||||
# BR2_PACKAGE_SDL is not set
|
||||
# BR2_PACKAGE_TIFF is not set
|
||||
|
||||
#
|
||||
# busybox graphic applications
|
||||
#
|
||||
|
||||
#
|
||||
# --> May be broken in busybox
|
||||
#
|
||||
# BR2_PACKAGE_FBV is not set
|
||||
# BR2_PACKAGE_FBSET is not set
|
||||
|
||||
#
|
||||
# other GUIs
|
||||
#
|
||||
# BR2_PACKAGE_QTOPIA4 is not set
|
||||
BR2_PACKAGE_XSERVER_none=y
|
||||
# BR2_PACKAGE_XSERVER_xorg is not set
|
||||
# BR2_PACKAGE_XSERVER_tinyx is not set
|
||||
|
||||
#
|
||||
# X libraries and helper libraries
|
||||
#
|
||||
# BR2_PACKAGE_ATK is not set
|
||||
# BR2_PACKAGE_PANGO is not set
|
||||
# BR2_PACKAGE_LIBDRM is not set
|
||||
# BR2_PACKAGE_LIBERATION is not set
|
||||
# BR2_PACKAGE_LIBGLIB12 is not set
|
||||
# BR2_PACKAGE_LIBGLIB2 is not set
|
||||
# BR2_PACKAGE_OPENMOTIF is not set
|
||||
# BR2_PACKAGE_FONTCONFIG is not set
|
||||
# BR2_PACKAGE_FREETYPE is not set
|
||||
# BR2_PACKAGE_TSLIB is not set
|
||||
# BR2_PACKAGE_WEBKIT is not set
|
||||
|
||||
#
|
||||
# X Window managers
|
||||
#
|
||||
# BR2_PACKAGE_MATCHBOX is not set
|
||||
|
||||
#
|
||||
# X applications
|
||||
#
|
||||
# BR2_PACKAGE_ALSAMIXERGUI is not set
|
||||
|
||||
#
|
||||
# dillo - disabled (requires jpeg,libglib12,libgtk12,zlib,libpng and Xorg(7))
|
||||
#
|
||||
# BR2_PACKAGE_GQVIEW is not set
|
||||
# BR2_PACKAGE_LEAFPAD is not set
|
||||
|
||||
#
|
||||
# midori - disabled (requires Xorg(7))
|
||||
#
|
||||
# BR2_PACKAGE_PCMANFM is not set
|
||||
# BR2_PACKAGE_SYLPHEED is not set
|
||||
# BR2_PACKAGE_TORSMO is not set
|
||||
# BR2_PACKAGE_X11VNC is not set
|
||||
# BR2_PACKAGE_XPDF is not set
|
||||
# BR2_PACKAGE_XSTROKE is not set
|
||||
# BR2_PACKAGE_XVKBD is not set
|
||||
|
||||
#
|
||||
# Compressors / decompressors
|
||||
#
|
||||
# BR2_PACKAGE_GZIP is not set
|
||||
# BR2_PACKAGE_LZO is not set
|
||||
# BR2_PACKAGE_LZMA_TARGET is not set
|
||||
# BR2_PACKAGE_LZMA_HOST is not set
|
||||
# BR2_PACKAGE_ZLIB is not set
|
||||
|
||||
#
|
||||
# Package managers
|
||||
#
|
||||
# BR2_PACKAGE_IPKG is not set
|
||||
# BR2_PACKAGE_PORTAGE is not set
|
||||
# BR2_PACKAGE_RPM is not set
|
||||
|
||||
#
|
||||
# Interpreter languages / Scripting
|
||||
#
|
||||
# BR2_PACKAGE_LUA is not set
|
||||
# BR2_PACKAGE_MICROPERL is not set
|
||||
# BR2_PACKAGE_PYTHON is not set
|
||||
# BR2_PACKAGE_RUBY is not set
|
||||
# BR2_PACKAGE_TCL is not set
|
||||
# BR2_PACKAGE_PHP is not set
|
||||
|
||||
#
|
||||
# XML handling
|
||||
#
|
||||
# BR2_PACKAGE_EXPAT is not set
|
||||
# BR2_PACKAGE_EZXML is not set
|
||||
# BR2_PACKAGE_LIBXML2 is not set
|
||||
# BR2_PACKAGE_LIBXSLT is not set
|
||||
# BR2_PACKAGE_XERCES is not set
|
||||
|
||||
#
|
||||
# Java
|
||||
#
|
||||
# BR2_PACKAGE_CLASSPATH is not set
|
||||
|
||||
#
|
||||
# Games
|
||||
#
|
||||
# BR2_PACKAGE_GNUCHESS is not set
|
||||
# BR2_PACKAGE_MAGICCUBE4D is not set
|
||||
# BR2_PACKAGE_PRBOOM is not set
|
||||
# BR2_PACKAGE_RUBIX is not set
|
||||
# BR2_PACKAGE_VICE is not set
|
||||
# BR2_PACKAGE_XBOARD is not set
|
||||
|
||||
#
|
||||
# Target filesystem options
|
||||
#
|
||||
|
||||
#
|
||||
# filesystem for target device
|
||||
#
|
||||
# BR2_TARGET_ROOTFS_CRAMFS is not set
|
||||
# BR2_TARGET_ROOTFS_CLOOP is not set
|
||||
# BR2_TARGET_ROOTFS_EXT2 is not set
|
||||
# BR2_TARGET_ROOTFS_JFFS2 is not set
|
||||
# BR2_TARGET_ROOTFS_UBIFS is not set
|
||||
# BR2_TARGET_ROOTFS_SQUASHFS is not set
|
||||
# BR2_TARGET_ROOTFS_TAR is not set
|
||||
# BR2_TARGET_ROOTFS_CPIO is not set
|
||||
# BR2_TARGET_ROOTFS_INITRAMFS is not set
|
||||
# BR2_TARGET_ROOTFS_ROMFS is not set
|
||||
|
||||
#
|
||||
# bootloader for target device
|
||||
#
|
||||
# BR2_TARGET_UBOOT is not set
|
||||
BR2_BOOTSOURCE_DATAFLASH=y
|
||||
BR2_BOOTSOURCE_NANDFLASH=y
|
||||
BR2_BOOTSOURCE=y
|
||||
|
||||
#
|
||||
# Kernel
|
||||
#
|
||||
BR2_KERNEL_none=y
|
||||
# BR2_KERNEL_LINUX_ADVANCED is not set
|
||||
# BR2_KERNEL_LINUX is not set
|
||||
# BR2_KERNEL_HURD is not set
|
||||
1069
target/device/Atmel/at91sam9261ek/at91sam9261ek_ext_defconfig
Normal file
1069
target/device/Atmel/at91sam9261ek/at91sam9261ek_ext_defconfig
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,683 @@
|
||||
#
|
||||
# Automatically generated make config: don't edit
|
||||
# Sat Jan 31 22:27:54 2009
|
||||
#
|
||||
BR2_HAVE_DOT_CONFIG=y
|
||||
BR2_VERSION="2009.02-svn"
|
||||
# BR2_alpha is not set
|
||||
BR2_arm=y
|
||||
# BR2_armeb is not set
|
||||
# BR2_avr32 is not set
|
||||
# BR2_cris is not set
|
||||
# BR2_ia64 is not set
|
||||
# BR2_i386 is not set
|
||||
# BR2_m68k is not set
|
||||
# BR2_mips is not set
|
||||
# BR2_mipsel is not set
|
||||
# BR2_nios2 is not set
|
||||
# BR2_powerpc is not set
|
||||
# BR2_sh is not set
|
||||
# BR2_sh64 is not set
|
||||
# BR2_sparc is not set
|
||||
# BR2_sparc64 is not set
|
||||
# BR2_x86_64 is not set
|
||||
BR2_generic_arm=y
|
||||
# BR2_arm7tdmi is not set
|
||||
# BR2_arm610 is not set
|
||||
# BR2_arm710 is not set
|
||||
# BR2_arm720t is not set
|
||||
# BR2_arm920t is not set
|
||||
# BR2_arm922t is not set
|
||||
# BR2_arm926t is not set
|
||||
# BR2_arm10t is not set
|
||||
# BR2_arm1136jf_s is not set
|
||||
# BR2_arm1176jz_s is not set
|
||||
# BR2_arm1176jzf_s is not set
|
||||
# BR2_sa110 is not set
|
||||
# BR2_sa1100 is not set
|
||||
# BR2_xscale is not set
|
||||
# BR2_iwmmxt is not set
|
||||
BR2_ARM_TYPE="GENERIC_ARM"
|
||||
BR2_ARM_OABI=y
|
||||
# BR2_ARM_EABI is not set
|
||||
BR2_ARCH="arm"
|
||||
BR2_ENDIAN="LITTLE"
|
||||
BR2_GCC_TARGET_ABI="apcs-gnu"
|
||||
|
||||
#
|
||||
# Target options
|
||||
#
|
||||
|
||||
#
|
||||
# Project Options
|
||||
#
|
||||
BR2_PROJECT="at91sam9263ek_ext_bare"
|
||||
BR2_HOSTNAME="at91sam9263ek"
|
||||
BR2_BANNER="Welcome to the Erik's uClibc development environment running on the AT91SAM9263EK"
|
||||
|
||||
#
|
||||
# Preset Devices
|
||||
#
|
||||
# BR2_TARGET_ARMLTD is not set
|
||||
BR2_BOARD_NAME="at91sam9263ek"
|
||||
BR2_BOARD_PATH="target/device/Atmel/$(BR2_BOARD_NAME)"
|
||||
BR2_TARGET_ATMEL=y
|
||||
|
||||
#
|
||||
# Atmel AT91 Specific Device Support
|
||||
#
|
||||
BR2_TARGET_AT91=y
|
||||
|
||||
#
|
||||
# Selection criteria
|
||||
#
|
||||
BR2_TARGET_ATMEL_ALL=y
|
||||
|
||||
#
|
||||
# Device Selection
|
||||
#
|
||||
# BR2_TARGET_AT91RM9200 is not set
|
||||
# BR2_TARGET_AT91SAM9260 is not set
|
||||
# BR2_TARGET_AT91SAM9G20 is not set
|
||||
# BR2_TARGET_AT91SAM9261 is not set
|
||||
# BR2_TARGET_AT91SAM9261S is not set
|
||||
# BR2_TARGET_AT91SAM9RL64 is not set
|
||||
BR2_TARGET_AT91SAM9263=y
|
||||
# BR2_TARGET_AT91SAM9G40 is not set
|
||||
# BR2_TARGET_AT91SAM9M10 is not set
|
||||
# BR2_TARGET_AT91SAM9M11 is not set
|
||||
# BR2_TARGET_AT91SAM9XE is not set
|
||||
# BR2_TARGET_AT572D940HF is not set
|
||||
# BR2_TARGET_AT91CAP9 is not set
|
||||
|
||||
#
|
||||
# Development Board Selection
|
||||
#
|
||||
# BR2_TARGET_AT91RM9200DF is not set
|
||||
# BR2_TARGET_AT91RM9200EK is not set
|
||||
# BR2_TARGET_AT91RM9200DK is not set
|
||||
# BR2_TARGET_AT91SAM9260DFC is not set
|
||||
# BR2_TARGET_AT91SAM9260EK is not set
|
||||
# BR2_TARGET_AT91SAM9G20DFC is not set
|
||||
# BR2_TARGET_AT91SAM9G20EK is not set
|
||||
# BR2_TARGET_AT91SAM9XEEK is not set
|
||||
# BR2_TARGET_AT91SAM9261EK is not set
|
||||
# BR2_TARGET_AT91SAM9RL64EK is not set
|
||||
BR2_TARGET_AT91SAM9263EK=y
|
||||
# BR2_TARGET_AT572D940DCM is not set
|
||||
# BR2_TARGET_AT91CAP9DK is not set
|
||||
# BR2_TARGET_AT91CAP9ADK is not set
|
||||
# BR2_TARGET_AT91SAM9261EK_SPIMODE0 is not set
|
||||
# BR2_TARGET_AT91SAM9261EK_SPIMODE3 is not set
|
||||
BR2_TARGET_AT91_ADVANCED_INFO=y
|
||||
|
||||
#
|
||||
# Package support
|
||||
#
|
||||
|
||||
#
|
||||
# Secondary locations
|
||||
#
|
||||
BR2_AT91_LINUXPATCH_SITE="http://maxim.org.za/AT91RM9200/2.6"
|
||||
BR2_TARGET_ATMEL_COPYTO="/tftpboot"
|
||||
# BR2_TARGET_AT91BOOTSTRAP is not set
|
||||
# BR2_TARGET_KWIKBYTE is not set
|
||||
|
||||
#
|
||||
# Generic System Support
|
||||
#
|
||||
# BR2_TARGET_GENERIC_ACCESS_POINT is not set
|
||||
# BR2_TARGET_GENERIC_FIREWALL is not set
|
||||
# BR2_TARGET_GENERIC_DEV_SYSTEM is not set
|
||||
|
||||
#
|
||||
# Build options
|
||||
#
|
||||
BR2_WGET="wget --passive-ftp -nd"
|
||||
BR2_SVN_CO="svn co"
|
||||
BR2_SVN_UP="svn up"
|
||||
BR2_GIT="git clone"
|
||||
BR2_ZCAT="gzip -d -c"
|
||||
BR2_BZCAT="bzcat"
|
||||
BR2_TAR_OPTIONS=""
|
||||
BR2_DL_DIR="$(BASE_DIR)/dl"
|
||||
BR2_COPYTO=""
|
||||
|
||||
#
|
||||
# Mirrors and Download locations
|
||||
#
|
||||
BR2_PRIMARY_SITE=""
|
||||
BR2_BACKUP_SITE="http://buildroot.uclibc.org/downloads/sources/"
|
||||
BR2_SOURCEFORGE_MIRROR="easynews"
|
||||
BR2_KERNEL_MIRROR="http://www.kernel.org/pub/"
|
||||
BR2_GNU_MIRROR="http://ftp.gnu.org/pub/gnu"
|
||||
BR2_DEBIAN_MIRROR="http://ftp.debian.org"
|
||||
|
||||
#
|
||||
# Atmel Mirrors
|
||||
#
|
||||
BR2_ATMEL_MIRROR="ftp://www.at91.com/pub/buildroot"
|
||||
BR2_AT91_PATCH_MIRROR="http://maxim.org.za/AT91RM9200/2.6/"
|
||||
BR2_STAGING_DIR="$(BUILD_DIR)/staging_dir"
|
||||
# BR2_FPU_SUFFIX is not set
|
||||
BR2_TOPDIR_PREFIX=""
|
||||
BR2_TOPDIR_SUFFIX=""
|
||||
BR2_ROOTFS_PREFIX="at91sam9263ek-rootfs"
|
||||
BR2_ROOTFS_SUFFIX="$(DATE)"
|
||||
BR2_GNU_BUILD_SUFFIX="pc-linux-gnu"
|
||||
BR2_GNU_TARGET_SUFFIX="linux-uclibc"
|
||||
BR2_JLEVEL=2
|
||||
# BR2_PREFER_IMA is not set
|
||||
# BR2_DEPRECATED is not set
|
||||
BR2_RECENT=y
|
||||
# BR2_CONFIG_CACHE is not set
|
||||
# BR2_ENABLE_DEBUG is not set
|
||||
BR2_STRIP_strip=y
|
||||
# BR2_STRIP_sstrip is not set
|
||||
# BR2_STRIP_none is not set
|
||||
# BR2_OPTIMIZE_0 is not set
|
||||
# BR2_OPTIMIZE_1 is not set
|
||||
BR2_OPTIMIZE_2=y
|
||||
# BR2_OPTIMIZE_3 is not set
|
||||
# BR2_OPTIMIZE_S is not set
|
||||
# BR2_PREFER_STATIC_LIB is not set
|
||||
# BR2_HAVE_MANPAGES is not set
|
||||
# BR2_HAVE_INFOPAGES is not set
|
||||
# BR2_HAVE_DOCUMENTATION is not set
|
||||
# BR2_HAVE_DEVFILES is not set
|
||||
BR2_UPDATE_CONFIG=y
|
||||
|
||||
#
|
||||
# Toolchain
|
||||
#
|
||||
# BR2_TOOLCHAIN_BUILDROOT is not set
|
||||
BR2_TOOLCHAIN_EXTERNAL=y
|
||||
# BR2_TOOLCHAIN_EXTERNAL_SOURCE is not set
|
||||
# BR2_TOOLCHAIN_SOURCE is not set
|
||||
BR2_TOOLCHAIN_EXTERNAL_PATH="$(GCCROOT)"
|
||||
BR2_TOOLCHAIN_EXTERNAL_PREFIX="$(ARCH)-linux"
|
||||
BR2_EXT_GCC_VERSION_4_1_2=y
|
||||
BR2_EXT_GCC_VERSION_4_2_1=y
|
||||
BR2_EXT_GCC_VERSION_4_2_2=y
|
||||
BR2_EXT_GCC_VERSION_4_2_3=y
|
||||
BR2_EXT_BINUTILS_VERSION_2_17=y
|
||||
BR2_EXT_BINUTILS_VERSION_2_18=y
|
||||
BR2_EXT_UCLIBC_VERSION_0_9_28_3=y
|
||||
BR2_EXT_UCLIBC_VERSION_0_9_29=y
|
||||
BR2_EXT_UCLIBC_VERSION_0_9_30=y
|
||||
BR2_TOOLCHAIN_EXTERNAL_LIB_C="libc.so.0"
|
||||
BR2_TOOLCHAIN_EXTERNAL_LIBS="ld-uClibc.so.0 libcrypt.so.0 libdl.so.0 libgcc_s.so libm.so.0 libnsl.so.0 libpthread.so.0 libresolv.so.0 librt.so.0 libutil.so.0"
|
||||
BR2_TOOLCHAIN_EXTERNAL_STRIP=y
|
||||
|
||||
#
|
||||
# Gdb Options
|
||||
#
|
||||
# BR2_PACKAGE_GDB is not set
|
||||
# BR2_PACKAGE_GDB_SERVER is not set
|
||||
# BR2_PACKAGE_GDB_HOST is not set
|
||||
|
||||
#
|
||||
# Common Toolchain Options
|
||||
#
|
||||
BR2_LARGEFILE=y
|
||||
BR2_INET_IPV6=y
|
||||
BR2_INET_RPC=y
|
||||
BR2_ENABLE_LOCALE=y
|
||||
BR2_USE_WCHAR=y
|
||||
# BR2_SOFT_FLOAT is not set
|
||||
# BR2_PTHREADS_NONE is not set
|
||||
# BR2_PTHREADS is not set
|
||||
BR2_PTHREADS_OLD=y
|
||||
# BR2_PTHREADS_NATIVE is not set
|
||||
BR2_GCC_CROSS_CXX=y
|
||||
BR2_INSTALL_LIBSTDCPP=y
|
||||
BR2_TARGET_OPTIMIZATION="-Os -pipe"
|
||||
|
||||
#
|
||||
# Package Selection for the target
|
||||
#
|
||||
# BR2_PACKAGE_BUSYBOX is not set
|
||||
|
||||
#
|
||||
# The minimum needed to build a uClibc development system
|
||||
#
|
||||
# BR2_PACKAGE_BASH is not set
|
||||
# BR2_PACKAGE_BZIP2 is not set
|
||||
# BR2_PACKAGE_COREUTILS is not set
|
||||
# BR2_PACKAGE_DIFFUTILS is not set
|
||||
# BR2_PACKAGE_FINDUTILS is not set
|
||||
# BR2_PACKAGE_FLEX is not set
|
||||
# BR2_PACKAGE_GAWK is not set
|
||||
# BR2_PACKAGE_GCC_TARGET is not set
|
||||
# BR2_PACKAGE_GREP is not set
|
||||
# BR2_PACKAGE_MAKE is not set
|
||||
# BR2_PACKAGE_PATCH is not set
|
||||
# BR2_PACKAGE_SED is not set
|
||||
# BR2_PACKAGE_TAR is not set
|
||||
|
||||
#
|
||||
# Other development stuff
|
||||
#
|
||||
# BR2_PACKAGE_AUTOCONF is not set
|
||||
# BR2_PACKAGE_AUTOMAKE is not set
|
||||
# BR2_PACKAGE_BISON is not set
|
||||
# BR2_PACKAGE_CCACHE_TARGET is not set
|
||||
# BR2_PACKAGE_CVS is not set
|
||||
# BR2_PACKAGE_DISTCC is not set
|
||||
# BR2_PACKAGE_DMALLOC is not set
|
||||
# BR2_PACKAGE_FAKEROOT is not set
|
||||
# BR2_PACKAGE_GETTEXT is not set
|
||||
# BR2_PACKAGE_LIBINTL is not set
|
||||
# BR2_PACKAGE_LIBGMP is not set
|
||||
# BR2_PACKAGE_GPERF is not set
|
||||
# BR2_PACKAGE_LIBMPFR is not set
|
||||
# BR2_PACKAGE_LIBTOOL is not set
|
||||
# BR2_PACKAGE_M4 is not set
|
||||
# BR2_PACKAGE_OPROFILE is not set
|
||||
# BR2_PACKAGE_PKGCONFIG is not set
|
||||
# BR2_PACKAGE_READLINE is not set
|
||||
# BR2_PACKAGE_PCRE is not set
|
||||
|
||||
#
|
||||
# Other stuff
|
||||
#
|
||||
# BR2_PACKAGE_AT is not set
|
||||
# BR2_PACKAGE_BEECRYPT is not set
|
||||
# BR2_PACKAGE_BERKELEYDB is not set
|
||||
# BR2_PACKAGE_BSDIFF is not set
|
||||
# BR2_PACKAGE_BOOTUTILS is not set
|
||||
# BR2_PACKAGE_CUPS is not set
|
||||
# BR2_PACKAGE_CUSTOMIZE is not set
|
||||
# BR2_PACKAGE_DASH is not set
|
||||
# BR2_PACKAGE_FILE is not set
|
||||
# BR2_PACKAGE_GAMIN is not set
|
||||
# BR2_PACKAGE_ICU is not set
|
||||
# BR2_PACKAGE_KEXEC is not set
|
||||
# BR2_PACKAGE_LESS is not set
|
||||
# BR2_PACKAGE_LIBCONFIG is not set
|
||||
# BR2_PACKAGE_LIBCONFUSE is not set
|
||||
# BR2_PACKAGE_LIBDAEMON is not set
|
||||
# BR2_PACKAGE_LIBELF is not set
|
||||
# BR2_PACKAGE_LIBEVENT is not set
|
||||
# BR2_PACKAGE_LIBGCRYPT is not set
|
||||
# BR2_PACKAGE_LIBGPG_ERROR is not set
|
||||
# BR2_PACKAGE_LIBICONV is not set
|
||||
# BR2_PACKAGE_LIBIDN is not set
|
||||
# BR2_PACKAGE_LIBLOCKFILE is not set
|
||||
# BR2_PACKAGE_LIBOIL is not set
|
||||
# BR2_PACKAGE_LIBSYSFS is not set
|
||||
# BR2_PACKAGE_LOCKFILE_PROGS is not set
|
||||
# BR2_PACKAGE_LOGROTATE is not set
|
||||
# BR2_PACKAGE_LSOF is not set
|
||||
# BR2_PACKAGE_LTP-TESTSUITE is not set
|
||||
# BR2_PACKAGE_LTRACE is not set
|
||||
# BR2_PACKAGE_MEMSTAT is not set
|
||||
# BR2_PACKAGE_MODULE_INIT_TOOLS is not set
|
||||
# BR2_PACKAGE_NG_SPICE_REWORK is not set
|
||||
# BR2_PACKAGE_POPT is not set
|
||||
# BR2_PACKAGE_PROCPS is not set
|
||||
# BR2_PACKAGE_PSMISC is not set
|
||||
# BR2_PACKAGE_SCREEN is not set
|
||||
# BR2_PACKAGE_STARTUP_NOTIFICATION is not set
|
||||
# BR2_PACKAGE_STRACE is not set
|
||||
# BR2_PACKAGE_SUDO is not set
|
||||
# BR2_PACKAGE_SYSKLOGD is not set
|
||||
# BR2_PACKAGE_SYSVINIT is not set
|
||||
# BR2_PACKAGE_UTIL-LINUX is not set
|
||||
# BR2_PACKAGE_WHICH is not set
|
||||
|
||||
#
|
||||
# Database
|
||||
#
|
||||
# BR2_PACKAGE_MYSQL_CLIENT is not set
|
||||
# BR2_PACKAGE_SQLITE is not set
|
||||
|
||||
#
|
||||
# Text editors
|
||||
#
|
||||
# BR2_PACKAGE_ED is not set
|
||||
# BR2_PACKAGE_NANO is not set
|
||||
# BR2_PACKAGE_UEMACS is not set
|
||||
# BR2_PACKAGE_VIM is not set
|
||||
|
||||
#
|
||||
# Networking
|
||||
#
|
||||
|
||||
#
|
||||
# Networking applications
|
||||
#
|
||||
# BR2_PACKAGE_ARGUS is not set
|
||||
# BR2_PACKAGE_AVAHI is not set
|
||||
# BR2_PACKAGE_AXEL is not set
|
||||
# BR2_PACKAGE_BOA is not set
|
||||
# BR2_PACKAGE_BIND is not set
|
||||
# BR2_PACKAGE_BRIDGE is not set
|
||||
# BR2_PACKAGE_ISC_DHCP is not set
|
||||
# BR2_PACKAGE_DNSMASQ is not set
|
||||
# BR2_PACKAGE_DROPBEAR is not set
|
||||
# BR2_PACKAGE_ETHTOOL is not set
|
||||
# BR2_PACKAGE_HASERL is not set
|
||||
# BR2_PACKAGE_IFPLUGD is not set
|
||||
# BR2_PACKAGE_IPERF is not set
|
||||
# BR2_PACKAGE_IPROUTE2 is not set
|
||||
|
||||
#
|
||||
# ipsec-tools - disabled (requires openssl, flex and the flex library (libfl.a) )
|
||||
#
|
||||
# BR2_PACKAGE_IPTABLES is not set
|
||||
# BR2_PACKAGE_KISMET is not set
|
||||
# BR2_PACKAGE_L2TP is not set
|
||||
# BR2_PACKAGE_LIBCGI is not set
|
||||
# BR2_PACKAGE_LIBCGICC is not set
|
||||
# BR2_PACKAGE_LIBCURL is not set
|
||||
# BR2_PACKAGE_LIBDNET is not set
|
||||
# BR2_PACKAGE_LIBEXOSIP2 is not set
|
||||
# BR2_PACKAGE_LIBOSIP2 is not set
|
||||
# BR2_PACKAGE_LIBPCAP is not set
|
||||
# BR2_PACKAGE_LIBUPNP is not set
|
||||
# BR2_PACKAGE_LIGHTTPD is not set
|
||||
# BR2_PACKAGE_LINKS is not set
|
||||
# BR2_PACKAGE_LRZSZ is not set
|
||||
# BR2_PACKAGE_MDNSRESPONDER is not set
|
||||
# BR2_PACKAGE_MICROCOM is not set
|
||||
# BR2_PACKAGE_MIIDIAG is not set
|
||||
# BR2_PACKAGE_MROUTED is not set
|
||||
# BR2_PACKAGE_MUTT is not set
|
||||
# BR2_PACKAGE_NBD is not set
|
||||
# BR2_PACKAGE_NCFTP is not set
|
||||
# BR2_PACKAGE_NEON is not set
|
||||
# BR2_PACKAGE_NETCAT is not set
|
||||
# BR2_PACKAGE_NETKITBASE is not set
|
||||
# BR2_PACKAGE_NETKITTELNET is not set
|
||||
# BR2_PACKAGE_NETPLUG is not set
|
||||
# BR2_PACKAGE_NETSNMP is not set
|
||||
# BR2_PACKAGE_NFS_UTILS is not set
|
||||
# BR2_PACKAGE_NTP is not set
|
||||
# BR2_PACKAGE_OLSR is not set
|
||||
# BR2_PACKAGE_OPENNTPD is not set
|
||||
# BR2_PACKAGE_OPENSSH is not set
|
||||
# BR2_PACKAGE_OPENSSL is not set
|
||||
# BR2_PACKAGE_OPENVPN is not set
|
||||
# BR2_PACKAGE_OPENSWAN is not set
|
||||
# BR2_PACKAGE_PORTMAP is not set
|
||||
# BR2_PACKAGE_PPPD is not set
|
||||
# BR2_PACKAGE_RADVD is not set
|
||||
# BR2_PACKAGE_RP_PPPOE is not set
|
||||
# BR2_PACKAGE_PPTP_LINUX is not set
|
||||
# BR2_PACKAGE_PROFTPD is not set
|
||||
|
||||
#
|
||||
# quagga suite
|
||||
#
|
||||
# BR2_PACKAGE_QUAGGA_ZEBRA is not set
|
||||
# BR2_PACKAGE_QUAGGA_BGPD is not set
|
||||
# BR2_PACKAGE_QUAGGA_RIPD is not set
|
||||
# BR2_PACKAGE_QUAGGA_RIPNGD is not set
|
||||
# BR2_PACKAGE_QUAGGA_OSPFD is not set
|
||||
# BR2_PACKAGE_QUAGGA_OSPF6D is not set
|
||||
# BR2_PACKAGE_QUAGGA_WATCHQUAGGA is not set
|
||||
# BR2_PACKAGE_QUAGGA_ISISD is not set
|
||||
# BR2_PACKAGE_RSYNC is not set
|
||||
# BR2_PACKAGE_SAMBA is not set
|
||||
# BR2_PACKAGE_SOCAT is not set
|
||||
# BR2_PACKAGE_STUNNEL is not set
|
||||
# BR2_PACKAGE_TCPDUMP is not set
|
||||
# BR2_PACKAGE_DHCPDUMP is not set
|
||||
# BR2_PACKAGE_TFTPD is not set
|
||||
# BR2_PACKAGE_THTTPD is not set
|
||||
# BR2_PACKAGE_TINYHTTPD is not set
|
||||
# BR2_PACKAGE_TN5250 is not set
|
||||
# BR2_PACKAGE_TTCP is not set
|
||||
# BR2_PACKAGE_UDPCAST is not set
|
||||
# BR2_PACKAGE_VPNC is not set
|
||||
# BR2_PACKAGE_VSFTPD is not set
|
||||
# BR2_PACKAGE_VTUN is not set
|
||||
# BR2_PACKAGE_WEBIF is not set
|
||||
# BR2_PACKAGE_WGET is not set
|
||||
# BR2_PACKAGE_WIRELESS_TOOLS is not set
|
||||
|
||||
#
|
||||
# Hardware handling / blockdevices and filesystem maintenance
|
||||
#
|
||||
|
||||
#
|
||||
# dbus not available (need expat or libxml2)
|
||||
#
|
||||
# BR2_PACKAGE_DEVMEM2 is not set
|
||||
# BR2_PACKAGE_DM is not set
|
||||
# BR2_PACKAGE_DMRAID is not set
|
||||
# BR2_PACKAGE_E2FSPROGS is not set
|
||||
# BR2_PACKAGE_EEPROG is not set
|
||||
# BR2_PACKAGE_FCONFIG is not set
|
||||
# BR2_PACKAGE_FIS is not set
|
||||
# BR2_PACKAGE_LIBFUSE is not set
|
||||
# BR2_PACKAGE_GADGETFS_TEST is not set
|
||||
# BR2_PACKAGE_HAL is not set
|
||||
# BR2_PACKAGE_HDPARM is not set
|
||||
# BR2_PACKAGE_HOTPLUG is not set
|
||||
# BR2_PACKAGE_HWDATA is not set
|
||||
# BR2_PACKAGE_I2C_TOOLS is not set
|
||||
# BR2_PACKAGE_INPUT_TOOLS is not set
|
||||
# BR2_PACKAGE_IOSTAT is not set
|
||||
# BR2_PACKAGE_LIBAIO is not set
|
||||
# BR2_PACKAGE_LIBRAW1394 is not set
|
||||
# BR2_PACKAGE_LIBUSB is not set
|
||||
# BR2_PACKAGE_LM_SENSORS is not set
|
||||
# BR2_PACKAGE_LVM2 is not set
|
||||
# BR2_PACKAGE_MDADM is not set
|
||||
# BR2_PACKAGE_MEMTESTER is not set
|
||||
# BR2_PACKAGE_MKDOSFS is not set
|
||||
# BR2_PACKAGE_MTD is not set
|
||||
# BR2_PACKAGE_NTFS-3G is not set
|
||||
# BR2_PACKAGE_PCIUTILS is not set
|
||||
# BR2_PACKAGE_SETSERIAL is not set
|
||||
# BR2_PACKAGE_SFDISK is not set
|
||||
# BR2_PACKAGE_SMARTMONTOOLS is not set
|
||||
# BR2_PACKAGE_UDEV is not set
|
||||
# BR2_PACKAGE_USBMOUNT is not set
|
||||
# BR2_PACKAGE_USBUTILS is not set
|
||||
# BR2_PACKAGE_WIPE is not set
|
||||
# BR2_PACKAGE_XFSPROGS is not set
|
||||
|
||||
#
|
||||
# Audio and video libraries and applications
|
||||
#
|
||||
# BR2_PACKAGE_ALSA_LIB is not set
|
||||
|
||||
#
|
||||
# asterisk - disabled (required openssl and mpg123)
|
||||
#
|
||||
# BR2_PACKAGE_AUMIX is not set
|
||||
# BR2_PACKAGE_GSTREAMER is not set
|
||||
# BR2_PACKAGE_LIBID3TAG is not set
|
||||
# BR2_PACKAGE_LIBMAD is not set
|
||||
# BR2_PACKAGE_LIBMPD is not set
|
||||
# BR2_PACKAGE_LIBOGG is not set
|
||||
# BR2_PACKAGE_LIBSNDFILE is not set
|
||||
# BR2_PACKAGE_LIBTHEORA is not set
|
||||
|
||||
#
|
||||
# libvorbis requires the package libogg to build
|
||||
#
|
||||
# BR2_PACKAGE_MADPLAY is not set
|
||||
# BR2_PACKAGE_MPG123 is not set
|
||||
# BR2_PACKAGE_MPLAYER is not set
|
||||
# BR2_PACKAGE_SPEEX is not set
|
||||
# BR2_PACKAGE_FESTIVAL is not set
|
||||
# BR2_PACKAGE_VLC is not set
|
||||
|
||||
#
|
||||
# Graphic libraries and applications (graphic/text)
|
||||
#
|
||||
|
||||
#
|
||||
# text rendering libraries
|
||||
#
|
||||
# BR2_PACKAGE_NCURSES is not set
|
||||
# BR2_PACKAGE_NEWT is not set
|
||||
# BR2_PACKAGE_SLANG is not set
|
||||
|
||||
#
|
||||
# text rendering applications
|
||||
#
|
||||
# BR2_PACKAGE_DIALOG is not set
|
||||
|
||||
#
|
||||
# graphic libraries
|
||||
#
|
||||
# BR2_PACKAGE_DIRECTFB is not set
|
||||
# BR2_PACKAGE_FBDUMP is not set
|
||||
# BR2_PACKAGE_IMAGEMAGICK is not set
|
||||
# BR2_PACKAGE_JPEG is not set
|
||||
# BR2_PACKAGE_LIBART is not set
|
||||
# BR2_PACKAGE_LIBPNG is not set
|
||||
# BR2_PACKAGE_LIBUNGIF is not set
|
||||
# BR2_PACKAGE_LINUX_FUSION is not set
|
||||
# BR2_PACKAGE_PIXMAN is not set
|
||||
# BR2_PACKAGE_SDL is not set
|
||||
# BR2_PACKAGE_TIFF is not set
|
||||
|
||||
#
|
||||
# busybox graphic applications
|
||||
#
|
||||
|
||||
#
|
||||
# --> May be broken in busybox
|
||||
#
|
||||
# BR2_PACKAGE_FBV is not set
|
||||
# BR2_PACKAGE_FBSET is not set
|
||||
|
||||
#
|
||||
# other GUIs
|
||||
#
|
||||
# BR2_PACKAGE_QTOPIA4 is not set
|
||||
BR2_PACKAGE_XSERVER_none=y
|
||||
# BR2_PACKAGE_XSERVER_xorg is not set
|
||||
# BR2_PACKAGE_XSERVER_tinyx is not set
|
||||
|
||||
#
|
||||
# X libraries and helper libraries
|
||||
#
|
||||
# BR2_PACKAGE_ATK is not set
|
||||
# BR2_PACKAGE_PANGO is not set
|
||||
# BR2_PACKAGE_LIBDRM is not set
|
||||
# BR2_PACKAGE_LIBERATION is not set
|
||||
# BR2_PACKAGE_LIBGLIB12 is not set
|
||||
# BR2_PACKAGE_LIBGLIB2 is not set
|
||||
# BR2_PACKAGE_OPENMOTIF is not set
|
||||
# BR2_PACKAGE_FONTCONFIG is not set
|
||||
# BR2_PACKAGE_FREETYPE is not set
|
||||
# BR2_PACKAGE_TSLIB is not set
|
||||
# BR2_PACKAGE_WEBKIT is not set
|
||||
|
||||
#
|
||||
# X Window managers
|
||||
#
|
||||
# BR2_PACKAGE_MATCHBOX is not set
|
||||
|
||||
#
|
||||
# X applications
|
||||
#
|
||||
# BR2_PACKAGE_ALSAMIXERGUI is not set
|
||||
|
||||
#
|
||||
# dillo - disabled (requires jpeg,libglib12,libgtk12,zlib,libpng and Xorg(7))
|
||||
#
|
||||
# BR2_PACKAGE_GQVIEW is not set
|
||||
# BR2_PACKAGE_LEAFPAD is not set
|
||||
|
||||
#
|
||||
# midori - disabled (requires Xorg(7))
|
||||
#
|
||||
# BR2_PACKAGE_PCMANFM is not set
|
||||
# BR2_PACKAGE_SYLPHEED is not set
|
||||
# BR2_PACKAGE_TORSMO is not set
|
||||
# BR2_PACKAGE_X11VNC is not set
|
||||
# BR2_PACKAGE_XPDF is not set
|
||||
# BR2_PACKAGE_XSTROKE is not set
|
||||
# BR2_PACKAGE_XVKBD is not set
|
||||
|
||||
#
|
||||
# Compressors / decompressors
|
||||
#
|
||||
# BR2_PACKAGE_GZIP is not set
|
||||
# BR2_PACKAGE_LZO is not set
|
||||
# BR2_PACKAGE_LZMA_TARGET is not set
|
||||
# BR2_PACKAGE_LZMA_HOST is not set
|
||||
# BR2_PACKAGE_ZLIB is not set
|
||||
|
||||
#
|
||||
# Package managers
|
||||
#
|
||||
# BR2_PACKAGE_IPKG is not set
|
||||
# BR2_PACKAGE_PORTAGE is not set
|
||||
# BR2_PACKAGE_RPM is not set
|
||||
|
||||
#
|
||||
# Interpreter languages / Scripting
|
||||
#
|
||||
# BR2_PACKAGE_LUA is not set
|
||||
# BR2_PACKAGE_MICROPERL is not set
|
||||
# BR2_PACKAGE_PYTHON is not set
|
||||
# BR2_PACKAGE_RUBY is not set
|
||||
# BR2_PACKAGE_TCL is not set
|
||||
# BR2_PACKAGE_PHP is not set
|
||||
|
||||
#
|
||||
# XML handling
|
||||
#
|
||||
# BR2_PACKAGE_EXPAT is not set
|
||||
# BR2_PACKAGE_EZXML is not set
|
||||
# BR2_PACKAGE_LIBXML2 is not set
|
||||
# BR2_PACKAGE_LIBXSLT is not set
|
||||
# BR2_PACKAGE_XERCES is not set
|
||||
|
||||
#
|
||||
# Java
|
||||
#
|
||||
# BR2_PACKAGE_CLASSPATH is not set
|
||||
|
||||
#
|
||||
# Games
|
||||
#
|
||||
# BR2_PACKAGE_GNUCHESS is not set
|
||||
# BR2_PACKAGE_MAGICCUBE4D is not set
|
||||
# BR2_PACKAGE_PRBOOM is not set
|
||||
# BR2_PACKAGE_RUBIX is not set
|
||||
# BR2_PACKAGE_VICE is not set
|
||||
# BR2_PACKAGE_XBOARD is not set
|
||||
|
||||
#
|
||||
# Target filesystem options
|
||||
#
|
||||
|
||||
#
|
||||
# filesystem for target device
|
||||
#
|
||||
# BR2_TARGET_ROOTFS_CRAMFS is not set
|
||||
# BR2_TARGET_ROOTFS_CLOOP is not set
|
||||
# BR2_TARGET_ROOTFS_EXT2 is not set
|
||||
# BR2_TARGET_ROOTFS_JFFS2 is not set
|
||||
# BR2_TARGET_ROOTFS_UBIFS is not set
|
||||
# BR2_TARGET_ROOTFS_SQUASHFS is not set
|
||||
# BR2_TARGET_ROOTFS_TAR is not set
|
||||
# BR2_TARGET_ROOTFS_CPIO is not set
|
||||
# BR2_TARGET_ROOTFS_INITRAMFS is not set
|
||||
# BR2_TARGET_ROOTFS_ROMFS is not set
|
||||
|
||||
#
|
||||
# bootloader for target device
|
||||
#
|
||||
# BR2_TARGET_UBOOT is not set
|
||||
BR2_BOOTSOURCE_DATAFLASHCARD=y
|
||||
BR2_BOOTSOURCE_NANDFLASH=y
|
||||
BR2_BOOTSOURCE=y
|
||||
|
||||
#
|
||||
# Kernel
|
||||
#
|
||||
BR2_KERNEL_none=y
|
||||
# BR2_KERNEL_LINUX_ADVANCED is not set
|
||||
# BR2_KERNEL_LINUX is not set
|
||||
# BR2_KERNEL_HURD is not set
|
||||
1031
target/device/Atmel/at91sam9263ek/at91sam9263ek_ext_defconfig
Normal file
1031
target/device/Atmel/at91sam9263ek/at91sam9263ek_ext_defconfig
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
#
|
||||
# Automatically generated make config: don't edit
|
||||
# Thu Jan 29 22:34:19 2009
|
||||
# Sun Feb 1 16:26:09 2009
|
||||
#
|
||||
BR2_HAVE_DOT_CONFIG=y
|
||||
BR2_VERSION="2009.02-svn"
|
||||
@@ -42,6 +42,7 @@ BR2_ARM_OABI=y
|
||||
# BR2_ARM_EABI is not set
|
||||
BR2_ARCH="arm"
|
||||
BR2_ENDIAN="LITTLE"
|
||||
BR2_GCC_TARGET_ABI="apcs-gnu"
|
||||
|
||||
#
|
||||
# Target options
|
||||
@@ -238,6 +239,7 @@ BR2_EXT_UCLIBC_VERSION_0_9_30=y
|
||||
# BR2_KERNEL_HEADERS_2_6_27 is not set
|
||||
BR2_KERNEL_HEADERS_2_6_28=y
|
||||
# BR2_KERNEL_HEADERS_SNAP is not set
|
||||
# BR2_KERNEL_HEADERS_PATCH_DIR is not set
|
||||
BR2_DEFAULT_KERNEL_HEADERS="2.6.28.2"
|
||||
|
||||
#
|
||||
@@ -248,12 +250,6 @@ BR2_DEFAULT_KERNEL_HEADERS="2.6.28.2"
|
||||
BR2_UCLIBC_VERSION_0_9_30=y
|
||||
# BR2_UCLIBC_VERSION_SNAPSHOT is not set
|
||||
BR2_UCLIBC_CONFIG="toolchain/uClibc/uClibc-0.9.30.config"
|
||||
BR2_ENABLE_LOCALE=y
|
||||
# BR2_ENABLE_LOCALE_PREGENERATED is not set
|
||||
# BR2_PTHREADS_NONE is not set
|
||||
# BR2_PTHREADS is not set
|
||||
BR2_PTHREADS_OLD=y
|
||||
# BR2_PTHREADS_NATIVE is not set
|
||||
# BR2_PTHREAD_DEBUG is not set
|
||||
BR2_UCLIBC_PROGRAM_INVOCATION=y
|
||||
# BR2_UCLIBC_INSTALL_TEST_SUITE is not set
|
||||
@@ -291,9 +287,7 @@ BR2_GCC_VERSION="4.3.2"
|
||||
BR2_TOOLCHAIN_SYSROOT=y
|
||||
# BR2_GCC_USE_SJLJ_EXCEPTIONS is not set
|
||||
BR2_EXTRA_GCC_CONFIG_OPTIONS=""
|
||||
BR2_GCC_CROSS_CXX=y
|
||||
# BR2_GCC_CROSS_FORTRAN is not set
|
||||
BR2_INSTALL_LIBSTDCPP=y
|
||||
# BR2_INSTALL_LIBGCJ is not set
|
||||
# BR2_INSTALL_OBJC is not set
|
||||
# BR2_INSTALL_FORTRAN is not set
|
||||
@@ -315,18 +309,26 @@ BR2_CCACHE_DIR="$(TOOL_BUILD_DIR)/ccache-$(CCACHE_VER)/cache"
|
||||
#
|
||||
# Common Toolchain Options
|
||||
#
|
||||
BR2_LARGEFILE=y
|
||||
BR2_INET_IPV6=y
|
||||
BR2_INET_RPC=y
|
||||
BR2_ENABLE_LOCALE=y
|
||||
# BR2_ENABLE_LOCALE_PREGENERATED is not set
|
||||
BR2_USE_WCHAR=y
|
||||
# BR2_SOFT_FLOAT is not set
|
||||
# BR2_PTHREADS_NONE is not set
|
||||
# BR2_PTHREADS is not set
|
||||
BR2_PTHREADS_OLD=y
|
||||
# BR2_PTHREADS_NATIVE is not set
|
||||
BR2_GCC_CROSS_CXX=y
|
||||
BR2_INSTALL_LIBSTDCPP=y
|
||||
BR2_TARGET_OPTIMIZATION="-Os -pipe"
|
||||
# BR2_ELF2FLT is not set
|
||||
# BR2_MKLIBS is not set
|
||||
BR2_PACKAGE_SSTRIP_TARGET=y
|
||||
BR2_PACKAGE_SSTRIP_HOST=y
|
||||
# BR2_ENABLE_MULTILIB is not set
|
||||
BR2_LARGEFILE=y
|
||||
BR2_INET_IPV6=y
|
||||
BR2_INET_RPC=y
|
||||
BR2_USE_WCHAR=y
|
||||
# BR2_SOFT_FLOAT is not set
|
||||
# BR2_VFP_FLOAT is not set
|
||||
BR2_TARGET_OPTIMIZATION="-Os -pipe"
|
||||
BR2_CROSS_TOOLCHAIN_TARGET_UTILS=y
|
||||
|
||||
#
|
||||
@@ -379,8 +381,6 @@ BR2_PACKAGE_LIBINTL=y
|
||||
# BR2_PACKAGE_OPROFILE is not set
|
||||
BR2_PACKAGE_PKGCONFIG=y
|
||||
BR2_PACKAGE_READLINE=y
|
||||
BR2_PACKAGE_READLINE_TARGET=y
|
||||
# BR2_PACKAGE_READLINE_HEADERS is not set
|
||||
# BR2_PACKAGE_PCRE is not set
|
||||
|
||||
#
|
||||
@@ -944,15 +944,11 @@ BR2_KERNEL_ADD_PATCH=y
|
||||
BR2_KERNEL_MINORLEVEL="2"
|
||||
BR2_KERNEL_ARCH_PATCH_ENABLED=y
|
||||
BR2_ARCH_AT91_2_6_28=y
|
||||
# BR2_ARCH_AT91_2_6_27_7 is not set
|
||||
# BR2_ARCH_AT91_2_6_27 is not set
|
||||
# BR2_ARCH_AT91_2_6_26 is not set
|
||||
# BR2_ARCH_AT91_2_6_26_RC3 is not set
|
||||
# BR2_ARCH_AT91_2_6_25 is not set
|
||||
# BR2_ARCH_AT91_2_6_24 is not set
|
||||
# BR2_ARCH_AT91_2_6_22_1 is not set
|
||||
# BR2_ARCH_AT91_2_6_21_5 is not set
|
||||
# BR2_ARCH_AT91_2_6_21_1 is not set
|
||||
# BR2_ARCH_AT91_2_6_20_4 is not set
|
||||
# BR2_ARCH_AT91_2_6_22 is not set
|
||||
BR2_LINUX_BSP_PATCH=""
|
||||
BR2_KERNEL_PATCH="patch-$(BR2_DOWNLOAD_LINUX26_VERSION).$(BR2_KERNEL_PATCH_LEVEL).bz2"
|
||||
BR2_EXTRA_VERSION=".$(BR2_KERNEL_PATCH_LEVEL)"
|
||||
|
||||
@@ -0,0 +1,680 @@
|
||||
#
|
||||
# Automatically generated make config: don't edit
|
||||
# Sat Jan 31 22:13:56 2009
|
||||
#
|
||||
BR2_HAVE_DOT_CONFIG=y
|
||||
BR2_VERSION="2009.02-svn"
|
||||
# BR2_alpha is not set
|
||||
BR2_arm=y
|
||||
# BR2_armeb is not set
|
||||
# BR2_avr32 is not set
|
||||
# BR2_cris is not set
|
||||
# BR2_ia64 is not set
|
||||
# BR2_i386 is not set
|
||||
# BR2_m68k is not set
|
||||
# BR2_mips is not set
|
||||
# BR2_mipsel is not set
|
||||
# BR2_nios2 is not set
|
||||
# BR2_powerpc is not set
|
||||
# BR2_sh is not set
|
||||
# BR2_sh64 is not set
|
||||
# BR2_sparc is not set
|
||||
# BR2_sparc64 is not set
|
||||
# BR2_x86_64 is not set
|
||||
BR2_generic_arm=y
|
||||
# BR2_arm7tdmi is not set
|
||||
# BR2_arm610 is not set
|
||||
# BR2_arm710 is not set
|
||||
# BR2_arm720t is not set
|
||||
# BR2_arm920t is not set
|
||||
# BR2_arm922t is not set
|
||||
# BR2_arm926t is not set
|
||||
# BR2_arm10t is not set
|
||||
# BR2_arm1136jf_s is not set
|
||||
# BR2_arm1176jz_s is not set
|
||||
# BR2_arm1176jzf_s is not set
|
||||
# BR2_sa110 is not set
|
||||
# BR2_sa1100 is not set
|
||||
# BR2_xscale is not set
|
||||
# BR2_iwmmxt is not set
|
||||
BR2_ARM_TYPE="GENERIC_ARM"
|
||||
BR2_ARM_OABI=y
|
||||
# BR2_ARM_EABI is not set
|
||||
BR2_ARCH="arm"
|
||||
BR2_ENDIAN="LITTLE"
|
||||
BR2_GCC_TARGET_ABI="apcs-gnu"
|
||||
|
||||
#
|
||||
# Target options
|
||||
#
|
||||
|
||||
#
|
||||
# Project Options
|
||||
#
|
||||
BR2_PROJECT="at91sam9g20dfc_ext_bare"
|
||||
BR2_HOSTNAME="at91sam9g20dfc"
|
||||
BR2_BANNER="Welcome to the Erik's uClibc development environment running on the AT91SAM9G20EK"
|
||||
|
||||
#
|
||||
# Preset Devices
|
||||
#
|
||||
# BR2_TARGET_ARMLTD is not set
|
||||
BR2_BOARD_NAME="at91sam9g20dfc"
|
||||
BR2_BOARD_PATH="target/device/Atmel/$(BR2_BOARD_NAME)"
|
||||
BR2_TARGET_ATMEL=y
|
||||
|
||||
#
|
||||
# Atmel AT91 Specific Device Support
|
||||
#
|
||||
BR2_TARGET_AT91=y
|
||||
|
||||
#
|
||||
# Selection criteria
|
||||
#
|
||||
BR2_TARGET_ATMEL_ALL=y
|
||||
|
||||
#
|
||||
# Device Selection
|
||||
#
|
||||
# BR2_TARGET_AT91RM9200 is not set
|
||||
# BR2_TARGET_AT91SAM9260 is not set
|
||||
BR2_TARGET_AT91SAM9G20=y
|
||||
# BR2_TARGET_AT91SAM9261 is not set
|
||||
# BR2_TARGET_AT91SAM9261S is not set
|
||||
# BR2_TARGET_AT91SAM9RL64 is not set
|
||||
# BR2_TARGET_AT91SAM9263 is not set
|
||||
# BR2_TARGET_AT91SAM9G40 is not set
|
||||
# BR2_TARGET_AT91SAM9M10 is not set
|
||||
# BR2_TARGET_AT91SAM9M11 is not set
|
||||
# BR2_TARGET_AT91SAM9XE is not set
|
||||
# BR2_TARGET_AT572D940HF is not set
|
||||
# BR2_TARGET_AT91CAP9 is not set
|
||||
|
||||
#
|
||||
# Development Board Selection
|
||||
#
|
||||
# BR2_TARGET_AT91RM9200DF is not set
|
||||
# BR2_TARGET_AT91RM9200EK is not set
|
||||
# BR2_TARGET_AT91RM9200DK is not set
|
||||
# BR2_TARGET_AT91SAM9260DFC is not set
|
||||
# BR2_TARGET_AT91SAM9260EK is not set
|
||||
BR2_TARGET_AT91SAM9G20DFC=y
|
||||
# BR2_TARGET_AT91SAM9G20EK is not set
|
||||
# BR2_TARGET_AT91SAM9XEEK is not set
|
||||
# BR2_TARGET_AT91SAM9261EK is not set
|
||||
# BR2_TARGET_AT91SAM9RL64EK is not set
|
||||
# BR2_TARGET_AT91SAM9263EK is not set
|
||||
# BR2_TARGET_AT572D940DCM is not set
|
||||
# BR2_TARGET_AT91CAP9DK is not set
|
||||
# BR2_TARGET_AT91CAP9ADK is not set
|
||||
BR2_TARGET_AT91_ADVANCED_INFO=y
|
||||
|
||||
#
|
||||
# Package support
|
||||
#
|
||||
|
||||
#
|
||||
# Secondary locations
|
||||
#
|
||||
BR2_AT91_LINUXPATCH_SITE="http://maxim.org.za/AT91RM9200/2.6"
|
||||
BR2_TARGET_ATMEL_COPYTO="/tftpboot"
|
||||
# BR2_TARGET_AT91BOOTSTRAP is not set
|
||||
# BR2_TARGET_KWIKBYTE is not set
|
||||
|
||||
#
|
||||
# Generic System Support
|
||||
#
|
||||
# BR2_TARGET_GENERIC_ACCESS_POINT is not set
|
||||
# BR2_TARGET_GENERIC_FIREWALL is not set
|
||||
# BR2_TARGET_GENERIC_DEV_SYSTEM is not set
|
||||
|
||||
#
|
||||
# Build options
|
||||
#
|
||||
BR2_WGET="wget --passive-ftp -nd"
|
||||
BR2_SVN_CO="svn co"
|
||||
BR2_SVN_UP="svn up"
|
||||
BR2_GIT="git clone"
|
||||
BR2_ZCAT="gzip -d -c"
|
||||
BR2_BZCAT="bzcat"
|
||||
BR2_TAR_OPTIONS=""
|
||||
BR2_DL_DIR="$(BASE_DIR)/dl"
|
||||
BR2_COPYTO=""
|
||||
|
||||
#
|
||||
# Mirrors and Download locations
|
||||
#
|
||||
BR2_PRIMARY_SITE=""
|
||||
BR2_BACKUP_SITE="http://buildroot.uclibc.org/downloads/sources/"
|
||||
BR2_SOURCEFORGE_MIRROR="easynews"
|
||||
BR2_KERNEL_MIRROR="http://www.kernel.org/pub/"
|
||||
BR2_GNU_MIRROR="http://ftp.gnu.org/pub/gnu"
|
||||
BR2_DEBIAN_MIRROR="http://ftp.debian.org"
|
||||
|
||||
#
|
||||
# Atmel Mirrors
|
||||
#
|
||||
BR2_ATMEL_MIRROR="ftp://www.at91.com/pub/buildroot"
|
||||
BR2_AT91_PATCH_MIRROR="http://maxim.org.za/AT91RM9200/2.6/"
|
||||
BR2_STAGING_DIR="$(BUILD_DIR)/staging_dir"
|
||||
# BR2_FPU_SUFFIX is not set
|
||||
BR2_TOPDIR_PREFIX=""
|
||||
BR2_TOPDIR_SUFFIX=""
|
||||
BR2_ROOTFS_PREFIX="at91sam9g20dfc-rootfs"
|
||||
BR2_ROOTFS_SUFFIX="$(DATE)"
|
||||
BR2_GNU_BUILD_SUFFIX="pc-linux-gnu"
|
||||
BR2_GNU_TARGET_SUFFIX="linux-uclibc"
|
||||
BR2_JLEVEL=2
|
||||
# BR2_PREFER_IMA is not set
|
||||
# BR2_DEPRECATED is not set
|
||||
BR2_RECENT=y
|
||||
# BR2_CONFIG_CACHE is not set
|
||||
# BR2_ENABLE_DEBUG is not set
|
||||
BR2_STRIP_strip=y
|
||||
# BR2_STRIP_sstrip is not set
|
||||
# BR2_STRIP_none is not set
|
||||
# BR2_OPTIMIZE_0 is not set
|
||||
# BR2_OPTIMIZE_1 is not set
|
||||
BR2_OPTIMIZE_2=y
|
||||
# BR2_OPTIMIZE_3 is not set
|
||||
# BR2_OPTIMIZE_S is not set
|
||||
# BR2_PREFER_STATIC_LIB is not set
|
||||
# BR2_HAVE_MANPAGES is not set
|
||||
# BR2_HAVE_INFOPAGES is not set
|
||||
# BR2_HAVE_DOCUMENTATION is not set
|
||||
# BR2_HAVE_DEVFILES is not set
|
||||
BR2_UPDATE_CONFIG=y
|
||||
|
||||
#
|
||||
# Toolchain
|
||||
#
|
||||
# BR2_TOOLCHAIN_BUILDROOT is not set
|
||||
BR2_TOOLCHAIN_EXTERNAL=y
|
||||
# BR2_TOOLCHAIN_EXTERNAL_SOURCE is not set
|
||||
# BR2_TOOLCHAIN_SOURCE is not set
|
||||
BR2_TOOLCHAIN_EXTERNAL_PATH="$(GCCROOT)"
|
||||
BR2_TOOLCHAIN_EXTERNAL_PREFIX="$(ARCH)-linux"
|
||||
BR2_EXT_GCC_VERSION_4_1_2=y
|
||||
BR2_EXT_GCC_VERSION_4_2_1=y
|
||||
BR2_EXT_GCC_VERSION_4_2_2=y
|
||||
BR2_EXT_GCC_VERSION_4_2_3=y
|
||||
BR2_EXT_BINUTILS_VERSION_2_17=y
|
||||
BR2_EXT_BINUTILS_VERSION_2_18=y
|
||||
BR2_EXT_UCLIBC_VERSION_0_9_28_3=y
|
||||
BR2_EXT_UCLIBC_VERSION_0_9_29=y
|
||||
BR2_EXT_UCLIBC_VERSION_0_9_30=y
|
||||
BR2_TOOLCHAIN_EXTERNAL_LIB_C="libc.so.0"
|
||||
BR2_TOOLCHAIN_EXTERNAL_LIBS="ld-uClibc.so.0 libcrypt.so.0 libdl.so.0 libgcc_s.so libm.so.0 libnsl.so.0 libpthread.so.0 libresolv.so.0 librt.so.0 libutil.so.0"
|
||||
BR2_TOOLCHAIN_EXTERNAL_STRIP=y
|
||||
|
||||
#
|
||||
# Gdb Options
|
||||
#
|
||||
# BR2_PACKAGE_GDB is not set
|
||||
# BR2_PACKAGE_GDB_SERVER is not set
|
||||
# BR2_PACKAGE_GDB_HOST is not set
|
||||
|
||||
#
|
||||
# Common Toolchain Options
|
||||
#
|
||||
BR2_LARGEFILE=y
|
||||
BR2_INET_IPV6=y
|
||||
BR2_INET_RPC=y
|
||||
BR2_ENABLE_LOCALE=y
|
||||
BR2_USE_WCHAR=y
|
||||
# BR2_SOFT_FLOAT is not set
|
||||
# BR2_PTHREADS_NONE is not set
|
||||
# BR2_PTHREADS is not set
|
||||
BR2_PTHREADS_OLD=y
|
||||
# BR2_PTHREADS_NATIVE is not set
|
||||
BR2_GCC_CROSS_CXX=y
|
||||
BR2_INSTALL_LIBSTDCPP=y
|
||||
BR2_TARGET_OPTIMIZATION="-Os -pipe"
|
||||
|
||||
#
|
||||
# Package Selection for the target
|
||||
#
|
||||
# BR2_PACKAGE_BUSYBOX is not set
|
||||
|
||||
#
|
||||
# The minimum needed to build a uClibc development system
|
||||
#
|
||||
# BR2_PACKAGE_BASH is not set
|
||||
# BR2_PACKAGE_BZIP2 is not set
|
||||
# BR2_PACKAGE_COREUTILS is not set
|
||||
# BR2_PACKAGE_DIFFUTILS is not set
|
||||
# BR2_PACKAGE_FINDUTILS is not set
|
||||
# BR2_PACKAGE_FLEX is not set
|
||||
# BR2_PACKAGE_GAWK is not set
|
||||
# BR2_PACKAGE_GCC_TARGET is not set
|
||||
# BR2_PACKAGE_GREP is not set
|
||||
# BR2_PACKAGE_MAKE is not set
|
||||
# BR2_PACKAGE_PATCH is not set
|
||||
# BR2_PACKAGE_SED is not set
|
||||
# BR2_PACKAGE_TAR is not set
|
||||
|
||||
#
|
||||
# Other development stuff
|
||||
#
|
||||
# BR2_PACKAGE_AUTOCONF is not set
|
||||
# BR2_PACKAGE_AUTOMAKE is not set
|
||||
# BR2_PACKAGE_BISON is not set
|
||||
# BR2_PACKAGE_CCACHE_TARGET is not set
|
||||
# BR2_PACKAGE_CVS is not set
|
||||
# BR2_PACKAGE_DISTCC is not set
|
||||
# BR2_PACKAGE_DMALLOC is not set
|
||||
# BR2_PACKAGE_FAKEROOT is not set
|
||||
# BR2_PACKAGE_GETTEXT is not set
|
||||
# BR2_PACKAGE_LIBINTL is not set
|
||||
# BR2_PACKAGE_LIBGMP is not set
|
||||
# BR2_PACKAGE_GPERF is not set
|
||||
# BR2_PACKAGE_LIBMPFR is not set
|
||||
# BR2_PACKAGE_LIBTOOL is not set
|
||||
# BR2_PACKAGE_M4 is not set
|
||||
# BR2_PACKAGE_OPROFILE is not set
|
||||
# BR2_PACKAGE_PKGCONFIG is not set
|
||||
# BR2_PACKAGE_READLINE is not set
|
||||
# BR2_PACKAGE_PCRE is not set
|
||||
|
||||
#
|
||||
# Other stuff
|
||||
#
|
||||
# BR2_PACKAGE_AT is not set
|
||||
# BR2_PACKAGE_BEECRYPT is not set
|
||||
# BR2_PACKAGE_BERKELEYDB is not set
|
||||
# BR2_PACKAGE_BSDIFF is not set
|
||||
# BR2_PACKAGE_BOOTUTILS is not set
|
||||
# BR2_PACKAGE_CUPS is not set
|
||||
# BR2_PACKAGE_CUSTOMIZE is not set
|
||||
# BR2_PACKAGE_DASH is not set
|
||||
# BR2_PACKAGE_FILE is not set
|
||||
# BR2_PACKAGE_GAMIN is not set
|
||||
# BR2_PACKAGE_ICU is not set
|
||||
# BR2_PACKAGE_KEXEC is not set
|
||||
# BR2_PACKAGE_LESS is not set
|
||||
# BR2_PACKAGE_LIBCONFIG is not set
|
||||
# BR2_PACKAGE_LIBCONFUSE is not set
|
||||
# BR2_PACKAGE_LIBDAEMON is not set
|
||||
# BR2_PACKAGE_LIBELF is not set
|
||||
# BR2_PACKAGE_LIBEVENT is not set
|
||||
# BR2_PACKAGE_LIBGCRYPT is not set
|
||||
# BR2_PACKAGE_LIBGPG_ERROR is not set
|
||||
# BR2_PACKAGE_LIBICONV is not set
|
||||
# BR2_PACKAGE_LIBIDN is not set
|
||||
# BR2_PACKAGE_LIBLOCKFILE is not set
|
||||
# BR2_PACKAGE_LIBOIL is not set
|
||||
# BR2_PACKAGE_LIBSYSFS is not set
|
||||
# BR2_PACKAGE_LOCKFILE_PROGS is not set
|
||||
# BR2_PACKAGE_LOGROTATE is not set
|
||||
# BR2_PACKAGE_LSOF is not set
|
||||
# BR2_PACKAGE_LTP-TESTSUITE is not set
|
||||
# BR2_PACKAGE_LTRACE is not set
|
||||
# BR2_PACKAGE_MEMSTAT is not set
|
||||
# BR2_PACKAGE_MODULE_INIT_TOOLS is not set
|
||||
# BR2_PACKAGE_NG_SPICE_REWORK is not set
|
||||
# BR2_PACKAGE_POPT is not set
|
||||
# BR2_PACKAGE_PROCPS is not set
|
||||
# BR2_PACKAGE_PSMISC is not set
|
||||
# BR2_PACKAGE_SCREEN is not set
|
||||
# BR2_PACKAGE_STARTUP_NOTIFICATION is not set
|
||||
# BR2_PACKAGE_STRACE is not set
|
||||
# BR2_PACKAGE_SUDO is not set
|
||||
# BR2_PACKAGE_SYSKLOGD is not set
|
||||
# BR2_PACKAGE_SYSVINIT is not set
|
||||
# BR2_PACKAGE_UTIL-LINUX is not set
|
||||
# BR2_PACKAGE_WHICH is not set
|
||||
|
||||
#
|
||||
# Database
|
||||
#
|
||||
# BR2_PACKAGE_MYSQL_CLIENT is not set
|
||||
# BR2_PACKAGE_SQLITE is not set
|
||||
|
||||
#
|
||||
# Text editors
|
||||
#
|
||||
# BR2_PACKAGE_ED is not set
|
||||
# BR2_PACKAGE_NANO is not set
|
||||
# BR2_PACKAGE_UEMACS is not set
|
||||
# BR2_PACKAGE_VIM is not set
|
||||
|
||||
#
|
||||
# Networking
|
||||
#
|
||||
|
||||
#
|
||||
# Networking applications
|
||||
#
|
||||
# BR2_PACKAGE_ARGUS is not set
|
||||
# BR2_PACKAGE_AVAHI is not set
|
||||
# BR2_PACKAGE_AXEL is not set
|
||||
# BR2_PACKAGE_BOA is not set
|
||||
# BR2_PACKAGE_BIND is not set
|
||||
# BR2_PACKAGE_BRIDGE is not set
|
||||
# BR2_PACKAGE_ISC_DHCP is not set
|
||||
# BR2_PACKAGE_DNSMASQ is not set
|
||||
# BR2_PACKAGE_DROPBEAR is not set
|
||||
# BR2_PACKAGE_ETHTOOL is not set
|
||||
# BR2_PACKAGE_HASERL is not set
|
||||
# BR2_PACKAGE_IFPLUGD is not set
|
||||
# BR2_PACKAGE_IPERF is not set
|
||||
# BR2_PACKAGE_IPROUTE2 is not set
|
||||
|
||||
#
|
||||
# ipsec-tools - disabled (requires openssl, flex and the flex library (libfl.a) )
|
||||
#
|
||||
# BR2_PACKAGE_IPTABLES is not set
|
||||
# BR2_PACKAGE_KISMET is not set
|
||||
# BR2_PACKAGE_L2TP is not set
|
||||
# BR2_PACKAGE_LIBCGI is not set
|
||||
# BR2_PACKAGE_LIBCGICC is not set
|
||||
# BR2_PACKAGE_LIBCURL is not set
|
||||
# BR2_PACKAGE_LIBDNET is not set
|
||||
# BR2_PACKAGE_LIBEXOSIP2 is not set
|
||||
# BR2_PACKAGE_LIBOSIP2 is not set
|
||||
# BR2_PACKAGE_LIBPCAP is not set
|
||||
# BR2_PACKAGE_LIBUPNP is not set
|
||||
# BR2_PACKAGE_LIGHTTPD is not set
|
||||
# BR2_PACKAGE_LINKS is not set
|
||||
# BR2_PACKAGE_LRZSZ is not set
|
||||
# BR2_PACKAGE_MDNSRESPONDER is not set
|
||||
# BR2_PACKAGE_MICROCOM is not set
|
||||
# BR2_PACKAGE_MIIDIAG is not set
|
||||
# BR2_PACKAGE_MROUTED is not set
|
||||
# BR2_PACKAGE_MUTT is not set
|
||||
# BR2_PACKAGE_NBD is not set
|
||||
# BR2_PACKAGE_NCFTP is not set
|
||||
# BR2_PACKAGE_NEON is not set
|
||||
# BR2_PACKAGE_NETCAT is not set
|
||||
# BR2_PACKAGE_NETKITBASE is not set
|
||||
# BR2_PACKAGE_NETKITTELNET is not set
|
||||
# BR2_PACKAGE_NETPLUG is not set
|
||||
# BR2_PACKAGE_NETSNMP is not set
|
||||
# BR2_PACKAGE_NFS_UTILS is not set
|
||||
# BR2_PACKAGE_NTP is not set
|
||||
# BR2_PACKAGE_OLSR is not set
|
||||
# BR2_PACKAGE_OPENNTPD is not set
|
||||
# BR2_PACKAGE_OPENSSH is not set
|
||||
# BR2_PACKAGE_OPENSSL is not set
|
||||
# BR2_PACKAGE_OPENVPN is not set
|
||||
# BR2_PACKAGE_OPENSWAN is not set
|
||||
# BR2_PACKAGE_PORTMAP is not set
|
||||
# BR2_PACKAGE_PPPD is not set
|
||||
# BR2_PACKAGE_RADVD is not set
|
||||
# BR2_PACKAGE_RP_PPPOE is not set
|
||||
# BR2_PACKAGE_PPTP_LINUX is not set
|
||||
# BR2_PACKAGE_PROFTPD is not set
|
||||
|
||||
#
|
||||
# quagga suite
|
||||
#
|
||||
# BR2_PACKAGE_QUAGGA_ZEBRA is not set
|
||||
# BR2_PACKAGE_QUAGGA_BGPD is not set
|
||||
# BR2_PACKAGE_QUAGGA_RIPD is not set
|
||||
# BR2_PACKAGE_QUAGGA_RIPNGD is not set
|
||||
# BR2_PACKAGE_QUAGGA_OSPFD is not set
|
||||
# BR2_PACKAGE_QUAGGA_OSPF6D is not set
|
||||
# BR2_PACKAGE_QUAGGA_WATCHQUAGGA is not set
|
||||
# BR2_PACKAGE_QUAGGA_ISISD is not set
|
||||
# BR2_PACKAGE_RSYNC is not set
|
||||
# BR2_PACKAGE_SAMBA is not set
|
||||
# BR2_PACKAGE_SOCAT is not set
|
||||
# BR2_PACKAGE_STUNNEL is not set
|
||||
# BR2_PACKAGE_TCPDUMP is not set
|
||||
# BR2_PACKAGE_DHCPDUMP is not set
|
||||
# BR2_PACKAGE_TFTPD is not set
|
||||
# BR2_PACKAGE_THTTPD is not set
|
||||
# BR2_PACKAGE_TINYHTTPD is not set
|
||||
# BR2_PACKAGE_TN5250 is not set
|
||||
# BR2_PACKAGE_TTCP is not set
|
||||
# BR2_PACKAGE_UDPCAST is not set
|
||||
# BR2_PACKAGE_VPNC is not set
|
||||
# BR2_PACKAGE_VSFTPD is not set
|
||||
# BR2_PACKAGE_VTUN is not set
|
||||
# BR2_PACKAGE_WEBIF is not set
|
||||
# BR2_PACKAGE_WGET is not set
|
||||
# BR2_PACKAGE_WIRELESS_TOOLS is not set
|
||||
|
||||
#
|
||||
# Hardware handling / blockdevices and filesystem maintenance
|
||||
#
|
||||
|
||||
#
|
||||
# dbus not available (need expat or libxml2)
|
||||
#
|
||||
# BR2_PACKAGE_DEVMEM2 is not set
|
||||
# BR2_PACKAGE_DM is not set
|
||||
# BR2_PACKAGE_DMRAID is not set
|
||||
# BR2_PACKAGE_E2FSPROGS is not set
|
||||
# BR2_PACKAGE_EEPROG is not set
|
||||
# BR2_PACKAGE_FCONFIG is not set
|
||||
# BR2_PACKAGE_FIS is not set
|
||||
# BR2_PACKAGE_LIBFUSE is not set
|
||||
# BR2_PACKAGE_GADGETFS_TEST is not set
|
||||
# BR2_PACKAGE_HAL is not set
|
||||
# BR2_PACKAGE_HDPARM is not set
|
||||
# BR2_PACKAGE_HOTPLUG is not set
|
||||
# BR2_PACKAGE_HWDATA is not set
|
||||
# BR2_PACKAGE_I2C_TOOLS is not set
|
||||
# BR2_PACKAGE_INPUT_TOOLS is not set
|
||||
# BR2_PACKAGE_IOSTAT is not set
|
||||
# BR2_PACKAGE_LIBAIO is not set
|
||||
# BR2_PACKAGE_LIBRAW1394 is not set
|
||||
# BR2_PACKAGE_LIBUSB is not set
|
||||
# BR2_PACKAGE_LM_SENSORS is not set
|
||||
# BR2_PACKAGE_LVM2 is not set
|
||||
# BR2_PACKAGE_MDADM is not set
|
||||
# BR2_PACKAGE_MEMTESTER is not set
|
||||
# BR2_PACKAGE_MKDOSFS is not set
|
||||
# BR2_PACKAGE_MTD is not set
|
||||
# BR2_PACKAGE_NTFS-3G is not set
|
||||
# BR2_PACKAGE_PCIUTILS is not set
|
||||
# BR2_PACKAGE_SETSERIAL is not set
|
||||
# BR2_PACKAGE_SFDISK is not set
|
||||
# BR2_PACKAGE_SMARTMONTOOLS is not set
|
||||
# BR2_PACKAGE_UDEV is not set
|
||||
# BR2_PACKAGE_USBMOUNT is not set
|
||||
# BR2_PACKAGE_USBUTILS is not set
|
||||
# BR2_PACKAGE_WIPE is not set
|
||||
# BR2_PACKAGE_XFSPROGS is not set
|
||||
|
||||
#
|
||||
# Audio and video libraries and applications
|
||||
#
|
||||
# BR2_PACKAGE_ALSA_LIB is not set
|
||||
|
||||
#
|
||||
# asterisk - disabled (required openssl and mpg123)
|
||||
#
|
||||
# BR2_PACKAGE_AUMIX is not set
|
||||
# BR2_PACKAGE_GSTREAMER is not set
|
||||
# BR2_PACKAGE_LIBID3TAG is not set
|
||||
# BR2_PACKAGE_LIBMAD is not set
|
||||
# BR2_PACKAGE_LIBMPD is not set
|
||||
# BR2_PACKAGE_LIBOGG is not set
|
||||
# BR2_PACKAGE_LIBSNDFILE is not set
|
||||
# BR2_PACKAGE_LIBTHEORA is not set
|
||||
|
||||
#
|
||||
# libvorbis requires the package libogg to build
|
||||
#
|
||||
# BR2_PACKAGE_MADPLAY is not set
|
||||
# BR2_PACKAGE_MPG123 is not set
|
||||
# BR2_PACKAGE_MPLAYER is not set
|
||||
# BR2_PACKAGE_SPEEX is not set
|
||||
# BR2_PACKAGE_FESTIVAL is not set
|
||||
# BR2_PACKAGE_VLC is not set
|
||||
|
||||
#
|
||||
# Graphic libraries and applications (graphic/text)
|
||||
#
|
||||
|
||||
#
|
||||
# text rendering libraries
|
||||
#
|
||||
# BR2_PACKAGE_NCURSES is not set
|
||||
# BR2_PACKAGE_NEWT is not set
|
||||
# BR2_PACKAGE_SLANG is not set
|
||||
|
||||
#
|
||||
# text rendering applications
|
||||
#
|
||||
# BR2_PACKAGE_DIALOG is not set
|
||||
|
||||
#
|
||||
# graphic libraries
|
||||
#
|
||||
# BR2_PACKAGE_DIRECTFB is not set
|
||||
# BR2_PACKAGE_FBDUMP is not set
|
||||
# BR2_PACKAGE_IMAGEMAGICK is not set
|
||||
# BR2_PACKAGE_JPEG is not set
|
||||
# BR2_PACKAGE_LIBART is not set
|
||||
# BR2_PACKAGE_LIBPNG is not set
|
||||
# BR2_PACKAGE_LIBUNGIF is not set
|
||||
# BR2_PACKAGE_LINUX_FUSION is not set
|
||||
# BR2_PACKAGE_PIXMAN is not set
|
||||
# BR2_PACKAGE_SDL is not set
|
||||
# BR2_PACKAGE_TIFF is not set
|
||||
|
||||
#
|
||||
# busybox graphic applications
|
||||
#
|
||||
|
||||
#
|
||||
# --> May be broken in busybox
|
||||
#
|
||||
# BR2_PACKAGE_FBV is not set
|
||||
# BR2_PACKAGE_FBSET is not set
|
||||
|
||||
#
|
||||
# other GUIs
|
||||
#
|
||||
# BR2_PACKAGE_QTOPIA4 is not set
|
||||
BR2_PACKAGE_XSERVER_none=y
|
||||
# BR2_PACKAGE_XSERVER_xorg is not set
|
||||
# BR2_PACKAGE_XSERVER_tinyx is not set
|
||||
|
||||
#
|
||||
# X libraries and helper libraries
|
||||
#
|
||||
# BR2_PACKAGE_ATK is not set
|
||||
# BR2_PACKAGE_PANGO is not set
|
||||
# BR2_PACKAGE_LIBDRM is not set
|
||||
# BR2_PACKAGE_LIBERATION is not set
|
||||
# BR2_PACKAGE_LIBGLIB12 is not set
|
||||
# BR2_PACKAGE_LIBGLIB2 is not set
|
||||
# BR2_PACKAGE_OPENMOTIF is not set
|
||||
# BR2_PACKAGE_FONTCONFIG is not set
|
||||
# BR2_PACKAGE_FREETYPE is not set
|
||||
# BR2_PACKAGE_TSLIB is not set
|
||||
# BR2_PACKAGE_WEBKIT is not set
|
||||
|
||||
#
|
||||
# X Window managers
|
||||
#
|
||||
# BR2_PACKAGE_MATCHBOX is not set
|
||||
|
||||
#
|
||||
# X applications
|
||||
#
|
||||
# BR2_PACKAGE_ALSAMIXERGUI is not set
|
||||
|
||||
#
|
||||
# dillo - disabled (requires jpeg,libglib12,libgtk12,zlib,libpng and Xorg(7))
|
||||
#
|
||||
# BR2_PACKAGE_GQVIEW is not set
|
||||
# BR2_PACKAGE_LEAFPAD is not set
|
||||
|
||||
#
|
||||
# midori - disabled (requires Xorg(7))
|
||||
#
|
||||
# BR2_PACKAGE_PCMANFM is not set
|
||||
# BR2_PACKAGE_SYLPHEED is not set
|
||||
# BR2_PACKAGE_TORSMO is not set
|
||||
# BR2_PACKAGE_X11VNC is not set
|
||||
# BR2_PACKAGE_XPDF is not set
|
||||
# BR2_PACKAGE_XSTROKE is not set
|
||||
# BR2_PACKAGE_XVKBD is not set
|
||||
|
||||
#
|
||||
# Compressors / decompressors
|
||||
#
|
||||
# BR2_PACKAGE_GZIP is not set
|
||||
# BR2_PACKAGE_LZO is not set
|
||||
# BR2_PACKAGE_LZMA_TARGET is not set
|
||||
# BR2_PACKAGE_LZMA_HOST is not set
|
||||
# BR2_PACKAGE_ZLIB is not set
|
||||
|
||||
#
|
||||
# Package managers
|
||||
#
|
||||
# BR2_PACKAGE_IPKG is not set
|
||||
# BR2_PACKAGE_PORTAGE is not set
|
||||
# BR2_PACKAGE_RPM is not set
|
||||
|
||||
#
|
||||
# Interpreter languages / Scripting
|
||||
#
|
||||
# BR2_PACKAGE_LUA is not set
|
||||
# BR2_PACKAGE_MICROPERL is not set
|
||||
# BR2_PACKAGE_PYTHON is not set
|
||||
# BR2_PACKAGE_RUBY is not set
|
||||
# BR2_PACKAGE_TCL is not set
|
||||
# BR2_PACKAGE_PHP is not set
|
||||
|
||||
#
|
||||
# XML handling
|
||||
#
|
||||
# BR2_PACKAGE_EXPAT is not set
|
||||
# BR2_PACKAGE_EZXML is not set
|
||||
# BR2_PACKAGE_LIBXML2 is not set
|
||||
# BR2_PACKAGE_LIBXSLT is not set
|
||||
# BR2_PACKAGE_XERCES is not set
|
||||
|
||||
#
|
||||
# Java
|
||||
#
|
||||
# BR2_PACKAGE_CLASSPATH is not set
|
||||
|
||||
#
|
||||
# Games
|
||||
#
|
||||
# BR2_PACKAGE_GNUCHESS is not set
|
||||
# BR2_PACKAGE_MAGICCUBE4D is not set
|
||||
# BR2_PACKAGE_PRBOOM is not set
|
||||
# BR2_PACKAGE_RUBIX is not set
|
||||
# BR2_PACKAGE_VICE is not set
|
||||
# BR2_PACKAGE_XBOARD is not set
|
||||
|
||||
#
|
||||
# Target filesystem options
|
||||
#
|
||||
|
||||
#
|
||||
# filesystem for target device
|
||||
#
|
||||
# BR2_TARGET_ROOTFS_CRAMFS is not set
|
||||
# BR2_TARGET_ROOTFS_CLOOP is not set
|
||||
# BR2_TARGET_ROOTFS_EXT2 is not set
|
||||
# BR2_TARGET_ROOTFS_JFFS2 is not set
|
||||
# BR2_TARGET_ROOTFS_UBIFS is not set
|
||||
# BR2_TARGET_ROOTFS_SQUASHFS is not set
|
||||
# BR2_TARGET_ROOTFS_TAR is not set
|
||||
# BR2_TARGET_ROOTFS_CPIO is not set
|
||||
# BR2_TARGET_ROOTFS_INITRAMFS is not set
|
||||
# BR2_TARGET_ROOTFS_ROMFS is not set
|
||||
|
||||
#
|
||||
# bootloader for target device
|
||||
#
|
||||
# BR2_TARGET_UBOOT is not set
|
||||
BR2_BOOTSOURCE_DATAFLASHCARD=y
|
||||
BR2_BOOTSOURCE=y
|
||||
|
||||
#
|
||||
# Kernel
|
||||
#
|
||||
BR2_KERNEL_none=y
|
||||
# BR2_KERNEL_LINUX_ADVANCED is not set
|
||||
# BR2_KERNEL_LINUX is not set
|
||||
# BR2_KERNEL_HURD is not set
|
||||
980
target/device/Atmel/at91sam9g20dfc/at91sam9g20dfc_ext_defconfig
Normal file
980
target/device/Atmel/at91sam9g20dfc/at91sam9g20dfc_ext_defconfig
Normal file
@@ -0,0 +1,980 @@
|
||||
#
|
||||
# Automatically generated make config: don't edit
|
||||
# Sat Jan 31 22:33:23 2009
|
||||
#
|
||||
BR2_HAVE_DOT_CONFIG=y
|
||||
BR2_VERSION="2009.02-svn"
|
||||
# BR2_alpha is not set
|
||||
BR2_arm=y
|
||||
# BR2_armeb is not set
|
||||
# BR2_avr32 is not set
|
||||
# BR2_cris is not set
|
||||
# BR2_ia64 is not set
|
||||
# BR2_i386 is not set
|
||||
# BR2_m68k is not set
|
||||
# BR2_mips is not set
|
||||
# BR2_mipsel is not set
|
||||
# BR2_nios2 is not set
|
||||
# BR2_powerpc is not set
|
||||
# BR2_sh is not set
|
||||
# BR2_sh64 is not set
|
||||
# BR2_sparc is not set
|
||||
# BR2_sparc64 is not set
|
||||
# BR2_x86_64 is not set
|
||||
BR2_generic_arm=y
|
||||
# BR2_arm7tdmi is not set
|
||||
# BR2_arm610 is not set
|
||||
# BR2_arm710 is not set
|
||||
# BR2_arm720t is not set
|
||||
# BR2_arm920t is not set
|
||||
# BR2_arm922t is not set
|
||||
# BR2_arm926t is not set
|
||||
# BR2_arm10t is not set
|
||||
# BR2_arm1136jf_s is not set
|
||||
# BR2_arm1176jz_s is not set
|
||||
# BR2_arm1176jzf_s is not set
|
||||
# BR2_sa110 is not set
|
||||
# BR2_sa1100 is not set
|
||||
# BR2_xscale is not set
|
||||
# BR2_iwmmxt is not set
|
||||
BR2_ARM_TYPE="GENERIC_ARM"
|
||||
BR2_ARM_OABI=y
|
||||
# BR2_ARM_EABI is not set
|
||||
BR2_ARCH="arm"
|
||||
BR2_ENDIAN="LITTLE"
|
||||
BR2_GCC_TARGET_ABI="apcs-gnu"
|
||||
|
||||
#
|
||||
# Target options
|
||||
#
|
||||
|
||||
#
|
||||
# Project Options
|
||||
#
|
||||
BR2_PROJECT="at91sam9g20dfc_ext"
|
||||
BR2_HOSTNAME="at91sam9g20dfc"
|
||||
BR2_BANNER="Welcome to the Erik's uClibc development environment running on the AT91SAM9G20EK"
|
||||
|
||||
#
|
||||
# Preset Devices
|
||||
#
|
||||
# BR2_TARGET_ARMLTD is not set
|
||||
BR2_BOARD_NAME="at91sam9g20dfc"
|
||||
BR2_BOARD_PATH="target/device/Atmel/$(BR2_BOARD_NAME)"
|
||||
BR2_TARGET_ATMEL=y
|
||||
|
||||
#
|
||||
# Atmel AT91 Specific Device Support
|
||||
#
|
||||
BR2_TARGET_AT91=y
|
||||
|
||||
#
|
||||
# Selection criteria
|
||||
#
|
||||
BR2_TARGET_ATMEL_ALL=y
|
||||
|
||||
#
|
||||
# Device Selection
|
||||
#
|
||||
# BR2_TARGET_AT91RM9200 is not set
|
||||
# BR2_TARGET_AT91SAM9260 is not set
|
||||
BR2_TARGET_AT91SAM9G20=y
|
||||
# BR2_TARGET_AT91SAM9261 is not set
|
||||
# BR2_TARGET_AT91SAM9261S is not set
|
||||
# BR2_TARGET_AT91SAM9RL64 is not set
|
||||
# BR2_TARGET_AT91SAM9263 is not set
|
||||
# BR2_TARGET_AT91SAM9G40 is not set
|
||||
# BR2_TARGET_AT91SAM9M10 is not set
|
||||
# BR2_TARGET_AT91SAM9M11 is not set
|
||||
# BR2_TARGET_AT91SAM9XE is not set
|
||||
# BR2_TARGET_AT572D940HF is not set
|
||||
# BR2_TARGET_AT91CAP9 is not set
|
||||
|
||||
#
|
||||
# Development Board Selection
|
||||
#
|
||||
# BR2_TARGET_AT91RM9200DF is not set
|
||||
# BR2_TARGET_AT91RM9200EK is not set
|
||||
# BR2_TARGET_AT91RM9200DK is not set
|
||||
# BR2_TARGET_AT91SAM9260DFC is not set
|
||||
# BR2_TARGET_AT91SAM9260EK is not set
|
||||
BR2_TARGET_AT91SAM9G20DFC=y
|
||||
# BR2_TARGET_AT91SAM9G20EK is not set
|
||||
# BR2_TARGET_AT91SAM9XEEK is not set
|
||||
# BR2_TARGET_AT91SAM9261EK is not set
|
||||
# BR2_TARGET_AT91SAM9RL64EK is not set
|
||||
# BR2_TARGET_AT91SAM9263EK is not set
|
||||
# BR2_TARGET_AT572D940DCM is not set
|
||||
# BR2_TARGET_AT91CAP9DK is not set
|
||||
# BR2_TARGET_AT91CAP9ADK is not set
|
||||
BR2_TARGET_AT91_ADVANCED_INFO=y
|
||||
|
||||
#
|
||||
# Package support
|
||||
#
|
||||
|
||||
#
|
||||
# Secondary locations
|
||||
#
|
||||
BR2_AT91_LINUXPATCH_SITE="http://maxim.org.za/AT91RM9200/2.6"
|
||||
BR2_TARGET_ATMEL_COPYTO="/tftpboot"
|
||||
BR2_TARGET_AT91BOOTSTRAP=y
|
||||
BR2_TARGET_AT91BOOTSTRAP_BOARD="at91sam9260ek"
|
||||
# BR2_TARGET_AT91BOOT_DATAFLASH is not set
|
||||
BR2_TARGET_AT91BOOT_DATAFLASHCARD=y
|
||||
# BR2_TARGET_AT91BOOT_NANDFLASH is not set
|
||||
# BR2_TARGET_AT91BOOT_FLASH is not set
|
||||
# BR2_TARGET_AT91BOOT_SDCARD is not set
|
||||
# BR2_TARGET_AT91BOOT_EEPROM is not set
|
||||
BR2_TARGET_AT91BOOTSTRAP_MEMORY="dataflashcard"
|
||||
BR2_AT91BOOTSTRAP_IMG_SIZE="0x32000"
|
||||
BR2_AT91BOOTSTRAP_JUMP_TO_DEFAULT=y
|
||||
# BR2_AT91BOOTSTRAP_JUMP_TO_HIGH_SDRAM is not set
|
||||
# BR2_AT91BOOTSTRAP_JUMP_TO_START_OF_SDRAM is not set
|
||||
BR2_AT91BOOTSTRAP_JUMP_ADDR="0x23F00000"
|
||||
|
||||
#
|
||||
# It will be copied to $(BR2_AT91BOOTSTRAP_JUMP_ADDR)
|
||||
#
|
||||
# BR2_TARGET_KWIKBYTE is not set
|
||||
BR2_KERNEL_ARCH_PATCH_VERSION="2.6.28"
|
||||
BR2_KERNEL_ARCH_PATCH_DIR="target/device/Atmel/arch-arm/kernel-patches-$(BR2_KERNEL_ARCH_PATCH_VERSION)"
|
||||
|
||||
#
|
||||
# Generic System Support
|
||||
#
|
||||
# BR2_TARGET_GENERIC_ACCESS_POINT is not set
|
||||
# BR2_TARGET_GENERIC_FIREWALL is not set
|
||||
# BR2_TARGET_GENERIC_DEV_SYSTEM is not set
|
||||
|
||||
#
|
||||
# Build options
|
||||
#
|
||||
BR2_WGET="wget --passive-ftp -nd"
|
||||
BR2_SVN_CO="svn co"
|
||||
BR2_SVN_UP="svn up"
|
||||
BR2_GIT="git clone"
|
||||
BR2_ZCAT="gzip -d -c"
|
||||
BR2_BZCAT="bzcat"
|
||||
BR2_TAR_OPTIONS=""
|
||||
BR2_DL_DIR="$(BASE_DIR)/dl"
|
||||
BR2_COPYTO=""
|
||||
|
||||
#
|
||||
# Mirrors and Download locations
|
||||
#
|
||||
BR2_PRIMARY_SITE=""
|
||||
BR2_BACKUP_SITE="http://buildroot.uclibc.org/downloads/sources/"
|
||||
BR2_SOURCEFORGE_MIRROR="easynews"
|
||||
BR2_KERNEL_MIRROR="http://www.kernel.org/pub/"
|
||||
BR2_GNU_MIRROR="http://ftp.gnu.org/pub/gnu"
|
||||
BR2_DEBIAN_MIRROR="http://ftp.debian.org"
|
||||
|
||||
#
|
||||
# Atmel Mirrors
|
||||
#
|
||||
BR2_ATMEL_MIRROR="ftp://www.at91.com/pub/buildroot"
|
||||
BR2_AT91_PATCH_MIRROR="http://maxim.org.za/AT91RM9200/2.6/"
|
||||
BR2_STAGING_DIR="$(BUILD_DIR)/staging_dir"
|
||||
# BR2_FPU_SUFFIX is not set
|
||||
BR2_TOPDIR_PREFIX=""
|
||||
BR2_TOPDIR_SUFFIX=""
|
||||
BR2_ROOTFS_PREFIX="at91sam9g20dfc-rootfs"
|
||||
BR2_ROOTFS_SUFFIX="$(DATE)"
|
||||
BR2_GNU_BUILD_SUFFIX="pc-linux-gnu"
|
||||
BR2_GNU_TARGET_SUFFIX="linux-uclibc"
|
||||
BR2_JLEVEL=2
|
||||
# BR2_PREFER_IMA is not set
|
||||
# BR2_DEPRECATED is not set
|
||||
BR2_RECENT=y
|
||||
# BR2_CONFIG_CACHE is not set
|
||||
# BR2_ENABLE_DEBUG is not set
|
||||
BR2_STRIP_strip=y
|
||||
# BR2_STRIP_sstrip is not set
|
||||
# BR2_STRIP_none is not set
|
||||
# BR2_OPTIMIZE_0 is not set
|
||||
# BR2_OPTIMIZE_1 is not set
|
||||
BR2_OPTIMIZE_2=y
|
||||
# BR2_OPTIMIZE_3 is not set
|
||||
# BR2_OPTIMIZE_S is not set
|
||||
# BR2_PREFER_STATIC_LIB is not set
|
||||
# BR2_HAVE_MANPAGES is not set
|
||||
# BR2_HAVE_INFOPAGES is not set
|
||||
# BR2_HAVE_DOCUMENTATION is not set
|
||||
# BR2_HAVE_DEVFILES is not set
|
||||
BR2_UPDATE_CONFIG=y
|
||||
|
||||
#
|
||||
# Toolchain
|
||||
#
|
||||
# BR2_TOOLCHAIN_BUILDROOT is not set
|
||||
BR2_TOOLCHAIN_EXTERNAL=y
|
||||
# BR2_TOOLCHAIN_EXTERNAL_SOURCE is not set
|
||||
# BR2_TOOLCHAIN_SOURCE is not set
|
||||
BR2_TOOLCHAIN_EXTERNAL_PATH="$(GCCROOT)"
|
||||
BR2_TOOLCHAIN_EXTERNAL_PREFIX="$(ARCH)-linux"
|
||||
BR2_EXT_GCC_VERSION_4_1_2=y
|
||||
BR2_EXT_GCC_VERSION_4_2_1=y
|
||||
BR2_EXT_GCC_VERSION_4_2_2=y
|
||||
BR2_EXT_GCC_VERSION_4_2_3=y
|
||||
BR2_EXT_BINUTILS_VERSION_2_17=y
|
||||
BR2_EXT_BINUTILS_VERSION_2_18=y
|
||||
BR2_EXT_UCLIBC_VERSION_0_9_28_3=y
|
||||
BR2_EXT_UCLIBC_VERSION_0_9_29=y
|
||||
BR2_EXT_UCLIBC_VERSION_0_9_30=y
|
||||
BR2_TOOLCHAIN_EXTERNAL_LIB_C="libc.so.0"
|
||||
BR2_TOOLCHAIN_EXTERNAL_LIBS="ld-uClibc.so.0 libcrypt.so.0 libdl.so.0 libgcc_s.so libm.so.0 libnsl.so.0 libpthread.so.0 libresolv.so.0 librt.so.0 libutil.so.0"
|
||||
BR2_TOOLCHAIN_EXTERNAL_STRIP=y
|
||||
|
||||
#
|
||||
# Gdb Options
|
||||
#
|
||||
# BR2_PACKAGE_GDB is not set
|
||||
BR2_PACKAGE_GDB_SERVER=y
|
||||
# BR2_PACKAGE_GDB_HOST is not set
|
||||
# BR2_GDB_VERSION_6_2_1 is not set
|
||||
# BR2_GDB_VERSION_6_3 is not set
|
||||
# BR2_GDB_VERSION_6_4 is not set
|
||||
# BR2_GDB_VERSION_6_5 is not set
|
||||
# BR2_GDB_VERSION_6_6 is not set
|
||||
# BR2_GDB_VERSION_6_7_1 is not set
|
||||
BR2_GDB_VERSION_6_8=y
|
||||
# BR2_GDB_VERSION_SNAPSHOT is not set
|
||||
BR2_GDB_VERSION="6.8"
|
||||
|
||||
#
|
||||
# Common Toolchain Options
|
||||
#
|
||||
BR2_LARGEFILE=y
|
||||
BR2_INET_IPV6=y
|
||||
BR2_INET_RPC=y
|
||||
BR2_ENABLE_LOCALE=y
|
||||
BR2_USE_WCHAR=y
|
||||
# BR2_SOFT_FLOAT is not set
|
||||
# BR2_PTHREADS_NONE is not set
|
||||
# BR2_PTHREADS is not set
|
||||
BR2_PTHREADS_OLD=y
|
||||
# BR2_PTHREADS_NATIVE is not set
|
||||
BR2_GCC_CROSS_CXX=y
|
||||
BR2_INSTALL_LIBSTDCPP=y
|
||||
BR2_TARGET_OPTIMIZATION="-Os -pipe"
|
||||
|
||||
#
|
||||
# Package Selection for the target
|
||||
#
|
||||
BR2_PACKAGE_BUSYBOX=y
|
||||
# BR2_BUSYBOX_VERSION_1_2_2_1 is not set
|
||||
# BR2_BUSYBOX_VERSION_1_6_1 is not set
|
||||
# BR2_BUSYBOX_VERSION_1_7_X is not set
|
||||
# BR2_BUSYBOX_VERSION_1_8_X is not set
|
||||
# BR2_BUSYBOX_VERSION_1_9_X is not set
|
||||
# BR2_BUSYBOX_VERSION_1_10_X is not set
|
||||
# BR2_BUSYBOX_VERSION_1_11_X is not set
|
||||
# BR2_BUSYBOX_VERSION_1_12_X is not set
|
||||
BR2_BUSYBOX_VERSION_1_13_X=y
|
||||
# BR2_PACKAGE_BUSYBOX_SNAPSHOT is not set
|
||||
BR2_BUSYBOX_VERSION="1.13.2"
|
||||
BR2_PACKAGE_BUSYBOX_FULLINSTALL=y
|
||||
BR2_PACKAGE_BUSYBOX_CONFIG="package/busybox/busybox-1.13.x.config"
|
||||
BR2_PACKAGE_BUSYBOX_HIDE_OTHERS=y
|
||||
# BR2_PACKAGE_BUSYBOX_SKELETON is not set
|
||||
|
||||
#
|
||||
# The minimum needed to build a uClibc development system
|
||||
#
|
||||
# BR2_PACKAGE_FLEX is not set
|
||||
# BR2_PACKAGE_GCC_TARGET is not set
|
||||
# BR2_PACKAGE_MAKE is not set
|
||||
|
||||
#
|
||||
# Other development stuff
|
||||
#
|
||||
# BR2_PACKAGE_AUTOCONF is not set
|
||||
# BR2_PACKAGE_AUTOMAKE is not set
|
||||
# BR2_PACKAGE_BISON is not set
|
||||
# BR2_PACKAGE_CCACHE_TARGET is not set
|
||||
# BR2_PACKAGE_CVS is not set
|
||||
# BR2_PACKAGE_DISTCC is not set
|
||||
# BR2_PACKAGE_DMALLOC is not set
|
||||
# BR2_PACKAGE_FAKEROOT is not set
|
||||
BR2_HOST_FAKEROOT=y
|
||||
BR2_PACKAGE_GETTEXT=y
|
||||
# BR2_PACKAGE_GETTEXT_STATIC is not set
|
||||
BR2_PACKAGE_LIBINTL=y
|
||||
# BR2_PACKAGE_LIBGMP is not set
|
||||
# BR2_PACKAGE_GPERF is not set
|
||||
# BR2_PACKAGE_LIBMPFR is not set
|
||||
# BR2_PACKAGE_LIBTOOL is not set
|
||||
# BR2_PACKAGE_M4 is not set
|
||||
# BR2_PACKAGE_OPROFILE is not set
|
||||
BR2_PACKAGE_PKGCONFIG=y
|
||||
BR2_PACKAGE_READLINE=y
|
||||
# BR2_PACKAGE_PCRE is not set
|
||||
|
||||
#
|
||||
# Other stuff
|
||||
#
|
||||
BR2_PACKAGE_AT=y
|
||||
# BR2_PACKAGE_BEECRYPT is not set
|
||||
# BR2_PACKAGE_BERKELEYDB is not set
|
||||
# BR2_PACKAGE_BSDIFF is not set
|
||||
# BR2_PACKAGE_CUPS is not set
|
||||
# BR2_PACKAGE_CUSTOMIZE is not set
|
||||
# BR2_PACKAGE_FILE is not set
|
||||
# BR2_PACKAGE_GAMIN is not set
|
||||
# BR2_PACKAGE_ICU is not set
|
||||
# BR2_PACKAGE_KEXEC is not set
|
||||
# BR2_PACKAGE_LIBCONFIG is not set
|
||||
# BR2_PACKAGE_LIBCONFUSE is not set
|
||||
BR2_PACKAGE_LIBDAEMON=y
|
||||
# BR2_PACKAGE_LIBELF is not set
|
||||
BR2_PACKAGE_LIBEVENT=y
|
||||
BR2_PACKAGE_LIBGCRYPT=y
|
||||
BR2_PACKAGE_LIBGPG_ERROR=y
|
||||
BR2_PACKAGE_LIBICONV=y
|
||||
# BR2_PACKAGE_LIBIDN is not set
|
||||
BR2_PACKAGE_LIBLOCKFILE=y
|
||||
# BR2_PACKAGE_LIBOIL is not set
|
||||
# BR2_PACKAGE_LIBSYSFS is not set
|
||||
BR2_PACKAGE_LOCKFILE_PROGS=y
|
||||
# BR2_PACKAGE_LOGROTATE is not set
|
||||
# BR2_PACKAGE_LSOF is not set
|
||||
# BR2_PACKAGE_LTP-TESTSUITE is not set
|
||||
# BR2_PACKAGE_LTRACE is not set
|
||||
# BR2_PACKAGE_MEMSTAT is not set
|
||||
# BR2_PACKAGE_NG_SPICE_REWORK is not set
|
||||
# BR2_PACKAGE_POPT is not set
|
||||
# BR2_PACKAGE_SCREEN is not set
|
||||
# BR2_PACKAGE_STARTUP_NOTIFICATION is not set
|
||||
# BR2_PACKAGE_STRACE is not set
|
||||
# BR2_PACKAGE_SUDO is not set
|
||||
|
||||
#
|
||||
# Database
|
||||
#
|
||||
# BR2_PACKAGE_MYSQL_CLIENT is not set
|
||||
# BR2_PACKAGE_SQLITE is not set
|
||||
|
||||
#
|
||||
# Networking
|
||||
#
|
||||
|
||||
#
|
||||
# Networking applications
|
||||
#
|
||||
# BR2_PACKAGE_ARGUS is not set
|
||||
BR2_PACKAGE_AVAHI=y
|
||||
BR2_PACKAGE_AVAHI_AUTOIPD=y
|
||||
# BR2_PACKAGE_AVAHI_DAEMON is not set
|
||||
BR2_PACKAGE_AXEL=y
|
||||
# BR2_PACKAGE_BIND is not set
|
||||
# BR2_PACKAGE_BRIDGE is not set
|
||||
# BR2_PACKAGE_DNSMASQ is not set
|
||||
BR2_PACKAGE_DROPBEAR=y
|
||||
BR2_PACKAGE_ETHTOOL=y
|
||||
BR2_PACKAGE_HASERL=y
|
||||
# BR2_PACKAGE_HASERL_VERSION_0_8_X is not set
|
||||
BR2_PACKAGE_HASERL_VERSION_0_9_X=y
|
||||
BR2_PACKAGE_HASERL_VERSION="0.9.25"
|
||||
BR2_PACKAGE_IFPLUGD=y
|
||||
# BR2_PACKAGE_IPERF is not set
|
||||
# BR2_PACKAGE_IPROUTE2 is not set
|
||||
|
||||
#
|
||||
# ipsec-tools - disabled (requires openssl, flex and the flex library (libfl.a) )
|
||||
#
|
||||
BR2_PACKAGE_IPTABLES=y
|
||||
# BR2_PACKAGE_KISMET is not set
|
||||
BR2_PACKAGE_L2TP=y
|
||||
BR2_PACKAGE_LIBCGI=y
|
||||
# BR2_PACKAGE_LIBCGICC is not set
|
||||
# BR2_PACKAGE_LIBCURL is not set
|
||||
BR2_PACKAGE_LIBDNET=y
|
||||
# BR2_PACKAGE_LIBDNET_PYTHON is not set
|
||||
# BR2_PACKAGE_LIBEXOSIP2 is not set
|
||||
# BR2_PACKAGE_LIBOSIP2 is not set
|
||||
BR2_PACKAGE_LIBPCAP=y
|
||||
BR2_PACKAGE_LIBUPNP=y
|
||||
# BR2_PACKAGE_LINKS is not set
|
||||
BR2_PACKAGE_LRZSZ=y
|
||||
# BR2_PACKAGE_MDNSRESPONDER is not set
|
||||
BR2_PACKAGE_MICROCOM=y
|
||||
# BR2_PACKAGE_MIIDIAG is not set
|
||||
# BR2_PACKAGE_MROUTED is not set
|
||||
# BR2_PACKAGE_MUTT is not set
|
||||
# BR2_PACKAGE_NBD is not set
|
||||
BR2_PACKAGE_NCFTP=y
|
||||
|
||||
#
|
||||
# ncFTP tools selection
|
||||
#
|
||||
BR2_PACKAGE_NCFTP_GET=y
|
||||
BR2_PACKAGE_NCFTP_PUT=y
|
||||
BR2_PACKAGE_NCFTP_LS=y
|
||||
BR2_PACKAGE_NCFTP_BATCH=y
|
||||
# BR2_PACKAGE_NCFTP_SPOOLER is not set
|
||||
# BR2_PACKAGE_NCFTP_BOOKMARKS is not set
|
||||
# BR2_PACKAGE_NEON is not set
|
||||
# BR2_PACKAGE_NETKITBASE is not set
|
||||
# BR2_PACKAGE_NETKITTELNET is not set
|
||||
BR2_PACKAGE_NETPLUG=y
|
||||
BR2_PACKAGE_NETSNMP=y
|
||||
BR2_PACKAGE_NFS_UTILS=y
|
||||
|
||||
#
|
||||
# NFS utilities selection
|
||||
#
|
||||
BR2_PACKAGE_NFS_UTILS_RPCDEBUG=y
|
||||
BR2_PACKAGE_NFS_UTILS_RPC_LOCKD=y
|
||||
BR2_PACKAGE_NFS_UTILS_RPC_RQUOTAD=y
|
||||
BR2_PACKAGE_NTP=y
|
||||
# BR2_PACKAGE_NTP_SNTP is not set
|
||||
# BR2_PACKAGE_OLSR is not set
|
||||
# BR2_PACKAGE_OPENNTPD is not set
|
||||
BR2_PACKAGE_OPENSSH=y
|
||||
BR2_PACKAGE_OPENSSL=y
|
||||
BR2_PACKAGE_OPENSSL_BIN=y
|
||||
# BR2_PACKAGE_OPENSSL_ENGINES is not set
|
||||
BR2_PACKAGE_OPENVPN=y
|
||||
# BR2_PACKAGE_OPENSWAN is not set
|
||||
BR2_PACKAGE_PORTMAP=y
|
||||
BR2_PACKAGE_PPPD=y
|
||||
# BR2_PACKAGE_RADVD is not set
|
||||
BR2_PACKAGE_RP_PPPOE=y
|
||||
# BR2_PACKAGE_PPTP_LINUX is not set
|
||||
# BR2_PACKAGE_PROFTPD is not set
|
||||
|
||||
#
|
||||
# quagga suite
|
||||
#
|
||||
# BR2_PACKAGE_QUAGGA_ZEBRA is not set
|
||||
# BR2_PACKAGE_QUAGGA_BGPD is not set
|
||||
# BR2_PACKAGE_QUAGGA_RIPD is not set
|
||||
# BR2_PACKAGE_QUAGGA_RIPNGD is not set
|
||||
# BR2_PACKAGE_QUAGGA_OSPFD is not set
|
||||
# BR2_PACKAGE_QUAGGA_OSPF6D is not set
|
||||
# BR2_PACKAGE_QUAGGA_WATCHQUAGGA is not set
|
||||
# BR2_PACKAGE_QUAGGA_ISISD is not set
|
||||
BR2_PACKAGE_RSYNC=y
|
||||
BR2_PACKAGE_SAMBA=y
|
||||
|
||||
#
|
||||
# Samba tools selection
|
||||
#
|
||||
BR2_PACKAGE_SAMBA_CIFS=y
|
||||
BR2_PACKAGE_SAMBA_EVENTLOGADM=y
|
||||
|
||||
#
|
||||
# findsmb - disabled (requires nmblookup, smbclient and perl)
|
||||
#
|
||||
BR2_PACKAGE_SAMBA_NET=y
|
||||
BR2_PACKAGE_SAMBA_NMBD=y
|
||||
BR2_PACKAGE_SAMBA_NMBLOOKUP=y
|
||||
BR2_PACKAGE_SAMBA_NTLM_AUTH=y
|
||||
BR2_PACKAGE_SAMBA_PDBEDIT=y
|
||||
BR2_PACKAGE_SAMBA_PROFILES=y
|
||||
BR2_PACKAGE_SAMBA_RPCCLIENT=y
|
||||
BR2_PACKAGE_SAMBA_SMBCACLS=y
|
||||
BR2_PACKAGE_SAMBA_SMBCLIENT=y
|
||||
BR2_PACKAGE_SAMBA_SMBCONTROL=y
|
||||
BR2_PACKAGE_SAMBA_SMBCQUOTAS=y
|
||||
BR2_PACKAGE_SAMBA_SMBGET=y
|
||||
BR2_PACKAGE_SAMBA_SMBPASSWD=y
|
||||
BR2_PACKAGE_SAMBA_SMBSPOOL=y
|
||||
BR2_PACKAGE_SAMBA_SMBSTATUS=y
|
||||
BR2_PACKAGE_SAMBA_SMBTREE=y
|
||||
BR2_PACKAGE_SAMBA_SWAT=y
|
||||
BR2_PACKAGE_SAMBA_SMBTAR=y
|
||||
BR2_PACKAGE_SAMBA_TDB=y
|
||||
BR2_PACKAGE_SAMBA_TESTPARM=y
|
||||
BR2_PACKAGE_SAMBA_WINBINDD=y
|
||||
BR2_PACKAGE_SAMBA_WBINFO=y
|
||||
BR2_PACKAGE_SOCAT=y
|
||||
BR2_PACKAGE_SOCAT_PREDEF_CRDLY_SHIFT="9"
|
||||
BR2_PACKAGE_SOCAT_PREDEF_TABDLY_SHIFT="11"
|
||||
BR2_PACKAGE_SOCAT_PREDEF_CSIZE_SHIFT="4"
|
||||
BR2_PACKAGE_STUNNEL=y
|
||||
# BR2_PACKAGE_TCPDUMP is not set
|
||||
# BR2_PACKAGE_DHCPDUMP is not set
|
||||
BR2_PACKAGE_TFTPD=y
|
||||
# BR2_PACKAGE_TN5250 is not set
|
||||
# BR2_PACKAGE_TTCP is not set
|
||||
# BR2_PACKAGE_UDPCAST is not set
|
||||
BR2_PACKAGE_VPNC=y
|
||||
# BR2_PACKAGE_VSFTPD is not set
|
||||
BR2_PACKAGE_VTUN=y
|
||||
# BR2_PACKAGE_WEBIF is not set
|
||||
# BR2_PACKAGE_WIRELESS_TOOLS is not set
|
||||
|
||||
#
|
||||
# Hardware handling / blockdevices and filesystem maintenance
|
||||
#
|
||||
BR2_PACKAGE_DBUS=y
|
||||
BR2_DBUS_EXPAT=y
|
||||
# BR2_DBUS_LIBXML2 is not set
|
||||
# BR2_PACKAGE_DBUS_GLIB is not set
|
||||
BR2_PACKAGE_DEVMEM2=y
|
||||
BR2_PACKAGE_DM=y
|
||||
# BR2_PACKAGE_DMRAID is not set
|
||||
BR2_PACKAGE_E2FSPROGS=y
|
||||
BR2_PACKAGE_E2FSPROGS_BADBLOCKS=y
|
||||
BR2_PACKAGE_E2FSPROGS_BLKID=y
|
||||
BR2_PACKAGE_E2FSPROGS_CHATTR=y
|
||||
BR2_PACKAGE_E2FSPROGS_DUMPE2FS=y
|
||||
BR2_PACKAGE_E2FSPROGS_E2FSCK=y
|
||||
BR2_PACKAGE_E2FSPROGS_E2LABEL=y
|
||||
BR2_PACKAGE_E2FSPROGS_FILEFRAG=y
|
||||
BR2_PACKAGE_E2FSPROGS_FINDFS=y
|
||||
BR2_PACKAGE_E2FSPROGS_FSCK=y
|
||||
BR2_PACKAGE_E2FSPROGS_LOGSAVE=y
|
||||
BR2_PACKAGE_E2FSPROGS_LSATTR=y
|
||||
BR2_PACKAGE_E2FSPROGS_MKE2FS=y
|
||||
BR2_PACKAGE_E2FSPROGS_MKLOSTFOUND=y
|
||||
BR2_PACKAGE_E2FSPROGS_TUNE2FS=y
|
||||
BR2_PACKAGE_E2FSPROGS_UUIDGEN=y
|
||||
# BR2_PACKAGE_EEPROG is not set
|
||||
# BR2_PACKAGE_FCONFIG is not set
|
||||
# BR2_PACKAGE_FIS is not set
|
||||
# BR2_PACKAGE_LIBFUSE is not set
|
||||
# BR2_PACKAGE_GADGETFS_TEST is not set
|
||||
# BR2_PACKAGE_HAL is not set
|
||||
# BR2_PACKAGE_HWDATA is not set
|
||||
# BR2_PACKAGE_I2C_TOOLS is not set
|
||||
BR2_PACKAGE_INPUT_TOOLS=y
|
||||
BR2_PACKAGE_INPUT_TOOLS_EVTEST=y
|
||||
BR2_PACKAGE_INPUT_TOOLS_INPUTATTACH=y
|
||||
BR2_PACKAGE_INPUT_TOOLS_JSCAL=y
|
||||
BR2_PACKAGE_INPUT_TOOLS_JSTEST=y
|
||||
# BR2_PACKAGE_IOSTAT is not set
|
||||
# BR2_PACKAGE_LIBAIO is not set
|
||||
# BR2_PACKAGE_LIBRAW1394 is not set
|
||||
BR2_PACKAGE_LIBUSB=y
|
||||
# BR2_PACKAGE_LM_SENSORS is not set
|
||||
# BR2_PACKAGE_LVM2 is not set
|
||||
# BR2_PACKAGE_MDADM is not set
|
||||
# BR2_PACKAGE_MEMTESTER is not set
|
||||
BR2_PACKAGE_MKDOSFS=y
|
||||
BR2_PACKAGE_MTD=y
|
||||
# BR2_PACKAGE_MTD_UTILS is not set
|
||||
BR2_PACKAGE_MTD_20061007=y
|
||||
# BR2_PACKAGE_MTD_20050122 is not set
|
||||
# BR2_PACKAGE_MTD_UTILS_GIT is not set
|
||||
|
||||
#
|
||||
# MTD tools selection
|
||||
#
|
||||
BR2_PACKAGE_MTD_DOCFDISK=y
|
||||
BR2_PACKAGE_MTD_DOC_LOADBIOS=y
|
||||
BR2_PACKAGE_MTD_FLASHCP=y
|
||||
BR2_PACKAGE_MTD_FLASH_ERASE=y
|
||||
BR2_PACKAGE_MTD_FLASH_ERASEALL=y
|
||||
BR2_PACKAGE_MTD_FLASH_INFO=y
|
||||
BR2_PACKAGE_MTD_FLASH_LOCK=y
|
||||
BR2_PACKAGE_MTD_FLASH_UNLOCK=y
|
||||
BR2_PACKAGE_MTD_FTL_CHECK=y
|
||||
BR2_PACKAGE_MTD_FTL_FORMAT=y
|
||||
BR2_PACKAGE_MTD_JFFS2DUMP=y
|
||||
BR2_PACKAGE_MTD_MKFSJFFS2=y
|
||||
BR2_PACKAGE_MTD_MKFSJFFS=y
|
||||
BR2_PACKAGE_MTD_MTD_DEBUG=y
|
||||
BR2_PACKAGE_MTD_NANDDUMP=y
|
||||
BR2_PACKAGE_MTD_NANDWRITE=y
|
||||
BR2_PACKAGE_MTD_NFTL_FORMAT=y
|
||||
BR2_PACKAGE_MTD_NFTLDUMP=y
|
||||
BR2_PACKAGE_MTD_SUMTOOL=y
|
||||
# BR2_PACKAGE_NTFS-3G is not set
|
||||
# BR2_PACKAGE_PCIUTILS is not set
|
||||
# BR2_PACKAGE_PCMCIA is not set
|
||||
BR2_PACKAGE_SETSERIAL=y
|
||||
# BR2_PACKAGE_SMARTMONTOOLS is not set
|
||||
BR2_PACKAGE_UDEV_VOLUME_ID=y
|
||||
BR2_PACKAGE_UDEV_SCSI_ID=y
|
||||
BR2_PACKAGE_USBMOUNT=y
|
||||
BR2_PACKAGE_USBUTILS=y
|
||||
# BR2_PACKAGE_WIPE is not set
|
||||
# BR2_PACKAGE_XFSPROGS is not set
|
||||
|
||||
#
|
||||
# Audio and video libraries and applications
|
||||
#
|
||||
# BR2_PACKAGE_ALSA_LIB is not set
|
||||
|
||||
#
|
||||
# asterisk - disabled (required openssl and mpg123)
|
||||
#
|
||||
BR2_PACKAGE_AUMIX=y
|
||||
BR2_PACKAGE_GSTREAMER=y
|
||||
# BR2_PACKAGE_GST_PLUGINS_BASE is not set
|
||||
# BR2_PACKAGE_GST_PLUGINS_GOOD is not set
|
||||
# BR2_PACKAGE_GST_PLUGINS_UGLY is not set
|
||||
BR2_PACKAGE_LIBID3TAG=y
|
||||
BR2_PACKAGE_LIBMAD=y
|
||||
# BR2_PACKAGE_LIBMAD_TARGET_HEADERS is not set
|
||||
BR2_PACKAGE_LIBMPD=y
|
||||
BR2_PACKAGE_LIBOGG=y
|
||||
# BR2_PACKAGE_LIBSNDFILE is not set
|
||||
# BR2_PACKAGE_LIBTHEORA is not set
|
||||
# BR2_PACKAGE_LIBVORBIS is not set
|
||||
BR2_PACKAGE_MADPLAY=y
|
||||
# BR2_PACKAGE_MPG123 is not set
|
||||
BR2_PACKAGE_MPLAYER=y
|
||||
BR2_PACKAGE_SPEEX=y
|
||||
BR2_PACKAGE_SPEEX_ARM_GENERIC=y
|
||||
# BR2_PACKAGE_FESTIVAL is not set
|
||||
# BR2_PACKAGE_VLC is not set
|
||||
|
||||
#
|
||||
# Graphic libraries and applications (graphic/text)
|
||||
#
|
||||
|
||||
#
|
||||
# text rendering libraries
|
||||
#
|
||||
BR2_PACKAGE_NCURSES=y
|
||||
# BR2_PACKAGE_NCURSES_TARGET_PANEL is not set
|
||||
# BR2_PACKAGE_NCURSES_TARGET_FORM is not set
|
||||
# BR2_PACKAGE_NCURSES_TARGET_MENU is not set
|
||||
# BR2_PACKAGE_NCURSES_TARGET_HEADERS is not set
|
||||
# BR2_PACKAGE_NEWT is not set
|
||||
# BR2_PACKAGE_SLANG is not set
|
||||
|
||||
#
|
||||
# text rendering applications
|
||||
#
|
||||
# BR2_PACKAGE_DIALOG is not set
|
||||
|
||||
#
|
||||
# graphic libraries
|
||||
#
|
||||
# BR2_PACKAGE_DIRECTFB is not set
|
||||
# BR2_PACKAGE_FBDUMP is not set
|
||||
# BR2_PACKAGE_IMAGEMAGICK is not set
|
||||
# BR2_PACKAGE_JPEG is not set
|
||||
# BR2_PACKAGE_LIBART is not set
|
||||
# BR2_PACKAGE_LIBPNG is not set
|
||||
# BR2_PACKAGE_LIBUNGIF is not set
|
||||
# BR2_PACKAGE_LINUX_FUSION is not set
|
||||
# BR2_PACKAGE_PIXMAN is not set
|
||||
# BR2_PACKAGE_SDL is not set
|
||||
# BR2_PACKAGE_TIFF is not set
|
||||
|
||||
#
|
||||
# busybox graphic applications
|
||||
#
|
||||
|
||||
#
|
||||
# --> May be broken in busybox
|
||||
#
|
||||
# BR2_PACKAGE_FBV is not set
|
||||
# BR2_PACKAGE_FBSET is not set
|
||||
|
||||
#
|
||||
# other GUIs
|
||||
#
|
||||
# BR2_PACKAGE_QTOPIA4 is not set
|
||||
BR2_PACKAGE_XSERVER_none=y
|
||||
# BR2_PACKAGE_XSERVER_xorg is not set
|
||||
# BR2_PACKAGE_XSERVER_tinyx is not set
|
||||
|
||||
#
|
||||
# X libraries and helper libraries
|
||||
#
|
||||
# BR2_PACKAGE_ATK is not set
|
||||
# BR2_PACKAGE_PANGO is not set
|
||||
# BR2_PACKAGE_LIBDRM is not set
|
||||
# BR2_PACKAGE_LIBERATION is not set
|
||||
# BR2_PACKAGE_LIBGLIB12 is not set
|
||||
BR2_PACKAGE_LIBGLIB2=y
|
||||
# BR2_PACKAGE_OPENMOTIF is not set
|
||||
# BR2_PACKAGE_FONTCONFIG is not set
|
||||
# BR2_PACKAGE_FREETYPE is not set
|
||||
# BR2_PACKAGE_TSLIB is not set
|
||||
# BR2_PACKAGE_WEBKIT is not set
|
||||
|
||||
#
|
||||
# X Window managers
|
||||
#
|
||||
# BR2_PACKAGE_MATCHBOX is not set
|
||||
|
||||
#
|
||||
# X applications
|
||||
#
|
||||
# BR2_PACKAGE_ALSAMIXERGUI is not set
|
||||
|
||||
#
|
||||
# dillo - disabled (requires jpeg,libglib12,libgtk12,zlib,libpng and Xorg(7))
|
||||
#
|
||||
# BR2_PACKAGE_GQVIEW is not set
|
||||
# BR2_PACKAGE_LEAFPAD is not set
|
||||
|
||||
#
|
||||
# midori - disabled (requires Xorg(7))
|
||||
#
|
||||
# BR2_PACKAGE_PCMANFM is not set
|
||||
# BR2_PACKAGE_SYLPHEED is not set
|
||||
# BR2_PACKAGE_TORSMO is not set
|
||||
# BR2_PACKAGE_X11VNC is not set
|
||||
# BR2_PACKAGE_XPDF is not set
|
||||
# BR2_PACKAGE_XSTROKE is not set
|
||||
# BR2_PACKAGE_XVKBD is not set
|
||||
|
||||
#
|
||||
# Compressors / decompressors
|
||||
#
|
||||
BR2_PACKAGE_LZO=y
|
||||
# BR2_PACKAGE_LZMA_TARGET is not set
|
||||
# BR2_PACKAGE_LZMA_HOST is not set
|
||||
BR2_PACKAGE_ZLIB=y
|
||||
# BR2_PACKAGE_ZLIB_TARGET_HEADERS is not set
|
||||
|
||||
#
|
||||
# Package managers
|
||||
#
|
||||
# BR2_PACKAGE_IPKG is not set
|
||||
# BR2_PACKAGE_PORTAGE is not set
|
||||
|
||||
#
|
||||
# Interpreter languages / Scripting
|
||||
#
|
||||
# BR2_PACKAGE_LUA is not set
|
||||
# BR2_PACKAGE_MICROPERL is not set
|
||||
BR2_PACKAGE_PYTHON=y
|
||||
# BR2_PACKAGE_PYTHON_DEV is not set
|
||||
BR2_PACKAGE_PYTHON_PY_ONLY=y
|
||||
# BR2_PACKAGE_PYTHON_PYC_ONLY is not set
|
||||
# BR2_PACKAGE_PYTHON_PY_PYC is not set
|
||||
|
||||
#
|
||||
# The following modules are unusual or require extra libraries
|
||||
#
|
||||
# BR2_PACKAGE_PYTHON_BSDDB is not set
|
||||
BR2_PACKAGE_PYTHON_CODECSCJK=y
|
||||
# BR2_PACKAGE_PYTHON_CURSES is not set
|
||||
# BR2_PACKAGE_PYTHON_GDBM is not set
|
||||
# BR2_PACKAGE_PYTHON_NIS is not set
|
||||
# BR2_PACKAGE_PYTHON_PYEXPAT is not set
|
||||
# BR2_PACKAGE_PYTHON_READLINE is not set
|
||||
# BR2_PACKAGE_PYTHON_SSL is not set
|
||||
# BR2_PACKAGE_PYTHON_TKINTER is not set
|
||||
BR2_PACKAGE_PYTHON_UNICODEDATA=y
|
||||
# BR2_PACKAGE_RUBY is not set
|
||||
# BR2_PACKAGE_TCL is not set
|
||||
# BR2_PACKAGE_PHP is not set
|
||||
|
||||
#
|
||||
# XML handling
|
||||
#
|
||||
BR2_PACKAGE_EXPAT=y
|
||||
# BR2_PACKAGE_EZXML is not set
|
||||
BR2_PACKAGE_LIBXML2=y
|
||||
# BR2_PACKAGE_LIBXSLT is not set
|
||||
# BR2_PACKAGE_XERCES is not set
|
||||
|
||||
#
|
||||
# Java
|
||||
#
|
||||
# BR2_PACKAGE_CLASSPATH is not set
|
||||
|
||||
#
|
||||
# Games
|
||||
#
|
||||
# BR2_PACKAGE_GNUCHESS is not set
|
||||
# BR2_PACKAGE_MAGICCUBE4D is not set
|
||||
# BR2_PACKAGE_PRBOOM is not set
|
||||
# BR2_PACKAGE_RUBIX is not set
|
||||
# BR2_PACKAGE_VICE is not set
|
||||
# BR2_PACKAGE_XBOARD is not set
|
||||
|
||||
#
|
||||
# Target filesystem options
|
||||
#
|
||||
|
||||
#
|
||||
# filesystem for target device
|
||||
#
|
||||
# BR2_TARGET_ROOTFS_CRAMFS is not set
|
||||
# BR2_TARGET_ROOTFS_CLOOP is not set
|
||||
BR2_TARGET_ROOTFS_EXT2=y
|
||||
BR2_TARGET_ROOTFS_EXT2_BLOCKS=0
|
||||
BR2_TARGET_ROOTFS_EXT2_INODES=0
|
||||
BR2_TARGET_ROOTFS_EXT2_RESBLKS=0
|
||||
BR2_TARGET_ROOTFS_EXT2_SQUASH=y
|
||||
BR2_TARGET_ROOTFS_EXT2_OUTPUT="$(IMAGE).ext2"
|
||||
BR2_TARGET_ROOTFS_EXT2_NONE=y
|
||||
# BR2_TARGET_ROOTFS_EXT2_GZIP is not set
|
||||
# BR2_TARGET_ROOTFS_EXT2_BZIP2 is not set
|
||||
# BR2_TARGET_ROOTFS_EXT2_LZMA is not set
|
||||
BR2_TARGET_ROOTFS_EXT2_COPYTO="/tftpboot"
|
||||
BR2_TARGET_ROOTFS_JFFS2=y
|
||||
BR2_TARGET_ROOTFS_JFFS2_DATAFLASH_1056=y
|
||||
# BR2_TARGET_ROOTFS_JFFS2_DATAFLASH_528 is not set
|
||||
# BR2_TARGET_ROOTFS_JFFS2_NANDFLASH_2K_128K is not set
|
||||
# BR2_TARGET_ROOTFS_JFFS2_FLASH_128 is not set
|
||||
# BR2_TARGET_ROOTFS_JFFS2_FLASH_64 is not set
|
||||
# BR2_TARGET_ROOTFS_JFFS2_CUSTOM is not set
|
||||
BR2_TARGET_ROOTFS_JFFS2_PAGESIZE=0x420
|
||||
BR2_TARGET_ROOTFS_JFFS2_EBSIZE=0x2100
|
||||
BR2_TARGET_ROOTFS_JFFS2_NOCLEANMARKER=y
|
||||
# BR2_JFFS2_TARGET_SREC is not set
|
||||
# BR2_TARGET_ROOTFS_JFFS2_PAD is not set
|
||||
BR2_TARGET_ROOTFS_JFFS2_LE=y
|
||||
# BR2_TARGET_ROOTFS_JFFS2_BE is not set
|
||||
# BR2_TARGET_ROOTFS_JFFS2_SQUASH is not set
|
||||
# BR2_TARGET_ROOTFS_JFFS2_SUMMARY is not set
|
||||
BR2_TARGET_ROOTFS_JFFS2_OUTPUT="$(IMAGE).jffs2"
|
||||
BR2_TARGET_ROOTFS_JFFS2_COPYTO="/tftpboot"
|
||||
# BR2_TARGET_ROOTFS_UBIFS is not set
|
||||
# BR2_TARGET_ROOTFS_SQUASHFS is not set
|
||||
# BR2_TARGET_ROOTFS_TAR is not set
|
||||
# BR2_TARGET_ROOTFS_CPIO is not set
|
||||
# BR2_TARGET_ROOTFS_INITRAMFS is not set
|
||||
# BR2_TARGET_ROOTFS_ROMFS is not set
|
||||
|
||||
#
|
||||
# bootloader for target device
|
||||
#
|
||||
BR2_TARGET_UBOOT=y
|
||||
BR2_TARGET_UBOOT_BOARDNAME="$(BOARD_NAME)"
|
||||
BR2_TARGET_UBOOT_2009_01=y
|
||||
# BR2_TARGET_UBOOT_2008_10 is not set
|
||||
# BR2_TARGET_UBOOT_1_3_4 is not set
|
||||
# BR2_TARGET_UBOOT_1_2_0_ATMEL is not set
|
||||
BR2_UBOOT_VERSION="2009.01"
|
||||
BR2_U_BOOT_SITE="ftp://ftp.denx.de/pub/u-boot"
|
||||
BR2_TARGET_U_BOOT_ARCH_PATCH=y
|
||||
BR2_TARGET_U_BOOT_2009_01_ARCH_AT91=y
|
||||
BR2_TARGET_U_BOOT_ARCH_AT91_PATCH_DIR="target/device/Atmel/arch-arm/u-boot/2009.01"
|
||||
BR2_TARGET_UBOOT_CUSTOM_PATCH=""
|
||||
BR2_TARGET_UBOOT_BOOTSOURCE_DATAFLASHCARD=y
|
||||
# BR2_TARGET_UBOOT_BOOTSOURCE_DATAFLASH is not set
|
||||
# BR2_TARGET_UBOOT_BOOTSOURCE_NANDFLASH is not set
|
||||
# BR2_TARGET_UBOOT_BOOTSOURCE_FLASH is not set
|
||||
# BR2_TARGET_UBOOT_BOOTSOURCE_SDCARD is not set
|
||||
# BR2_TARGET_UBOOT_BOOTSOURCE_EEPROM is not set
|
||||
BR2_TARGET_UBOOT_BOOTSOURCE="dataflash"
|
||||
# BR2_TARGET_UBOOT_SILENT is not set
|
||||
# BR2_TARGET_UBOOT_TOOL_MKIMAGE is not set
|
||||
# BR2_TARGET_UBOOT_TOOL_ENV is not set
|
||||
BR2_TARGET_UBOOT_DEFAULT_ENV=y
|
||||
# BR2_TARGET_UBOOT_SDRAM_SIZE_256MB is not set
|
||||
# BR2_TARGET_UBOOT_SDRAM_SIZE_128MB is not set
|
||||
BR2_TARGET_UBOOT_SDRAM_SIZE_64MB=y
|
||||
# BR2_TARGET_UBOOT_SDRAM_SIZE_32MB is not set
|
||||
# BR2_TARGET_UBOOT_SDRAM_SIZE_16MB is not set
|
||||
# BR2_TARGET_UBOOT_SDRAM_SIZE_8MB is not set
|
||||
BR2_TARGET_UBOOT_MEMORY_SIZE="64M"
|
||||
# BR2_TARGET_UBOOT_KERNEL_SIZE_1_25MB is not set
|
||||
# BR2_TARGET_UBOOT_KERNEL_SIZE_1_50MB is not set
|
||||
# BR2_TARGET_UBOOT_KERNEL_SIZE_1_75MB is not set
|
||||
BR2_TARGET_UBOOT_KERNEL_SIZE_2_00MB=y
|
||||
# BR2_TARGET_UBOOT_KERNEL_SIZE_2_25MB is not set
|
||||
# BR2_TARGET_UBOOT_KERNEL_SIZE_2_50MB is not set
|
||||
BR2_TARGET_UBOOT_DATAFLASH_SIZE_8MB=y
|
||||
# BR2_TARGET_UBOOT_DATAFLASH_SIZE_4MB is not set
|
||||
# BR2_TARGET_UBOOT_DATAFLASH_SIZE_2MB is not set
|
||||
# BR2_TARGET_UBOOT_DATAFLASH_SIZE_1MB is not set
|
||||
# BR2_TARGET_UBOOT_DATAFLASH_SIZE_0_50MB is not set
|
||||
# BR2_TARGET_UBOOT_DATAFLASH_SIZE_0_25MB is not set
|
||||
BR2_TARGET_UBOOT_END_OF_FLASH="C083FFFF"
|
||||
BR2_TARGET_UBOOT_KERNEL_START="21000000"
|
||||
BR2_TARGET_UBOOT_KERNEL_LOCATION="C0042000"
|
||||
BR2_TARGET_UBOOT_FILESYSTEM_START="21210000"
|
||||
BR2_TARGET_UBOOT_FILESYSTEM_LOCATION="C0252000"
|
||||
BR2_TARGET_UBOOT_FILESYSTEM_SIZE="6000000"
|
||||
BR2_TARGET_UBOOT_NETWORK=y
|
||||
BR2_TARGET_UBOOT_SERVERIP="10.175.196.221"
|
||||
BR2_TARGET_UBOOT_IPADDR="10.175.196.18"
|
||||
BR2_TARGET_UBOOT_GATEWAY="10.175.196.1"
|
||||
BR2_TARGET_UBOOT_NETMASK="255.255.255.0"
|
||||
BR2_TARGET_UBOOT_ETHADDR="04:25:fe:ed:00:18"
|
||||
BR2_BOOTSOURCE_DATAFLASHCARD=y
|
||||
BR2_BOOTSOURCE=y
|
||||
|
||||
#
|
||||
# Kernel
|
||||
#
|
||||
# BR2_KERNEL_none is not set
|
||||
BR2_KERNEL_LINUX_ADVANCED=y
|
||||
# BR2_KERNEL_LINUX is not set
|
||||
# BR2_KERNEL_HURD is not set
|
||||
BR2_PACKAGE_LINUX=y
|
||||
BR2_PACKAGE_LINUX_KCONFIG="$(BR2_BOARD_PATH)/$(BR2_BOARD_NAME)-linux-$(BR2_LINUX26_VERSION).config"
|
||||
BR2_PACKAGE_LINUX_FORMAT="uImage"
|
||||
BR2_KERNEL_CURRENT_VERSION="2.6.28.2"
|
||||
BR2_KERNEL_LATEST_2_6_28="2"
|
||||
BR2_KERNEL_LATEST_2_6_27="13"
|
||||
BR2_KERNEL_LATEST_2_6_26="8"
|
||||
BR2_KERNEL_LATEST_2_6_25="19"
|
||||
BR2_KERNEL_LATEST_2_6_24="7"
|
||||
BR2_KERNEL_LATEST_2_6_23="17"
|
||||
BR2_KERNEL_LATEST_2_6_22="19"
|
||||
BR2_KERNEL_LATEST_2_6_21="7"
|
||||
BR2_KERNEL_LATEST_2_6_20="21"
|
||||
BR2_KERNEL_PATCH_LEVEL="$(BR2_KERNEL_MINORLEVEL)"
|
||||
BR2_KERNEL_NEXT_VERSION="2.6.29"
|
||||
BR2_KERNEL_THIS_VERSION="2.6.28"
|
||||
BR2_KERNEL_SITE="http://ftp.kernel.org/pub/linux/kernel/v2.6"
|
||||
BR2_MM_PATCH_SITE="http://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6"
|
||||
BR2_RC_MM_PATCH_DIR="$(BR2_KERNEL_NEXT_VERSION)-rc$(BR2_KERNEL_RC_LEVEL)/2.6.$(BR2_KERNEL_NEXT_VERSION)-rc$(BR2_KERNEL_RC_LEVEL)-mm$(BR2_KERNEL_MM_LEVEL)"
|
||||
BR2_KERNEL_PATCH_SITE="$(BR2_KERNEL_SITE)"
|
||||
# BR2_LINUX_2_6_STABLE is not set
|
||||
BR2_LINUX_2_6_28=y
|
||||
# BR2_LINUX_2_6_27 is not set
|
||||
# BR2_LINUX_2_6_26 is not set
|
||||
# BR2_LINUX_2_6_25 is not set
|
||||
# BR2_LINUX_2_6_24 is not set
|
||||
# BR2_LINUX_2_6_23 is not set
|
||||
# BR2_LINUX_2_6_22 is not set
|
||||
# BR2_LINUX_2_6_21 is not set
|
||||
# BR2_LINUX_2_6_20 is not set
|
||||
# BR2_LINUX_2_6_29 is not set
|
||||
# BR2_LINUX26_CUSTOM is not set
|
||||
|
||||
#
|
||||
# Patches
|
||||
#
|
||||
BR2_KERNEL_ADD_KERNEL_ORG_PATCH=y
|
||||
# BR2_KERNEL_ADD_LATEST is not set
|
||||
# BR2_KERNEL_ADD_LATEST_MINORPATCH is not set
|
||||
BR2_KERNEL_ADD_MINORPATCH=y
|
||||
# BR2_KERNEL_ADD_LATEST_RC_PATCH is not set
|
||||
# BR2_KERNEL_ADD_RC_PATCH is not set
|
||||
# BR2_KERNEL_ADD_LATEST_SNAPSHOT is not set
|
||||
# BR2_KERNEL_ADD_SNAPSHOT is not set
|
||||
# BR2_KERNEL_ADD_LATEST_MM_PATCH is not set
|
||||
# BR2_KERNEL_ADD_MM_PATCH is not set
|
||||
BR2_KERNEL_ADD_PATCH=y
|
||||
BR2_KERNEL_MINORLEVEL="2"
|
||||
BR2_KERNEL_ARCH_PATCH_ENABLED=y
|
||||
BR2_ARCH_AT91_2_6_28=y
|
||||
# BR2_ARCH_AT91_2_6_27 is not set
|
||||
# BR2_ARCH_AT91_2_6_26 is not set
|
||||
# BR2_ARCH_AT91_2_6_25 is not set
|
||||
# BR2_ARCH_AT91_2_6_24 is not set
|
||||
# BR2_ARCH_AT91_2_6_22 is not set
|
||||
BR2_LINUX_BSP_PATCH=""
|
||||
BR2_KERNEL_PATCH="patch-$(BR2_DOWNLOAD_LINUX26_VERSION).$(BR2_KERNEL_PATCH_LEVEL).bz2"
|
||||
BR2_EXTRA_VERSION=".$(BR2_KERNEL_PATCH_LEVEL)"
|
||||
BR2_KERNEL_BASE=y
|
||||
BR2_DOWNLOAD_LINUX26_VERSION="$(BR2_KERNEL_THIS_VERSION)"
|
||||
BR2_LINUX26_VERSION="$(BR2_KERNEL_THIS_VERSION).$(BR2_KERNEL_PATCH_LEVEL)"
|
||||
|
||||
#
|
||||
# Linux Kernel Configuration
|
||||
#
|
||||
BR2_PACKAGE_LINUX_USE_KCONFIG=y
|
||||
# BR2_PACKAGE_LINUX_USE_DEFCONFIG is not set
|
||||
# BR2_PACKAGE_LINUX_USE_XCONFIG is not set
|
||||
# BR2_LINUX_BIN_BZIMAGE is not set
|
||||
BR2_LINUX_BIN_UIMAGE=y
|
||||
# BR2_LINUX_BIN_VMLINUX is not set
|
||||
# BR2_LINUX_BIN_ZIMAGE is not set
|
||||
# BR2_LINUX_BIN_CUSTOM is not set
|
||||
|
||||
#
|
||||
# Destinations for linux kernel binaries
|
||||
#
|
||||
# BR2_LINUX_COPYTO_ROOTFS is not set
|
||||
BR2_LINUX_COPYTO_TFTPBOOT=y
|
||||
BR2_LINUX_COPYTO=""
|
||||
BR2_LINUX_COPY_CONFIGURATION=y
|
||||
@@ -875,6 +875,6 @@ BR2_LINUX_BIN_UIMAGE=y
|
||||
# Destinations for linux kernel binaries
|
||||
#
|
||||
BR2_LINUX_COPYTO_ROOTFS=y
|
||||
BR2_LINUX_COPYTO_TFTPBOOT=y
|
||||
# BR2_LINUX_COPYTO_TFTPBOOT is not set
|
||||
BR2_LINUX_COPYTO=""
|
||||
# BR2_LINUX_COPY_CONFIGURATION is not set
|
||||
|
||||
@@ -892,6 +892,6 @@ BR2_LINUX_BIN_UIMAGE=y
|
||||
# Destinations for linux kernel binaries
|
||||
#
|
||||
BR2_LINUX_COPYTO_ROOTFS=y
|
||||
BR2_LINUX_COPYTO_TFTPBOOT=y
|
||||
# BR2_LINUX_COPYTO_TFTPBOOT is not set
|
||||
BR2_LINUX_COPYTO=""
|
||||
# BR2_LINUX_COPY_CONFIGURATION is not set
|
||||
|
||||
@@ -991,6 +991,6 @@ BR2_LINUX_BIN_UIMAGE=y
|
||||
# Destinations for linux kernel binaries
|
||||
#
|
||||
BR2_LINUX_COPYTO_ROOTFS=y
|
||||
BR2_LINUX_COPYTO_TFTPBOOT=y
|
||||
# BR2_LINUX_COPYTO_TFTPBOOT is not set
|
||||
BR2_LINUX_COPYTO=""
|
||||
BR2_LINUX_COPY_CONFIGURATION=y
|
||||
|
||||
@@ -72,6 +72,7 @@
|
||||
#/dev/ttySA c 666 0 0 204 5 0 1 3
|
||||
/dev/psaux c 666 0 0 10 1 0 0 -
|
||||
#/dev/ppp c 666 0 0 108 0 - - -
|
||||
/dev/ttyCPM c 666 0 0 204 46 0 1 4
|
||||
/dev/ttyAMA c 666 0 0 204 64 0 1 4
|
||||
/dev/ttyPSC c 666 0 0 204 148 0 1 4
|
||||
/dev/ttyUL c 666 0 0 204 187 0 1 4
|
||||
|
||||
@@ -22,3 +22,7 @@ ttyPSC0
|
||||
ttyPSC1
|
||||
ttyPSC2
|
||||
ttyPSC3
|
||||
ttyCPM0
|
||||
ttyCPM1
|
||||
ttyCPM2
|
||||
ttyCPM3
|
||||
|
||||
@@ -22,3 +22,7 @@ ttyPSC0
|
||||
ttyPSC1
|
||||
ttyPSC2
|
||||
ttyPSC3
|
||||
ttyCPM0
|
||||
ttyCPM1
|
||||
ttyCPM2
|
||||
ttyCPM3
|
||||
|
||||
@@ -505,8 +505,6 @@ config BR2_LINUX_COPYTO_ROOTFS
|
||||
|
||||
config BR2_LINUX_COPYTO_TFTPBOOT
|
||||
bool "Copy kernel to /tftpboot"
|
||||
default y if BR2_TARGET_ATMEL
|
||||
default n if !BR2_TARGET_ATMEL
|
||||
help
|
||||
Copy kernel to /tftpboot directory
|
||||
|
||||
@@ -518,8 +516,6 @@ config BR2_LINUX_COPYTO
|
||||
|
||||
config BR2_LINUX_COPY_CONFIGURATION
|
||||
bool "Copy buildroot configuration to Linux file system"
|
||||
default y if BR2_TARGET_ATMEL
|
||||
default n if !BR2_TARGET_ATMEL
|
||||
help
|
||||
The configuration files for buildroot, uclibc, busybox and linux
|
||||
are copied to the "<root>/boot" directory.
|
||||
|
||||
@@ -67,9 +67,11 @@ endif
|
||||
endif
|
||||
endif
|
||||
|
||||
ROOTFS_STRIPPED_SUFFIX=$(strip $(subst ",,$(ROOTFS_SUFFIX)))
|
||||
#"))
|
||||
# File name for the Linux kernel binary
|
||||
ifndef LINUX26_KERNEL
|
||||
LINUX26_KERNEL=$(BINARIES_DIR)/linux-kernel-$(LINUX26_VERSION)-$(KERNEL_ARCH)
|
||||
LINUX26_KERNEL_NAME=$(BINARIES_DIR)/$(LINUX26_FORMAT)$(ROOTFS_STRIPPED_SUFFIX)
|
||||
endif
|
||||
|
||||
# Version of Linux AFTER patches
|
||||
@@ -78,7 +80,7 @@ LINUX26_DIR=$(PROJECT_BUILD_DIR)/linux-$(LINUX26_VERSION)
|
||||
# for packages that need it
|
||||
LINUX_VERSION:=$(LINUX26_VERSION)
|
||||
LINUX_DIR=$(LINUX26_DIR)
|
||||
LINUX_KERNEL=$(LINUX26_KERNEL)
|
||||
LINUX_KERNEL=$(LINUX26_KERNEL_NAME)
|
||||
|
||||
# kernel patches
|
||||
ifeq ($(strip $(LINUX26_PATCH_DIR)),)
|
||||
@@ -192,11 +194,11 @@ $(LINUX26_DIR)/.depend_done: $(LINUX26_DIR)/.configured
|
||||
$(MAKE) $(LINUX26_MAKE_FLAGS) -C $(LINUX26_DIR) prepare
|
||||
touch $@
|
||||
|
||||
$(LINUX26_KERNEL): $(INITRAMFS_TARGET) $(BB_INITRAMFS_TARGET) \
|
||||
$(LINUX26_KERNEL_NAME): $(INITRAMFS_TARGET) $(BB_INITRAMFS_TARGET) \
|
||||
$(LINUX26_DIR)/.depend_done
|
||||
$(MAKE) $(LINUX26_MAKE_FLAGS) \
|
||||
-C $(LINUX26_DIR) $(LINUX26_FORMAT)
|
||||
cp -pf $(LINUX26_DIR)/$(LINUX26_BINLOC) $(LINUX26_KERNEL)
|
||||
cp -pf $(LINUX26_DIR)/$(LINUX26_BINLOC) $(LINUX26_KERNEL_NAME)
|
||||
touch -c $@
|
||||
|
||||
$(TARGET_DIR)/lib/modules/$(LINUX26_VERSION)/modules.dep: $(LINUX26_DIR)/.configured
|
||||
@@ -227,7 +229,7 @@ linux26-xconfig: $(LINUX26_DIR)/.patched host-sed
|
||||
$(MAKE) $(LINUX26_MAKE_FLAGS) -C $(LINUX26_DIR) xconfig
|
||||
-[ -f $(LINUX26_DIR)/.config ] && touch $(LINUX26_DIR)/.configured
|
||||
|
||||
linux26: $(LINUX26_KERNEL)
|
||||
linux26: $(LINUX26_KERNEL_NAME)
|
||||
|
||||
$(LINUX26_DIR)/.modules_installed: $(TARGET_DIR)/lib/modules/$(LINUX26_VERSION)/modules.dep
|
||||
touch $@
|
||||
@@ -249,7 +251,7 @@ linux26-force:
|
||||
|
||||
# This has been renamed so we do _NOT_ by default run this on 'make clean'
|
||||
linux26clean:
|
||||
rm -f $(LINUX26_KERNEL) $(LINUX26_DIR)/.configured
|
||||
rm -f $(LINUX26_KERNEL_NAME) $(LINUX26_DIR)/.configured
|
||||
-$(MAKE) PATH=$(TARGET_PATH) -C $(LINUX26_DIR) clean
|
||||
|
||||
linux26-dirclean:
|
||||
|
||||
@@ -138,7 +138,6 @@ ifeq ($(LINUX26_FORMAT),vmlinux)
|
||||
ifeq ($(LINUX26_BINLOC),)
|
||||
LINUX26_BINLOC:=$(LINUX26_FORMAT)
|
||||
endif
|
||||
KERNEL_EXT:=
|
||||
endif
|
||||
|
||||
# --------------
|
||||
@@ -149,7 +148,6 @@ LINUX26_MKIMAGE_DEP:=$(LINUX26_MKIMAGE_DIR)/mkimage
|
||||
ifeq ($(LINUX26_BINLOC),)
|
||||
LINUX26_BINLOC:=arch/$(KERNEL_ARCH)/boot/$(LINUX26_FORMAT)
|
||||
endif
|
||||
KERNEL_EXT:=.gz
|
||||
endif
|
||||
|
||||
# --------------
|
||||
@@ -158,7 +156,6 @@ ifeq ($(LINUX26_FORMAT),zImage)
|
||||
ifeq ($(LINUX26_BINLOC),)
|
||||
LINUX26_BINLOC:=arch/$(KERNEL_ARCH)/boot/$(LINUX26_FORMAT)
|
||||
endif
|
||||
KERNEL_EXT:=.z
|
||||
endif
|
||||
|
||||
# --------------
|
||||
@@ -167,14 +164,13 @@ ifeq ($(LINUX26_FORMAT),bzImage)
|
||||
ifeq ($(LINUX26_BINLOC),)
|
||||
LINUX26_BINLOC:=arch/$(KERNEL_ARCH)/boot/bzImage
|
||||
endif
|
||||
KERNEL_EXT:=.bz
|
||||
endif
|
||||
|
||||
ROOTFS_STRIPPED_SUFFIX=$(strip $(subst ",,$(ROOTFS_SUFFIX)))
|
||||
#"))
|
||||
# -----------------------------------------------------------------------------
|
||||
# File name for the Linux kernel binary
|
||||
LINUX26_KERNEL_NAME:=$(BOARD_NAME)-linux-$(LINUX26_VERSION)$(ROOTFS_STRIPPED_SUFFIX)$(KERNEL_EXT)
|
||||
LINUX26_KERNEL_NAME:=$(LINUX26_FORMAT)$(ROOTFS_STRIPPED_SUFFIX)
|
||||
|
||||
|
||||
ifeq ($(BOARD_NAME),)
|
||||
@@ -182,7 +178,7 @@ BOARD_NAME=$(ARCH)
|
||||
endif
|
||||
|
||||
ifndef LINUX26_KERNEL
|
||||
LINUX26_KERNEL:=$(BINARIES_DIR)/$(BOARD_NAME)-linux-$(LINUX26_VERSION)-$(DATE)$(KERNEL_EXT)
|
||||
LINUX26_KERNEL:=$(BINARIES_DIR)/$(LINUX26_KERNEL_NAME)
|
||||
endif
|
||||
|
||||
# for packages that need it
|
||||
@@ -476,7 +472,7 @@ $(PROJECT_BUILD_DIR)/.linux-version: $(LINUX26_KERNEL)
|
||||
echo $(LINUX26_VERSION_PROBED) > $(PROJECT_BUILD_DIR)/.linux-version
|
||||
echo LINUX_MODULES=`$(LINUX26_VERSION_PROBED)`
|
||||
|
||||
$(LINUX26_MKIMAGE_DIR)/mkimage: u-boot
|
||||
$(LINUX26_MKIMAGE_DIR)/mkimage: $(U_BOOT_TOOLS)
|
||||
mkdir -p $(LINUX26_MKIMAGE_DIR)
|
||||
cp $(MKIMAGE) $(LINUX26_MKIMAGE_DIR)
|
||||
|
||||
|
||||
@@ -311,7 +311,6 @@ config BR2_TARGET_UBOOT_ETHADDR
|
||||
|
||||
config BR2_TARGET_UBOOT_ETH1ADDR
|
||||
string "ethernet 2 address"
|
||||
depends on BR2_TARGET_AVR32
|
||||
help
|
||||
Target MAC address for the second ethernet interface.
|
||||
|
||||
|
||||
@@ -22,7 +22,6 @@ MKIMAGE:=$(U_BOOT_TOOLS)
|
||||
U_BOOT_AUTOSCRIPT=$(BINARIES_DIR)/autoscript
|
||||
|
||||
U_BOOT_TARGETS:=$(BINARIES_DIR)/$(U_BOOT_BIN) $(U_BOOT_TOOLS)
|
||||
#U_BOOT_TARGETS:=$(BINARIES_DIR)/$(U_BOOT_BIN)
|
||||
|
||||
ifeq ($(strip $(subst ",,$(BR2_TARGET_UBOOT_DEFAULT_ENV))),y)
|
||||
#"))
|
||||
@@ -106,15 +105,18 @@ $(U_BOOT_DIR)/.configured: $(U_BOOT_DIR)/.patched
|
||||
|
||||
$(U_BOOT_DIR)/.header_modified: $(U_BOOT_DIR)/.configured
|
||||
# Modify configuration header in $(U_BOOT_INC_CONF_FILE)
|
||||
ifdef BR2_TARGET_UBOOT_DEFAULT_ENV
|
||||
@echo >> $(U_BOOT_INC_CONF_FILE)
|
||||
@echo "/* Add a wrapper around the values Buildroot sets. */" >> $(U_BOOT_INC_CONF_FILE)
|
||||
@echo "#ifndef __BR2_ADDED_CONFIG_H" >> $(U_BOOT_INC_CONF_FILE)
|
||||
@echo "#define __BR2_ADDED_CONFIG_H" >> $(U_BOOT_INC_CONF_FILE)
|
||||
$(call insert_define, DATE, $(DATE))
|
||||
$(call insert_define, DATE, $(DATE))
|
||||
$(call insert_define, CONFIG_LOAD_SCRIPTS, 1)
|
||||
ifneq ($(strip $(BR2_PROJECT)),"")
|
||||
$(call insert_define, CONFIG_HOSTNAME, $(BR2_PROJECT))
|
||||
endif
|
||||
endif # BR2_TARGET_UBOOT_DEFAULT_ENV
|
||||
ifdef BR2_TARGET_UBOOT_NETWORK
|
||||
ifneq ($(strip $(BR2_TARGET_UBOOT_IPADDR)),"")
|
||||
$(call insert_define, CONFIG_IPADDR, $(BR2_TARGET_UBOOT_IPADDR))
|
||||
ifneq ($(strip $(BR2_TARGET_UBOOT_GATEWAY)),"")
|
||||
@@ -135,19 +137,11 @@ ifneq ($(strip $(BR2_TARGET_UBOOT_ETH1ADDR)),"")
|
||||
$(call insert_define, CONFIG_ETH1ADDR, $(BR2_TARGET_UBOOT_ETH1ADDR))
|
||||
endif
|
||||
endif
|
||||
ifneq ($(strip $(BR2_TARGET_UBOOT_BOOTARGS)),)
|
||||
ifneq ($(strip $(BR2_TARGET_UBOOT_BOOTARGS)),"")
|
||||
$(call insert_define, CONFIG_BOOTARGS, $(BR2_TARGET_UBOOT_BOOTARGS))
|
||||
endif
|
||||
endif
|
||||
ifneq ($(strip $(BR2_TARGET_UBOOT_BOOTCMD)),)
|
||||
ifneq ($(strip $(BR2_TARGET_UBOOT_BOOTCMD)),"")
|
||||
$(call insert_define, CONFIG_BOOTCOMMAND, $(BR2_TARGET_UBOOT_BOOTCMD))
|
||||
endif
|
||||
endif
|
||||
endif # BR2_TARGET_UBOOT_NETWORK
|
||||
ifeq ($(BR2_TARGET_UBOOT_SILENT),y)
|
||||
$(call insert_define, CONFIG_SILENT_CONSOLE,)
|
||||
endif
|
||||
ifdef BR2_TARGET_UBOOT_DEFAULT_ENV
|
||||
ifneq ($(strip $(BR2_TARGET_UBOOT_KERNEL_START)),"")
|
||||
$(call insert_define, KERNEL_START, $(BR2_TARGET_UBOOT_KERNEL_START))
|
||||
endif
|
||||
@@ -170,6 +164,7 @@ ifneq ($(strip $(BR2_TARGET_UBOOT_MEMORY_SIZE)),"")
|
||||
$(call insert_define, MEMORY_SIZE, $(BR2_TARGET_UBOOT_MEMORY_SIZE))
|
||||
endif
|
||||
@echo "#endif /* __BR2_ADDED_CONFIG_H */" >> $(U_BOOT_INC_CONF_FILE)
|
||||
endif # BR2_TARGET_UBOOT_DEFAULT_ENV
|
||||
touch $@
|
||||
|
||||
$(U_BOOT_DIR)/$(U_BOOT_BIN): $(U_BOOT_DIR)/.header_modified
|
||||
@@ -186,7 +181,7 @@ $(BINARIES_DIR)/$(U_BOOT_BIN): $(U_BOOT_DIR)/$(U_BOOT_BIN)
|
||||
cp -dpf $(U_BOOT_DIR)/$(U_BOOT_BIN) $(BINARIES_DIR)/$(U_BOOT_TARGET_BIN)
|
||||
(cd $(BINARIES_DIR); ln -s $(U_BOOT_TARGET_BIN) $(U_BOOT_BIN))
|
||||
|
||||
$(U_BOOT_TOOLS): $(U_BOOT_DIR)/tools/$(U_BOOT_TOOLS_BIN)
|
||||
$(U_BOOT_TOOLS): $(U_BOOT_DIR)/$(U_BOOT_BIN)
|
||||
cp -dpf $(U_BOOT_DIR)/tools/$(U_BOOT_TOOLS_BIN) $(STAGING_DIR)/usr/bin/
|
||||
|
||||
$(TARGET_DIR)/usr/bin/mkimage: $(U_BOOT_DIR)/$(U_BOOT_BIN)
|
||||
@@ -243,7 +238,7 @@ endif
|
||||
ifneq ($(TARGET_UBOOT_NETMASK),)
|
||||
echo setenv netmask $(TARGET_UBOOT_NETMASK) >> $(U_BOOT_AUTOSCRIPT)
|
||||
endif
|
||||
echo setenv linux $(LINUX26_KERNEL_NAME).gz >> $(U_BOOT_AUTOSCRIPT)
|
||||
echo setenv linux $(LINUX26_KERNEL_NAME) >> $(U_BOOT_AUTOSCRIPT)
|
||||
echo setenv kernel-version $(LINUX26_VERSION) >> $(U_BOOT_AUTOSCRIPT)
|
||||
echo setenv kernel-date $(DATE) >> $(U_BOOT_AUTOSCRIPT)
|
||||
echo setenv hostname $(TARGET_HOSTNAME) >> $(U_BOOT_AUTOSCRIPT)
|
||||
@@ -299,8 +294,6 @@ u-boot-status:
|
||||
@echo BR2_TARGET_UBOOT_NETMASK = $(BR2_TARGET_UBOOT_NETMASK)
|
||||
@echo BR2_TARGET_UBOOT_ETH0ADDR = $(BR2_TARGET_UBOOT_ETHADDR)
|
||||
@echo BR2_TARGET_UBOOT_ETH1ADDR = $(BR2_TARGET_UBOOT_ETH1ADDR)
|
||||
@echo BR2_TARGET_UBOOT_BOOTARGS = $(BR2_TARGET_UBOOT_BOOTARGS)
|
||||
@echo BR2_TARGET_UBOOT_BOOTCMD = $(BR2_TARGET_UBOOT_BOOTCMD)
|
||||
@echo BR2_TARGET_UBOOT_SILENT = $(BR2_TARGET_UBOOT_SILENT)
|
||||
@echo UBOOT_BOARD_NAME=$(UBOOT_BOARD_NAME)
|
||||
@exit 0
|
||||
|
||||
@@ -26,8 +26,6 @@ config BR2_TOOLCHAIN_SOURCE
|
||||
default y if BR2_TOOLCHAIN_BUILDROOT || BR2_TOOLCHAIN_EXTERNAL_SOURCE
|
||||
default n if BR2_TOOLCHAIN_EXTERNAL
|
||||
|
||||
source "toolchain/external-toolchain/Config.in.2"
|
||||
|
||||
source "target/device/Config.in.toolchain"
|
||||
|
||||
source "toolchain/Config.in.1"
|
||||
@@ -40,6 +38,6 @@ source "toolchain/gdb/Config.in"
|
||||
comment "Common Toolchain Options"
|
||||
|
||||
source "toolchain/Config.in.2"
|
||||
source "toolchain/external-toolchain/Config.in.2"
|
||||
|
||||
endmenu
|
||||
|
||||
|
||||
@@ -55,8 +55,8 @@ BINUTILS_NO_MPFR:=y
|
||||
endif
|
||||
|
||||
ifndef BINUTILS_NO_MPFR
|
||||
BINUTILS_HOST_PREREQ:=$(TOOL_BUILD_DIR)/gmp/lib/libgmp$(HOST_SHREXT) \
|
||||
$(TOOL_BUILD_DIR)/mpfr/lib/libmpfr$(HOST_SHREXT)
|
||||
BINUTILS_HOST_PREREQ:=$(TOOL_BUILD_DIR)/gmp/lib/libgmp$(HOST_LIBEXT) \
|
||||
$(TOOL_BUILD_DIR)/mpfr/lib/libmpfr$(HOST_LIBEXT)
|
||||
|
||||
BINUTILS_TARGET_PREREQ:=$(TARGET_DIR)/usr/lib/libgmp$(LIBTGTEXT) \
|
||||
$(TARGET_DIR)/usr/lib/libmpfr$(LIBTGTEXT)
|
||||
|
||||
@@ -3,12 +3,9 @@
|
||||
if BR2_TOOLCHAIN_EXTERNAL
|
||||
config BR2_TOOLCHAIN_EXTERNAL_PATH
|
||||
string "External toolchain path"
|
||||
default "$(GCCROOT)"
|
||||
default "/path/to/staging_dir/usr"
|
||||
help
|
||||
Path to where the external toolchain is installed.
|
||||
Either define GCCROOT in your environment
|
||||
or an absolute path like:
|
||||
"/path/to/staging_dir/usr"
|
||||
|
||||
config BR2_TOOLCHAIN_EXTERNAL_PREFIX
|
||||
string "External toolchain prefix"
|
||||
|
||||
@@ -60,4 +60,3 @@ $(TARGET_DIR)/lib/$(strip $(subst ",, $(BR2_TOOLCHAIN_EXTERNAL_LIB_C))):
|
||||
$(call copy_toolchain_lib_root, $$libs, /lib, $(BR2_TOOLCHAIN_EXTERNAL_STRIP)); \
|
||||
done
|
||||
$(call copy_toolchain_sysroot)
|
||||
|
||||
|
||||
@@ -1,31 +0,0 @@
|
||||
ChangeLog (regrename)
|
||||
|
||||
gcc/
|
||||
* regrename.c: Unshare RTX earlier in build_def_use to avoid
|
||||
corruption of dup_loc.
|
||||
|
||||
|
||||
Index: gcc/regrename.c
|
||||
===================================================================
|
||||
--- gcc/regrename.c (revision 197947)
|
||||
+++ gcc/regrename.c (working copy)
|
||||
@@ -783,6 +783,10 @@ build_def_use (basic_block bb)
|
||||
recog_data.operand_type[i] = OP_INOUT;
|
||||
}
|
||||
|
||||
+ /* Unshare dup_loc RTL */
|
||||
+ for (i = 0; i < recog_data.n_dups; i++)
|
||||
+ *recog_data.dup_loc[i] = copy_rtx(*recog_data.dup_loc[i]);
|
||||
+
|
||||
/* Step 1: Close chains for which we have overlapping reads. */
|
||||
for (i = 0; i < n_ops; i++)
|
||||
scan_rtx (insn, recog_data.operand_loc[i],
|
||||
@@ -813,7 +817,7 @@ build_def_use (basic_block bb)
|
||||
OP_IN, 0);
|
||||
|
||||
for (i = 0; i < recog_data.n_dups; i++)
|
||||
- *recog_data.dup_loc[i] = copy_rtx (old_dups[i]);
|
||||
+ *recog_data.dup_loc[i] = old_dups[i];
|
||||
for (i = 0; i < n_ops; i++)
|
||||
*recog_data.operand_loc[i] = old_operands[i];
|
||||
if (recog_data.n_dups)
|
||||
11
toolchain/gcc/4.3.2/900-backport-fix-for-bug-39076.patch
Normal file
11
toolchain/gcc/4.3.2/900-backport-fix-for-bug-39076.patch
Normal file
@@ -0,0 +1,11 @@
|
||||
--- gcc-4.3.2.orig/gcc/regrename.c 2007-09-09 04:23:47.000000000 +0200
|
||||
+++ gcc-4.3.2/gcc/regrename.c 2009-02-05 10:23:59.000000000 +0100
|
||||
@@ -813,7 +813,7 @@
|
||||
OP_IN, 0);
|
||||
|
||||
for (i = 0; i < recog_data.n_dups; i++)
|
||||
- *recog_data.dup_loc[i] = copy_rtx (old_dups[i]);
|
||||
+ *recog_data.dup_loc[i] = old_dups[i];
|
||||
for (i = 0; i < n_ops; i++)
|
||||
*recog_data.operand_loc[i] = old_operands[i];
|
||||
if (recog_data.n_dups)
|
||||
@@ -1,42 +0,0 @@
|
||||
see gcc PR34205
|
||||
Index: gcc-4.3.0/gcc/tree.h
|
||||
===================================================================
|
||||
--- gcc-4.3.0/gcc/tree.h (revision 130511)
|
||||
+++ gcc-4.3.0/gcc/tree.h (working copy)
|
||||
@@ -38,6 +38,7 @@
|
||||
|
||||
LAST_AND_UNUSED_TREE_CODE /* A convenient way to get a value for
|
||||
NUM_TREE_CODES. */
|
||||
+ ,__LAST_AND_UNUSED_TREE_CODE=32767 /* Force 16bit width. */
|
||||
};
|
||||
|
||||
#undef DEFTREECODE
|
||||
Index: gcc-4.3.0/gcc/rtl.h
|
||||
===================================================================
|
||||
--- gcc-4.3.0/gcc/rtl.h (revision 130511)
|
||||
+++ gcc-4.3.0/gcc/rtl.h (working copy)
|
||||
@@ -48,9 +48,11 @@
|
||||
#include "rtl.def" /* rtl expressions are documented here */
|
||||
#undef DEF_RTL_EXPR
|
||||
|
||||
- LAST_AND_UNUSED_RTX_CODE}; /* A convenient way to get a value for
|
||||
+ LAST_AND_UNUSED_RTX_CODE /* A convenient way to get a value for
|
||||
NUM_RTX_CODE.
|
||||
Assumes default enum value assignment. */
|
||||
+ ,__LAST_AND_UNUSED_RTX_CODE=32767 /* Force 16bit width. */
|
||||
+};
|
||||
|
||||
#define NUM_RTX_CODE ((int) LAST_AND_UNUSED_RTX_CODE)
|
||||
/* The cast here, saves many elsewhere. */
|
||||
Index: gcc-4.3.0/gcc/c-common.h
|
||||
===================================================================
|
||||
--- gcc-4.3.0/gcc/c-common.h (revision 130511)
|
||||
+++ gcc-4.3.0/gcc/c-common.h (working copy)
|
||||
@@ -125,6 +125,7 @@
|
||||
RID_LAST_AT = RID_AT_IMPLEMENTATION,
|
||||
RID_FIRST_PQ = RID_IN,
|
||||
RID_LAST_PQ = RID_ONEWAY
|
||||
+ ,__LAST_AND_UNUSED_RID=32767 /* Force 16bit width. */
|
||||
};
|
||||
|
||||
#define OBJC_IS_AT_KEYWORD(rid) \
|
||||
@@ -498,23 +498,5 @@ gcc-status:
|
||||
@echo GCC_PATCH_DIR=$(GCC_PATCH_DIR)
|
||||
@echo GCC_SITE=$(GCC_SITE)
|
||||
|
||||
GCCSCRIPT=$(ARCH)-uclibc-gcc-$(BR2_GCC_VERSION).sh
|
||||
|
||||
gccscript:
|
||||
@rm -f $(GCCSCRIPT)
|
||||
@rm -f gcc.sh
|
||||
@echo "#!/bin/sh" > $(GCCSCRIPT)
|
||||
@echo "# $(ARCH) cross compiler toolchain created $(DATE)" >> $(GCCSCRIPT)
|
||||
@echo "# gcc-$(BR2_GCC_VERSION)" >> $(GCCSCRIPT)
|
||||
@echo "# binutils-$(BR2_BINUTILS_VERSION)" >> $(GCCSCRIPT)
|
||||
@echo "# uClibc-$(UCLIBC_VER)" >> $(GCCSCRIPT)
|
||||
@echo "export GCCROOT=$(BR2_STAGING_DIR)/usr" >> $(GCCSCRIPT)
|
||||
@echo "export PATH=\$$GCCROOT/bin:\$$PATH" >> $(GCCSCRIPT)
|
||||
@echo "export GCCPREFIX=$(ARCH)-linux" >> $(GCCSCRIPT)
|
||||
@echo "export CROSS_COMPILE=\$$GCCPREFIX-" >> $(GCCSCRIPT)
|
||||
@chmod a+x $(GCCSCRIPT)
|
||||
@ln -s $(GCCSCRIPT) gcc.sh
|
||||
@echo "$(GCCSCRIPT) created"
|
||||
@more $(GCCSCRIPT)
|
||||
endif
|
||||
# gcc-4.x only
|
||||
|
||||
@@ -117,7 +117,7 @@ config BR2_DEFAULT_KERNEL_HEADERS
|
||||
default "2.6.24.7" if BR2_KERNEL_HEADERS_2_6_24
|
||||
default "2.6.25.19" if BR2_KERNEL_HEADERS_2_6_25
|
||||
default "2.6.26.8" if BR2_KERNEL_HEADERS_2_6_26
|
||||
default "2.6.27.13" if BR2_KERNEL_HEADERS_2_6_27
|
||||
default "2.6.28.2" if BR2_KERNEL_HEADERS_2_6_28
|
||||
default "2.6.27.15" if BR2_KERNEL_HEADERS_2_6_27
|
||||
default "2.6.28.4" if BR2_KERNEL_HEADERS_2_6_28
|
||||
default "2.6" if BR2_KERNEL_HEADERS_SNAP
|
||||
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
--- a/include/linux/klist.h
|
||||
+++ b/include/linux/klist.h
|
||||
@@ -23,7 +23,7 @@ struct klist {
|
||||
struct list_head k_list;
|
||||
void (*get)(struct klist_node *);
|
||||
void (*put)(struct klist_node *);
|
||||
-};
|
||||
+} __attribute__ ((aligned (4)));
|
||||
|
||||
#define KLIST_INIT(_name, _get, _put) \
|
||||
{ .k_lock = __SPIN_LOCK_UNLOCKED(_name.k_lock), \
|
||||
|
||||
@@ -75,7 +75,7 @@ LDSO_LDD_SUPPORT=y
|
||||
LDSO_CACHE_SUPPORT=y
|
||||
# LDSO_PRELOAD_FILE_SUPPORT is not set
|
||||
LDSO_BASE_FILENAME="ld.so"
|
||||
# LDSO_RUNPATH is not set
|
||||
LDSO_RUNPATH=y
|
||||
# DL_FINI_CRT_COMPAT is not set
|
||||
UCLIBC_CTOR_DTOR=y
|
||||
# HAS_NO_THREADS is not set
|
||||
|
||||
@@ -1,215 +0,0 @@
|
||||
#
|
||||
# Automatically generated make config: don't edit
|
||||
# Tue Jul 17 02:34:41 2007
|
||||
#
|
||||
# TARGET_alpha is not set
|
||||
TARGET_arm=y
|
||||
# TARGET_bfin is not set
|
||||
# TARGET_cris is not set
|
||||
# TARGET_e1 is not set
|
||||
# TARGET_frv is not set
|
||||
# TARGET_h8300 is not set
|
||||
# TARGET_hppa is not set
|
||||
# TARGET_i386 is not set
|
||||
# TARGET_i960 is not set
|
||||
# TARGET_ia64 is not set
|
||||
# TARGET_m68k is not set
|
||||
# TARGET_microblaze is not set
|
||||
# TARGET_mips is not set
|
||||
# TARGET_nios is not set
|
||||
# TARGET_nios2 is not set
|
||||
# TARGET_powerpc is not set
|
||||
# TARGET_sh is not set
|
||||
# TARGET_sh64 is not set
|
||||
# TARGET_sparc is not set
|
||||
# TARGET_v850 is not set
|
||||
# TARGET_vax is not set
|
||||
# TARGET_x86_64 is not set
|
||||
|
||||
#
|
||||
# Target Architecture Features and Options
|
||||
#
|
||||
TARGET_ARCH="arm"
|
||||
FORCE_OPTIONS_FOR_ARCH=y
|
||||
CONFIG_ARM_OABI=y
|
||||
# CONFIG_ARM_EABI is not set
|
||||
CONFIG_GENERIC_ARM=y
|
||||
# CONFIG_ARM610 is not set
|
||||
# CONFIG_ARM710 is not set
|
||||
# CONFIG_ARM7TDMI is not set
|
||||
# CONFIG_ARM720T is not set
|
||||
# CONFIG_ARM920T is not set
|
||||
# CONFIG_ARM922T is not set
|
||||
# CONFIG_ARM926T is not set
|
||||
# CONFIG_ARM10T is not set
|
||||
# CONFIG_ARM1136JF_S is not set
|
||||
# CONFIG_ARM1176JZ_S is not set
|
||||
# CONFIG_ARM1176JZF_S is not set
|
||||
# CONFIG_ARM_SA110 is not set
|
||||
# CONFIG_ARM_SA1100 is not set
|
||||
# CONFIG_ARM_XSCALE is not set
|
||||
# CONFIG_ARM_IWMMXT is not set
|
||||
TARGET_SUBARCH=""
|
||||
|
||||
#
|
||||
# Using ELF file format
|
||||
#
|
||||
ARCH_ANY_ENDIAN=y
|
||||
ARCH_LITTLE_ENDIAN=y
|
||||
# ARCH_WANTS_BIG_ENDIAN is not set
|
||||
ARCH_WANTS_LITTLE_ENDIAN=y
|
||||
ARCH_HAS_MMU=y
|
||||
ARCH_USE_MMU=y
|
||||
UCLIBC_HAS_FLOATS=y
|
||||
UCLIBC_HAS_FPU=y
|
||||
DO_C99_MATH=y
|
||||
KERNEL_HEADERS="/home/ulf/projects/Buildroot/20070712/buildroot/toolchain_build_arm/linux/include"
|
||||
HAVE_DOT_CONFIG=y
|
||||
|
||||
#
|
||||
# General Library Settings
|
||||
#
|
||||
# HAVE_NO_PIC is not set
|
||||
DOPIC=y
|
||||
# HAVE_NO_SHARED is not set
|
||||
# ARCH_HAS_NO_LDSO is not set
|
||||
HAVE_SHARED=y
|
||||
# FORCE_SHAREABLE_TEXT_SEGMENTS is not set
|
||||
LDSO_LDD_SUPPORT=y
|
||||
LDSO_CACHE_SUPPORT=y
|
||||
# LDSO_PRELOAD_FILE_SUPPORT is not set
|
||||
LDSO_BASE_FILENAME="ld.so"
|
||||
# UCLIBC_STATIC_LDCONFIG is not set
|
||||
# LDSO_RUNPATH is not set
|
||||
UCLIBC_CTOR_DTOR=y
|
||||
# HAS_NO_THREADS is not set
|
||||
UCLIBC_HAS_THREADS=y
|
||||
# PTHREADS_DEBUG_SUPPORT is not set
|
||||
LINUXTHREADS_OLD=y
|
||||
UCLIBC_HAS_LFS=y
|
||||
# MALLOC is not set
|
||||
# MALLOC_SIMPLE is not set
|
||||
MALLOC_STANDARD=y
|
||||
MALLOC_GLIBC_COMPAT=y
|
||||
UCLIBC_DYNAMIC_ATEXIT=y
|
||||
# COMPAT_ATEXIT is not set
|
||||
# UCLIBC_SUSV3_LEGACY is not set
|
||||
# UCLIBC_SUSV3_LEGACY_MACROS is not set
|
||||
UCLIBC_HAS_SHADOW=y
|
||||
# UCLIBC_HAS_PROGRAM_INVOCATION_NAME is not set
|
||||
UCLIBC_HAS___PROGNAME=y
|
||||
# UNIX98PTY_ONLY is not set
|
||||
ASSUME_DEVPTS=y
|
||||
UCLIBC_HAS_TM_EXTENSIONS=y
|
||||
UCLIBC_HAS_TZ_CACHING=y
|
||||
UCLIBC_HAS_TZ_FILE=y
|
||||
UCLIBC_HAS_TZ_FILE_READ_MANY=y
|
||||
UCLIBC_TZ_FILE_PATH="/etc/TZ"
|
||||
|
||||
#
|
||||
# Advanced Library Settings
|
||||
#
|
||||
UCLIBC_PWD_BUFFER_SIZE=256
|
||||
UCLIBC_GRP_BUFFER_SIZE=256
|
||||
|
||||
#
|
||||
# Networking Support
|
||||
#
|
||||
# UCLIBC_HAS_IPV6 is not set
|
||||
UCLIBC_HAS_RPC=y
|
||||
UCLIBC_HAS_FULL_RPC=y
|
||||
UCLIBC_HAS_REENTRANT_RPC=y
|
||||
UCLIBC_USE_NETLINK=y
|
||||
# UCLIBC_HAS_BSD_RES_CLOSE is not set
|
||||
|
||||
#
|
||||
# String and Stdio Support
|
||||
#
|
||||
UCLIBC_HAS_STRING_GENERIC_OPT=y
|
||||
UCLIBC_HAS_STRING_ARCH_OPT=y
|
||||
UCLIBC_HAS_CTYPE_TABLES=y
|
||||
UCLIBC_HAS_CTYPE_SIGNED=y
|
||||
# UCLIBC_HAS_CTYPE_UNSAFE is not set
|
||||
UCLIBC_HAS_CTYPE_CHECKED=y
|
||||
# UCLIBC_HAS_CTYPE_ENFORCED is not set
|
||||
UCLIBC_HAS_WCHAR=y
|
||||
UCLIBC_HAS_LOCALE=y
|
||||
UCLIBC_PREGENERATED_LOCALE_DATA=y
|
||||
UCLIBC_DOWNLOAD_PREGENERATED_LOCALE_DATA=y
|
||||
# UCLIBC_HAS_XLOCALE is not set
|
||||
UCLIBC_HAS_HEXADECIMAL_FLOATS=y
|
||||
# UCLIBC_HAS_GLIBC_DIGIT_GROUPING is not set
|
||||
UCLIBC_HAS_GLIBC_CUSTOM_PRINTF=y
|
||||
UCLIBC_PRINTF_SCANF_POSITIONAL_ARGS=9
|
||||
UCLIBC_HAS_SCANF_GLIBC_A_FLAG=y
|
||||
# UCLIBC_HAS_STDIO_BUFSIZ_NONE is not set
|
||||
# UCLIBC_HAS_STDIO_BUFSIZ_256 is not set
|
||||
# UCLIBC_HAS_STDIO_BUFSIZ_512 is not set
|
||||
# UCLIBC_HAS_STDIO_BUFSIZ_1024 is not set
|
||||
# UCLIBC_HAS_STDIO_BUFSIZ_2048 is not set
|
||||
UCLIBC_HAS_STDIO_BUFSIZ_4096=y
|
||||
# UCLIBC_HAS_STDIO_BUFSIZ_8192 is not set
|
||||
UCLIBC_HAS_STDIO_BUILTIN_BUFFER_NONE=y
|
||||
# UCLIBC_HAS_STDIO_BUILTIN_BUFFER_4 is not set
|
||||
# UCLIBC_HAS_STDIO_BUILTIN_BUFFER_8 is not set
|
||||
# UCLIBC_HAS_STDIO_SHUTDOWN_ON_ABORT is not set
|
||||
UCLIBC_HAS_STDIO_GETC_MACRO=y
|
||||
UCLIBC_HAS_STDIO_PUTC_MACRO=y
|
||||
UCLIBC_HAS_STDIO_AUTO_RW_TRANSITION=y
|
||||
# UCLIBC_HAS_FOPEN_LARGEFILE_MODE is not set
|
||||
UCLIBC_HAS_FOPEN_EXCLUSIVE_MODE=y
|
||||
UCLIBC_HAS_GLIBC_CUSTOM_STREAMS=y
|
||||
UCLIBC_HAS_PRINTF_M_SPEC=y
|
||||
UCLIBC_HAS_ERRNO_MESSAGES=y
|
||||
# UCLIBC_HAS_SYS_ERRLIST is not set
|
||||
UCLIBC_HAS_SIGNUM_MESSAGES=y
|
||||
# UCLIBC_HAS_SYS_SIGLIST is not set
|
||||
UCLIBC_HAS_GNU_GETOPT=y
|
||||
UCLIBC_HAS_GNU_GETSUBOPT=y
|
||||
|
||||
#
|
||||
# Big and Tall
|
||||
#
|
||||
UCLIBC_HAS_REGEX=y
|
||||
UCLIBC_HAS_REGEX_OLD=y
|
||||
UCLIBC_HAS_FNMATCH=y
|
||||
UCLIBC_HAS_FNMATCH_OLD=y
|
||||
# UCLIBC_HAS_WORDEXP is not set
|
||||
UCLIBC_HAS_FTW=y
|
||||
UCLIBC_HAS_GLOB=y
|
||||
UCLIBC_HAS_GNU_GLOB=y
|
||||
|
||||
#
|
||||
# Library Installation Options
|
||||
#
|
||||
SHARED_LIB_LOADER_PREFIX="/lib"
|
||||
RUNTIME_PREFIX="/"
|
||||
DEVEL_PREFIX="/usr/"
|
||||
|
||||
#
|
||||
# Security options
|
||||
#
|
||||
# UCLIBC_BUILD_PIE is not set
|
||||
# UCLIBC_HAS_ARC4RANDOM is not set
|
||||
# HAVE_NO_SSP is not set
|
||||
# UCLIBC_HAS_SSP is not set
|
||||
UCLIBC_BUILD_RELRO=y
|
||||
UCLIBC_BUILD_NOW=y
|
||||
# UCLIBC_BUILD_NOEXECSTACK is not set
|
||||
|
||||
#
|
||||
# uClibc development/debugging options
|
||||
#
|
||||
CROSS_COMPILER_PREFIX="/usr/local/arm/gcc-4.2.0-uclibc-20070714/usr/bin/arm-linux-uclibc-"
|
||||
UCLIBC_EXTRA_CFLAGS=""
|
||||
# DODEBUG is not set
|
||||
# DODEBUG_PT is not set
|
||||
DOSTRIP=y
|
||||
# DOASSERTS is not set
|
||||
# SUPPORT_LD_DEBUG is not set
|
||||
# SUPPORT_LD_DEBUG_EARLY is not set
|
||||
# UCLIBC_MALLOC_DEBUGGING is not set
|
||||
WARNINGS="-Wall"
|
||||
# EXTRA_WARNINGS is not set
|
||||
# DOMULTI is not set
|
||||
# UCLIBC_MJN3_ONLY is not set
|
||||
@@ -64,7 +64,7 @@ LDSO_CACHE_SUPPORT=y
|
||||
# LDSO_PRELOAD_FILE_SUPPORT is not set
|
||||
LDSO_BASE_FILENAME="ld.so"
|
||||
# UCLIBC_STATIC_LDCONFIG is not set
|
||||
# LDSO_RUNPATH is not set
|
||||
LDSO_RUNPATH=y
|
||||
# DL_FINI_CRT_COMPAT is not set
|
||||
UCLIBC_CTOR_DTOR=y
|
||||
# HAS_NO_THREADS is not set
|
||||
|
||||
@@ -63,7 +63,7 @@ LDSO_LDD_SUPPORT=y
|
||||
# LDSO_CACHE_SUPPORT is not set
|
||||
# LDSO_PRELOAD_FILE_SUPPORT is not set
|
||||
# UCLIBC_STATIC_LDCONFIG is not set
|
||||
# LDSO_RUNPATH is not set
|
||||
LDSO_RUNPATH=y
|
||||
UCLIBC_CTOR_DTOR=y
|
||||
# LDSO_GNU_HASH_SUPPORT is not set
|
||||
# HAS_NO_THREADS is not set
|
||||
|
||||
@@ -68,7 +68,7 @@ LDSO_CACHE_SUPPORT=y
|
||||
# LDSO_PRELOAD_FILE_SUPPORT is not set
|
||||
LDSO_BASE_FILENAME="ld.so"
|
||||
# UCLIBC_STATIC_LDCONFIG is not set
|
||||
# LDSO_RUNPATH is not set
|
||||
LDSO_RUNPATH=y
|
||||
UCLIBC_CTOR_DTOR=y
|
||||
# LDSO_GNU_HASH_SUPPORT is not set
|
||||
# HAS_NO_THREADS is not set
|
||||
|
||||
Reference in New Issue
Block a user