config BR2_DEBUG_1
bool "debug level 1"
help
- Debug level 1 produces minimal information, enough
- for making backtraces in parts of the program that
- you don't plan to debug. This includes descriptions
+ Debug level 1 produces minimal information, enough
+ for making backtraces in parts of the program that
+ you don't plan to debug. This includes descriptions
of functions and external variables, but no information
about local variables and no line numbers.
config BR2_DEBUG_3
bool "debug level 3"
help
- Level 3 includes extra information, such as all the
+ Level 3 includes extra information, such as all the
macro definitions present in the program. Some debuggers
support macro expansion when you use -g3.
endchoice
bool "optimization level 0"
depends on !BR2_PACKAGE_LINUX
help
- Do not optimize. This is the default.
+ Do not optimize. This is the default.
config BR2_OPTIMIZE_1
bool "optimization level 1"
depends on !BR2_PACKAGE_LINUX
help
- Optimize. Optimizing compilation takes somewhat more time,
- and a lot more memory for a large function. With -O, the
- compiler tries to reduce code size and execution time,
- without performing any optimizations that take a great deal
- of compilation time. -O turns on the following optimization
- flags: -fdefer-pop -fdelayed-branch -fguess-branch-probability
- -fcprop-registers -floop-optimize -fif-conversion
- -fif-conversion2 -ftree-ccp -ftree-dce -ftree-dominator-opts
- -ftree-dse -ftree-ter -ftree-lrs -ftree-sra -ftree-copyrename
+ Optimize. Optimizing compilation takes somewhat more time,
+ and a lot more memory for a large function. With -O, the
+ compiler tries to reduce code size and execution time,
+ without performing any optimizations that take a great deal
+ of compilation time. -O turns on the following optimization
+ flags: -fdefer-pop -fdelayed-branch -fguess-branch-probability
+ -fcprop-registers -floop-optimize -fif-conversion
+ -fif-conversion2 -ftree-ccp -ftree-dce -ftree-dominator-opts
+ -ftree-dse -ftree-ter -ftree-lrs -ftree-sra -ftree-copyrename
-ftree-fre -ftree-ch -funit-at-a-time -fmerge-constants
- -O also turns on -fomit-frame-pointer on machines where doing
+ -O also turns on -fomit-frame-pointer on machines where doing
so does not interfere with debugging.
config BR2_OPTIMIZE_2
bool "optimization level 2"
help
Optimize even more. GCC performs nearly all supported optimizations
- that do not involve a space-speed tradeoff. The compiler does not
- perform loop unrolling or function inlining when you specify -O2.
- As compared to -O, this option increases both compilation time and
- the performance of the generated code. -O2 turns on all optimization
- flags specified by -O. It also turns on the following optimization
- flags: -fthread-jumps -fcrossjumping -foptimize-sibling-calls
- -fcse-follow-jumps -fcse-skip-blocks -fgcse -fgcse-lm
- -fexpensive-optimizations -fstrength-reduce -frerun-cse-after-loop
- -frerun-loop-opt -fcaller-saves -fpeephole2 -fschedule-insns
- -fschedule-insns2 -fsched-interblock -fsched-spec -fregmove
- -fstrict-aliasing -fdelete-null-pointer-checks -freorder-blocks
- -freorder-functions -falign-functions -falign-jumps -falign-loops
+ that do not involve a space-speed tradeoff. The compiler does not
+ perform loop unrolling or function inlining when you specify -O2.
+ As compared to -O, this option increases both compilation time and
+ the performance of the generated code. -O2 turns on all optimization
+ flags specified by -O. It also turns on the following optimization
+ flags: -fthread-jumps -fcrossjumping -foptimize-sibling-calls
+ -fcse-follow-jumps -fcse-skip-blocks -fgcse -fgcse-lm
+ -fexpensive-optimizations -fstrength-reduce -frerun-cse-after-loop
+ -frerun-loop-opt -fcaller-saves -fpeephole2 -fschedule-insns
+ -fschedule-insns2 -fsched-interblock -fsched-spec -fregmove
+ -fstrict-aliasing -fdelete-null-pointer-checks -freorder-blocks
+ -freorder-functions -falign-functions -falign-jumps -falign-loops
-falign-labels -ftree-vrp -ftree-pre
Please note the warning under -fgcse about invoking -O2 on programs
that use computed gotos.
config BR2_OPTIMIZE_3
bool "optimization level 3"
help
- Optimize yet more. -O3 turns on all optimizations specified by -O2
- and also turns on the -finline-functions, -funswitch-loops and
+ Optimize yet more. -O3 turns on all optimizations specified by -O2
+ and also turns on the -finline-functions, -funswitch-loops and
-fgcse-after-reload options.
config BR2_OPTIMIZE_S
bool "optimize for size"
help
- Optimize for size. -Os enables all -O2 optimizations that do not
+ Optimize for size. -Os enables all -O2 optimizations that do not
typically increase code size. It also performs further optimizations
- designed to reduce code size. -Os disables the following optimization
- flags: -falign-functions -falign-jumps -falign-loops -falign-labels
+ designed to reduce code size. -Os disables the following optimization
+ flags: -falign-functions -falign-jumps -falign-loops -falign-labels
-freorder-blocks -freorder-blocks-and-partition -fprefetch-loop-arrays
-ftree-vect-loop-version
-
+
endchoice
config BR2_PREFER_STATIC_LIB
# target stuff is last so it can override anything else
include target/Makefile.in
-TARGETS+=erase-fakeroots
+TARGETS+=erase-fakeroots
TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS))
TARGETS_SOURCE:=$(patsubst %,%-source,$(TARGETS) $(BASE_TARGETS))
( scripts/copy.sh $(STAGING_DIR) $(TARGET_DIR) )
else
rm -rf $(TARGET_DIR)/usr/include $(TARGET_DIR)/usr/lib/pkgconfig
- find $(TARGET_DIR)/usr/lib -name '*.a' -delete
- find $(TARGET_DIR)/lib -name '*.a' -delete
- find $(TARGET_DIR)/usr/lib -name '*.la' -delete
- find $(TARGET_DIR)/lib -name '*.la' -delete
+ find $(TARGET_DIR)/usr/lib -name '*.a' -delete
+ find $(TARGET_DIR)/lib -name '*.a' -delete
+ find $(TARGET_DIR)/usr/lib -name '*.la' -delete
+ find $(TARGET_DIR)/lib -name '*.la' -delete
endif
source: $(TARGETS_SOURCE) $(HOST_SOURCE)
log: .lognr.$(PROJECT)
@expr `cat .lognr.$(PROJECT)` + 1 > .lognr.$(PROJECT)
@echo Creating $(PROJECT)-`cat .lognr.$(PROJECT)`.log
- @$(MAKE) > $(PROJECT)-`cat .lognr.$(PROJECT)`.log 2>&1
+ @$(MAKE) > $(PROJECT)-`cat .lognr.$(PROJECT)`.log 2>&1
cross: $(BASE_TARGETS)
# bool "Common Applications"
# default y
# help
-# A set of applications, utilities and libraries for
+# A set of applications, utilities and libraries for
# text processing, toolchain generation and other things.
# if the package uses libtool, patch it for cross-compiling in buildroot
for i in `find $(@D) -name ltmain.sh`; do \
toolchain/patch-kernel.sh $${i%/*} package buildroot-libtool.patch; \
- done
+ done
$(Q)touch $@
# Patch
--host=$(GNU_TARGET_NAME) --build=$(GNU_HOST_NAME) \
--prefix=/usr --sysconfdir=/etc
-ACE_OF_PENGUINS_DEPENDENCIES = uclibc libpng $(XSERVER)
+ACE_OF_PENGUINS_DEPENDENCIES = uclibc libpng $(XSERVER)
$(eval $(call AUTOTARGETS,package,ace_of_penguins))
\ No newline at end of file
ATK_AUTORECONF = NO
ATK_INSTALL_STAGING = YES
ATK_INSTALL_TARGET = YES
-ATK_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) LDFLAGS=-L$(STAGING_DIR)/usr/lib install
+ATK_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) LDFLAGS=-L$(STAGING_DIR)/usr/lib install
ATK_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes \
glib_cv_stack_grows=no glib_cv_uscore=no \
gl_cv_func_mkstemp_limitations=no ac_cv_func_working_mktime=yes \
jm_cv_func_working_re_compile_pattern=yes ac_use_included_regex=no \
gl_cv_c_restrict=no ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal \
- ac_cv_prog_F77=no ac_cv_prog_CXX=no
+ ac_cv_prog_F77=no ac_cv_prog_CXX=no
ifneq ($(BR2_PACKAGE_XSERVER_none),y)
ATK_CONF_OPT_X = --with-x \
--infodir=/usr/info --enable-shared \
--enable-static $(ATK_CONF_OPT_X) \
--disable-glibtest --enable-explicit-deps=no \
- --disable-debug
+ --disable-debug
ATK_DEPENDENCIES = libglib2 pkgconfig
config BR2_PACKAGE_AUTOCONF
bool "autoconf"
help
- Extensible program for developing configure scripts. These
+ Extensible program for developing configure scripts. These
scripts handle all the mundane system/feature detection.
http://www.gnu.org/software/autoconf/
config BR2_PACKAGE_AUTOMAKE
bool "automake"
help
- Tool for automatically generating Makefile's for input to
+ Tool for automatically generating Makefile's for input to
configure scripts (made by autoconf).
http://www.gnu.org/software/automake/
config BR2_PACKAGE_BERKELEYDB
bool "berkeleydb"
help
- The Berkeley database. A very common library for database
+ The Berkeley database. A very common library for database
applications.
http://www.sleepycat.com/products/db.shtml
* a Domain Name System server (named)
* a Domain Name System resolver library
- * tools for verifying the proper operation of the DNS server
+ * tools for verifying the proper operation of the DNS server
The BIND DNS Server is used on the vast majority of name
serving machines on the Internet, providing a robust and
architecture can be built. The resolver library included in
the BIND distribution provides the standard APIs for
translation between domain names and Internet addresses and is
- intended to be linked with applications requiring name service.
+ intended to be linked with applications requiring name service.
http://www.isc.org/sw/bind/
config BR2_PACKAGE_BISON
bool "bison"
help
- General-purpose parser generator that converts a
- grammar description for an LALR context-free grammar into a C
+ General-purpose parser generator that converts a
+ grammar description for an LALR context-free grammar into a C
program to parse that grammar.
http://www.gnu.org/software/bison/
BLACKBOX_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) --prefix=/usr \
--sysconfdir=/etc --x-includes=$(STAGING_DIR)/usr/include/X11 \
- --x-libraries=$(STAGING_DIR)/usr/lib
+ --x-libraries=$(STAGING_DIR)/usr/lib
BLACKBOX_DEPENDENCIES = uclibc $(XSERVER)
config BR2_PACKAGE_BOA
bool "boa"
help
- A very small and very fast http daemon. Not intended as
+ A very small and very fast http daemon. Not intended as
a feature-packed server.
http://www.boa.org/
config BR2_PACKAGE_BOOTUTILS
bool "bootutils"
help
- BootUtils is a collection of utilities to facilitate booting of
- Linux 2.6-based systems. The process of finding the root volume
- either by label or explicit label= on the kernel command line,
+ BootUtils is a collection of utilities to facilitate booting of
+ Linux 2.6-based systems. The process of finding the root volume
+ either by label or explicit label= on the kernel command line,
mounting it, and 'switchroot'ing is automated.
http://bootutils.pr.linuxrulz.org/
config BR2_PACKAGE_BZIP2
bool "bzip2"
help
- Freely available, patent free, high-quality data compressor.
- It typically compresses files to within 10% to 15% of the best
- available techniques, while being around twice as fast at
+ Freely available, patent free, high-quality data compressor.
+ It typically compresses files to within 10% to 15% of the best
+ available techniques, while being around twice as fast at
compression and six times faster at decompression.
http://sources.redhat.com/bzip2/
CAIRO_AUTORECONF = NO
CAIRO_INSTALL_STAGING = YES
CAIRO_INSTALL_TARGET = YES
-CAIRO_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
+CAIRO_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
CAIRO_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
glib_cv_uscore=no ac_cv_func_strtod=yes \
gl_cv_func_mkdir_trailing_slash_bug=no gl_cv_func_mkstemp_limitations=no \
ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
ac_use_included_regex=no gl_cv_c_restrict=no \
- ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal
+ ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal
ifeq ($(BR2_PACKAGE_DIRECTFB),y)
CAIRO_CONF_OPT = --disable-xlib --without-x --enable-directfb
CAIRO_DEPENDENCIES_EXTRA = directfb
endif
-CAIRO_DEPENDENCIES = uclibc gettext libintl pkgconfig libglib2 zlib png fontconfig $(CAIRO_DEPENDENCIES_EXTRA) $(XSERVER)
+CAIRO_DEPENDENCIES = uclibc gettext libintl pkgconfig libglib2 zlib png fontconfig $(CAIRO_DEPENDENCIES_EXTRA) $(XSERVER)
$(eval $(call AUTOTARGETS,package,cairo))
depends on BR2_USE_WCHAR
select BR2_UCLIBC_PROGRAM_INVOCATION
help
- All of the basic file/text/shell utilities. These are the
- core utilities which are expected to exist on every system.
+ All of the basic file/text/shell utilities. These are the
+ core utilities which are expected to exist on every system.
Busybox implements many of the most common.
Things like:
config BR2_PACKAGE_DISTCC
bool "distcc"
help
- Distributed compiler client and server. Allows you to
- distribute compilation of C code across several machines
+ Distributed compiler client and server. Allows you to
+ distribute compilation of C code across several machines
on a network.
http://distcc.samba.org/
config BR2_PACKAGE_DNSMASQ
bool "dnsmasq"
help
- A lightweight DNS and DHCP server. It is intended to provide
+ A lightweight DNS and DHCP server. It is intended to provide
coupled DNS and DHCP service to a LAN.
http://www.thekelleys.org.uk/dnsmasq/
DOCKER_INSTALL_TARGET_OPT = PREFIX=$(TARGET_DIR)/usr install
-DOCKER_DEPENDENCIES = uclibc
+DOCKER_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,docker))
config BR2_PACKAGE_ED
bool "ed"
help
- A line-oriented text editor. Used to create, display, modify,
- and otherwise manipulate text files. Often used in scripts
+ A line-oriented text editor. Used to create, display, modify,
+ and otherwise manipulate text files. Often used in scripts
rather than invoked directly.
http://www.gnu.org/software/ed/
bool "nano"
select BR2_PACKAGE_NCURSES
help
- A nice ncurses-based editor. Started out as a clone of pico.
+ A nice ncurses-based editor. Started out as a clone of pico.
Great editor for new users.
http://www.nano-editor.org/
SPEECH_TOOLS_INSTALL_TARGET = YES
SPEECH_TOOLS_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) STRIP=$(TARGET_STRIP) install
-SPEECH_TOOLS_CONF_OPT =
+SPEECH_TOOLS_CONF_OPT =
SPEECH_TOOLS_MAKE_OPT = CC=$(TARGET_CC) CXX=$(TARGET_CXX)
SPEECH_TOOLS_DEPENDENCIES = uclibc ncurses
config BR2_PACKAGE_FILE
bool "file"
help
- Program to identify a file's format by scanning binary data
+ Program to identify a file's format by scanning binary data
for known patterns.
ftp://ftp.astron.com/pub/file/
bool "findutils"
depends on BR2_USE_WCHAR
help
- Basic directory searching utilities. Provides the
+ Basic directory searching utilities. Provides the
common 'find', 'xargs', 'locate', and 'updatedb' binaries.
http://www.gnu.org/software/findutils/findutils.html
config BR2_PACKAGE_FLEX
bool "flex"
help
- A fast lexical analyser generator. A tool for generating
+ A fast lexical analyser generator. A tool for generating
programs that perform pattern-matching on text.
http://www.gnu.org/software/flex/
--build=$(GNU_HOST_NAME) --prefix=/usr \
--sysconfdir=/etc --enable-shared --enable-threads --with-x
-FLTK_DEPENDENCIES = uclibc $(XSERVER)
+FLTK_DEPENDENCIES = uclibc $(XSERVER)
$(eval $(call AUTOTARGETS,package,fltk))
\ No newline at end of file
bool "gawk"
depends on BR2_USE_WCHAR
help
- A special-purpose programming language which is data driven
- rather than procedural. Allows for simple data-reformatting jobs
+ A special-purpose programming language which is data driven
+ rather than procedural. Allows for simple data-reformatting jobs
with just a few lines of code.
http://www.gnu.org/software/gawk/
GNUCHESS_CONF_ENV = ac_cv_func_realloc_0_nonnull=yes ac_cv_func_malloc_0_nonnull=yes
-GNUCHESS_DEPENDENCIES = uclibc
+GNUCHESS_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,gnuchess))
config BR2_PACKAGE_GZIP
bool "gzip"
help
- Standard GNU compressor. Provides things like gzip,
+ Standard GNU compressor. Provides things like gzip,
gunzip, gzcat, etc...
http://www.gnu.org/software/gzip/gzip.html
depends on BR2_DEPRECATED
select BR2_PACKAGE_PCMCIA
help
- Linux driver for wireless LAN cards based on Intersil's
+ Linux driver for wireless LAN cards based on Intersil's
Prism2/2.5/3 chipset.
http://hostap.epitest.fi/
touch $(ICU_HOST_DIR)/.done
$(ICU_DIR)/.done: $(ICU_HOST_DIR)/.done
- $(MAKE) -C $(ICU_DIR)
+ $(MAKE) -C $(ICU_DIR)
$(MAKE) -C $(ICU_DIR) install DESTDIR=$(STAGING_DIR)
$(MAKE) -C $(ICU_DIR) install DESTDIR=$(TARGET_DIR)
$(SED) "s,^default_prefix=.*,default_prefix=\'$(STAGING_DIR)/usr\',g" $(STAGING_DIR)/usr/bin/icu-config
IPKG_INSTALL_TARGET = YES
IPKG_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
- --build=$(GNU_HOST_NAME) --prefix=/usr --sysconfdir=/etc
+ --build=$(GNU_HOST_NAME) --prefix=/usr --sysconfdir=/etc
-IPKG_DEPENDENCIES = uclibc
+IPKG_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,ipkg))
\ No newline at end of file
config BR2_PACKAGE_IPROUTE2
bool "iproute2"
help
- Kernel routing and traffic control utilities. Provides things
+ Kernel routing and traffic control utilities. Provides things
like ip and tc.
http://developer.osdl.org/dev/iproute2/
depends on BR2_PACKAGE_IPSEC_TOOLS
bool "Enable NAT-Traversal"
help
- This needs kernel support, which is available on Linux. On
- NetBSD, NAT-Traversal kernel support has not been integrated
- yet, you can get it from here:
+ This needs kernel support, which is available on Linux. On
+ NetBSD, NAT-Traversal kernel support has not been integrated
+ yet, you can get it from here:
- http://ipsec-tools.sourceforge.net/netbsd_nat-t.diff If you
+ http://ipsec-tools.sourceforge.net/netbsd_nat-t.diff If you
- live in a country where software patents are legal, using
+ live in a country where software patents are legal, using
NAT-Traversal might infringe a patent.
config IRDA_SMCINIT
bool "support toshiba-laptops"
help
- Some Toshiba Laptops have buggy BIOSes which didn't initialize
+ Some Toshiba Laptops have buggy BIOSes which didn't initialize
Irda. This may help those.
endif
CLASSPATH_AUTORECONF = NO
CLASSPATH_INSTALL_STAGING = YES
CLASSPATH_INSTALL_TARGET = YES
-CLASSPATH_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
+CLASSPATH_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
CLASSPATH_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
CLASSPATH_DIR_PREFIX = package/java
ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
ac_use_included_regex=no gl_cv_c_restrict=no \
ac_cv_path_GLIB_GENMARSHAL=/usr/bin/glib-genmarshal \
- ac_cv_prog_F77=no ac_cv_prog_CXX=no ac_cv_path_CUPS_CONFIG=no
+ ac_cv_prog_F77=no ac_cv_prog_CXX=no ac_cv_path_CUPS_CONFIG=no
CLASSPATH_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
CLASSPATH_DEPENDENCIES+= alsa-lib
CLASSPATH_CONF_OPT+= --enable-alsa
-else
+else
CLASSPATH_CONF_OPT+= --disable-alsa
endif
ifeq ($(BR2_PACKAGE_QTOPIA4),y)
CLASSPATH_DEPENDENCIES+= qtopia4
CLASSPATH_CONF_OPT+= --enable-qt-peer
-else
+else
CLASSPATH_CONF_OPT+= --disable-qt-peer
endif
ifeq ($(BR2_PACKAGE_LIBGTK2),y)
CLASSPATH_DEPENDENCIES+= libgtk2
CLASSPATH_CONF_OPT+= --enable-gtk-peer
-else
+else
CLASSPATH_CONF_OPT+= --disable-gtk-peer
endif
--x-includes=$(STAGING_DIR)/usr/include/X11 \
--x-libraries=$(STAGING_DIR)/usr/lib
else
- CLASSPATH_CONF_OPT+= --without-x
+ CLASSPATH_CONF_OPT+= --without-x
endif
cp -dpf package/concierge/files/init.xargs $(TARGET_DIR)/usr/lib/concierge/
touch -c $@
-$(TARGET_DIR)/usr/bin/concierge:
+$(TARGET_DIR)/usr/bin/concierge:
cp -dpf package/concierge/files/concierge $(TARGET_DIR)/usr/bin/
chmod +x $(TARGET_DIR)/usr/bin/concierge
touch -c $@
depends on BR2_PACKAGE_CLASSPATH
select BR2_PACKAGE_PKGCONFIG
help
- JamVM is a new Java Virtual Machine which conforms to
- the JVM specification version 2 (blue book).
+ JamVM is a new Java Virtual Machine which conforms to
+ the JVM specification version 2 (blue book).
http://jamvm.sourceforge.net/
ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
ac_use_included_regex=no gl_cv_c_restrict=no \
ac_cv_path_GLIB_GENMARSHAL=/usr/bin/glib-genmarshal \
- ac_cv_prog_F77=no ac_cv_prog_CXX=no ac_cv_path_CUPS_CONFIG=no
+ ac_cv_prog_F77=no ac_cv_prog_CXX=no ac_cv_path_CUPS_CONFIG=no
JAMVM_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) --prefix=/usr \
config BR2_PACKAGE_KISMET
bool "kismet"
- select BR2_PACKAGE_NCURSES
+ select BR2_PACKAGE_NCURSES
select BR2_PACKAGE_LIBPCAP
select BR2_PACKAGE_DBUS
select BR2_PACKAGE_DBUS_GLIB
Kismet identifies networks by passively collecting packets and detecting standard named
networks, detecting (and given time, decloaking) hidden networks, and infering the presence
- of nonbeaconing networks via data traffic.
+ of nonbeaconing networks via data traffic.
config BR2_PACKAGE_LIBCGI
bool "libcgi"
help
- LibCGI is a library written from scratch to easily make
+ LibCGI is a library written from scratch to easily make
CGI applications in C.
- There are a lot of functions like string manipulation,
- session and cookie support, GET and POST methods manipulation
+ There are a lot of functions like string manipulation,
+ session and cookie support, GET and POST methods manipulation
etc..., to help you to quickly write powerful CGI programs.
http://libcgi.sourceforge.net/
bool "libdaemon"
select BR2_PACKAGE_PKGCONFIG
help
- libdaemon is a lightweight C library that eases the
+ libdaemon is a lightweight C library that eases the
writing of UNIX daemons.
http://0pointer.de/lennart/projects/libdaemon/
GNU Higher level SIP (Session Initiation Protocol)
This library aims to provide multimedia and telecom software
developers an easy and powerful interface to initiate and
- control SIP based sessions in their applications.
+ control SIP based sessions in their applications.
SIP is a open standard replacement from IETF for H323.
http://www.gnu.org/software/osip/
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(LIBEXOSIP2_DIR)
touch $@
-#LDFLAGS=$(TARGET_LDFLAGS)
+#LDFLAGS=$(TARGET_LDFLAGS)
$(STAGING_DIR)/usr/lib/libeXosip2.so: $(LIBEXOSIP2_DIR)/.compiled
cp -dpf $(LIBEXOSIP2_DIR)/src/.libs/libeXosip2.so* $(STAGING_DIR)/usr/lib
bool "libfloat"
help
Soft floating point library.
-
+
http://netwinder.osuosl.org/devteam/scottb/libfloat/
bool "libgcrypt"
select BR2_PACKAGE_LIBGPG_ERROR
help
- LibGCrypt is GNU's basic cryptographic library.
+ LibGCrypt is GNU's basic cryptographic library.
ftp://gd.tuwien.ac.at/privacy/gnupg/libgcrypt/
LIBGLIB2_AUTORECONF = NO
LIBGLIB2_INSTALL_STAGING = YES
LIBGLIB2_INSTALL_TARGET = YES
-LIBGLIB2_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) LDFLAGS=-L$(STAGING_DIR)/usr/lib install
+LIBGLIB2_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) LDFLAGS=-L$(STAGING_DIR)/usr/lib install
LIBGLIB2_CONF_ENV = $(TARGET_CONFIGURE_OPTS) $(TARGET_CONFIGURE_ARGS) \
ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
ac_use_included_regex=no gl_cv_c_restrict=no \
ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal ac_cv_prog_F77=no \
- ac_cv_prog_CXX=no ac_cv_func_posix_getgrgid_r=no
+ ac_cv_prog_CXX=no ac_cv_func_posix_getgrgid_r=no
LIBGLIB2_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) --prefix=/usr \
--datadir=/usr/share --localstatedir=/var \
--includedir=/usr/include --mandir=/usr/man \
--infodir=/usr/info --enable-shared \
- --enable-static $(DISABLE_NLS)
+ --enable-static $(DISABLE_NLS)
-LIBGLIB2_DEPENDENCIES = uclibc gettext libintl pkgconfig
+LIBGLIB2_DEPENDENCIES = uclibc gettext libintl pkgconfig
$(eval $(call AUTOTARGETS,package,libglib2))
LIBGTK2_AUTORECONF = NO
LIBGTK2_INSTALL_STAGING = YES
LIBGTK2_INSTALL_TARGET = YES
-LIBGTK2_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
-LIBGTK2_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
+LIBGTK2_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
+LIBGTK2_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
LIBGTK2_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
glib_cv_uscore=no \
ac_cv_path_GDK_PIXBUF_CSOURCE=$(HOST_GLIB)/bin/gdk-pixbuf-csource \
ac_cv_prog_F77=no \
ac_cv_prog_CXX=no \
- ac_cv_path_CUPS_CONFIG=no
+ ac_cv_path_CUPS_CONFIG=no
LIBGTK2_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
--build=$(GNU_HOST_NAME) \
--x-includes=$(STAGING_DIR)/usr/include/X11 \
--x-libraries=$(STAGING_DIR)/usr/lib \
--with-gdktarget=x11
- LIBGTK2_DEPENDENCIES_EXTRA = xlib_libXcomposite $(XSERVER)
+ LIBGTK2_DEPENDENCIES_EXTRA = xlib_libXcomposite $(XSERVER)
else
LIBGTK2_CONF_OPT += --without-x
endif
LIBICONV_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
-LIBICONV_DEPENDENCIES = uclibc
+LIBICONV_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,libiconv))
GNU SIP (Session Initiation Protocol)
This library aims to provide multimedia and telecom software
developers an easy and powerful interface to initiate and
- control SIP based sessions in their applications.
+ control SIP based sessions in their applications.
SIP is a open standard replacement from IETF for H323.
config BR2_PACKAGE_LIBSNDFILE
bool "libsndfile"
help
- Libsndfile is a C library for reading and writing files containing
- sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format)
+ Libsndfile is a C library for reading and writing files containing
+ sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format)
through one standard library interface.
config BR2_PACKAGE_LIBTOOL
bool "libtool"
help
- Library that hides the complexity of using shared/static libraries
+ Library that hides the complexity of using shared/static libraries
on different platforms behind a consistent, portable interface.
http://www.gnu.org/software/libtool/
Auth, Output-Compression, URL-Rewriting and many more) make
lighttpd the perfect webserver-software for every server that
is suffering load problems.
-
+
http://www.lighttpd.net/
if BR2_PACKAGE_LIGHTTPD
LIGHTTPD_INSTALL_STAGING = NO
LIGHTTPD_INSTALL_TARGET = YES
LIGHTTPD_DEPENDENCIES = uclibc
-LIGHTTPD_CONF_ENV =
+LIGHTTPD_CONF_ENV =
LIGHTTPD_CONF_OPT = \
--target=$(GNU_TARGET_NAME) \
--host=$(GNU_TARGET_NAME) \
bool "lsof"
help
lsof (LiSt Open Files)
- The lsof tool lists information about files opened by
+ The lsof tool lists information about files opened by
processes.
ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/
$(LXDOOM_WAD_DIR)/.unpacked: $(DL_DIR)/$(LXDOOM_WAD_SOURCE)
mkdir -p $(LXDOOM_WAD_DIR)
cp -f $(DL_DIR)/$(LXDOOM_WAD_SOURCE) $(LXDOOM_WAD_DIR)
- gunzip -d $(LXDOOM_WAD_DIR)/$(LXDOOM_WAD_SOURCE)
+ gunzip -d $(LXDOOM_WAD_DIR)/$(LXDOOM_WAD_SOURCE)
touch $@
$(LXDOOM_WAD_DIR)/.installed: $(LXDOOM_WAD_DIR)/.unpacked
--includedir=/usr/include --enable-shared \
$(DISABLE_NLS)
-LXDOOM_DEPENDENCIES = uclibc
+LXDOOM_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,lxdoom))
\ No newline at end of file
MAGICCUBE4D_INSTALL_TARGET = YES
MAGICCUBE4D_INSTALL_TARGET_OPT = GAMESDIR=$(TARGET_DIR)/usr/games install
-MAGICCUBE4D_DEPENDENCIES = uclibc
+MAGICCUBE4D_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,magiccube4d))
config BR2_PACKAGE_MAKE
bool "make"
help
- A tool which controls the generation of executables and other
+ A tool which controls the generation of executables and other
non-source files of a program from the program's source files.
http://www.gnu.org/software/make/
help
List of microperl modules to copy to the rootfs.
E.g.
- warnings.pm warnings/register.pm strict.pm constant.pm vars.pm
+ warnings.pm warnings/register.pm strict.pm constant.pm vars.pm
Exporter.pm Exporter/Heavy.pm Carp.pm Getopt/Long.pm
help
Microwindows Graphical User Interface for small and
embedded enviroments.
-
+
http://microwindows.censoft.com/
config BR2_PACKAGE_MODULE_INIT_TOOLS
bool "module-init-tools"
help
- The module-init-tools package contains a set of programs for
- loading, inserting, and removing kernel modules for Linux
- (versions 2.5.48 and above). It serves the same function that
+ The module-init-tools package contains a set of programs for
+ loading, inserting, and removing kernel modules for Linux
+ (versions 2.5.48 and above). It serves the same function that
the "modutils" package serves for Linux 2.4.
http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/
bool "modutils"
depends on !BR2_PACKAGE_MODULE_INIT_TOOLS
help
- The modutils packages includes the kerneld program for automatic
- loading and unloading of modules, as well as other module
- management programs. Examples of loaded and unloaded modules are
+ The modutils packages includes the kerneld program for automatic
+ loading and unloading of modules, as well as other module
+ management programs. Examples of loaded and unloaded modules are
device drivers and filesystems, as well as some other things.
linux v.<2.6
config BR2_PACKAGE_NCURSES
bool "ncurses"
help
- The Ncurses (new curses) library is a free software emulation of
+ The Ncurses (new curses) library is a free software emulation of
curses in System V Release 4.0, and more.
http://www.gnu.org/software/ncurses/
depends on BR2_PACKAGE_NCURSES
help
Includes ncurses dynamic libpanel in target
-
+
config BR2_PACKAGE_NCURSES_TARGET_FORM
bool "ncurses libform in target"
depends on BR2_PACKAGE_NCURSES
help
Includes ncurses dynamic libform in target
-
+
config BR2_PACKAGE_NCURSES_TARGET_MENU
bool "ncurses libmenu in target"
depends on BR2_PACKAGE_NCURSES
bool "libxml2"
depends on BR2_PACKAGE_LIBXML2
help
- libxml2 use libxml2, a library to read, modify and
+ libxml2 use libxml2, a library to read, modify and
write XML and HTML files.
config BR2_PACKAGE_NEON_NOXML
Netcat is a featured networking utility which reads and writes data
across network connections, using the TCP/IP protocol.
It is designed to be a reliable "back-end" tool that can be used
- directly or easily driven by other programs and scripts. At the
- same time, it is a feature-rich network debugging and exploration
- tool, since it can create almost any kind of connection you would
+ directly or easily driven by other programs and scripts. At the
+ same time, it is a feature-rich network debugging and exploration
+ tool, since it can create almost any kind of connection you would
need and has several interesting built-in capabilities.
http://netcat.sourceforge.net/download.php
bool "netsnmp"
select BR2_PACKAGE_OPENSSL
help
- Suite of applications used to implement SNMP v1, SNMP v2c, and
+ Suite of applications used to implement SNMP v1, SNMP v2c, and
SNMP v3 using both IPv4 and IPv6.
http://net-snmp.sourceforge.net/
NG_SPICE_REWORK_CONF_OPT = CFLAGS="-I$(STAGING_DIR)/usr/include"
-NG-SPICE-REWORK_DEPENDENCIES = uclibc
+NG-SPICE-REWORK_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,ng-spice-rework))
ac_cv_path_LDCONFIG=""\
);
touch $@
-
+
$(NTFS-3G_DIR)/.compiled: $(NTFS-3G_DIR)/.configured
$(MAKE) prefix=$/usr CC=$(TARGET_CC)-C $(NTFS-3G_DIR)
touch $@
# CROSS_COMPILE="$(TARGET_CROSS)"
-
+
$(STAGING_DIR)/usr/bin/ntfs-3g: $(NTFS-3G_DIR)/.compiled
$(MAKE) prefix=$/usr -C $(NTFS-3G_DIR) DESTDIR=$(STAGING_DIR)/ install
touch -c $@
bool "OLSR mesh networking Daemon"
help
olsr
-
+
The Optimized Link State Routing protocol (OLSR) is a routing protocol that is optimised
for mobile ad-hoc networks, sometimes called wireless mesh networks. It is a proactive
link-state routing protocol that floods a full topology table to all nodes in the network
touch $(OPENMOTIF_DIR)/.configured
$(OPENMOTIF_HOST_DIR)/.done: $(OPENMOTIF_DIR)/.configured
- $(MAKE) -C $(OPENMOTIF_HOST_DIR)
+ $(MAKE) -C $(OPENMOTIF_HOST_DIR)
ln -s -f $(OPENMOTIF_HOST_DIR)/config/util/makestrs $(OPENMOTIF_DIR)/config/util/makestrs-host
ln -s -f $(OPENMOTIF_HOST_DIR)/tools/wml/wmluiltok $(OPENMOTIF_DIR)/tools/wml/wmluiltok-host
ln -s -f $(OPENMOTIF_HOST_DIR)/tools/wml/wml $(OPENMOTIF_DIR)/tools/wml/wml-host
touch $(OPENMOTIF_HOST_DIR)/.done
$(OPENMOTIF_DIR)/.done: $(OPENMOTIF_HOST_DIR)/.done
- $(MAKE) -C $(OPENMOTIF_DIR)
+ $(MAKE) -C $(OPENMOTIF_DIR)
$(MAKE) -C $(OPENMOTIF_DIR) install DESTDIR=$(STAGING_DIR)
$(MAKE) -C $(OPENMOTIF_DIR) install DESTDIR=$(TARGET_DIR)
touch $(OPENMOTIF_DIR)/.done
select BR2_PACKAGE_OPENSSL
select BR2_PACKAGE_ZLIB
help
- A free version of the SSH protocol suite of network connectivity
+ A free version of the SSH protocol suite of network connectivity
tools. The standard 'ssh', 'sshd', 'scp', and friends.
http://www.openssh.com/
config BR2_PACKAGE_OPENSSL
bool "openssl"
help
- A collaborative effort to develop a robust, commercial-grade, fully
- featured, and Open Source toolkit implementing the Secure Sockets
- Layer (SSL v2/v3) and Transport Security (TLS v1) as well as a
+ A collaborative effort to develop a robust, commercial-grade, fully
+ featured, and Open Source toolkit implementing the Secure Sockets
+ Layer (SSL v2/v3) and Transport Security (TLS v1) as well as a
full-strength general-purpose cryptography library.
http://www.openssl.org/
select BR2_PACKAGE_LZO
select BR2_PACKAGE_OPENSSL
help
- OpenVPN is a full-featured SSL VPN solution which can
- accomodate a wide range of configurations, including road
- warrior access, home/office/campus telecommuting, WiFi
- security, secure branch office linking, and enterprise-scale
- remote access solutions with load balancing, failover, and
+ OpenVPN is a full-featured SSL VPN solution which can
+ accomodate a wide range of configurations, including road
+ warrior access, home/office/campus telecommuting, WiFi
+ security, secure branch office linking, and enterprise-scale
+ remote access solutions with load balancing, failover, and
fine-grained access-controls.
http://openvpn.sourceforge.net/
statistics, which can also be used for basic time-spent
profiling. All code is profiled: hardware and software
interrupt handlers, kernel modules, the kernel, shared
- libraries, and applications.
+ libraries, and applications.
PANGO_AUTORECONF = YES
PANGO_INSTALL_STAGING = YES
PANGO_INSTALL_TARGET = YES
-PANGO_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
+PANGO_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
PANGO_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
PANGO_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
gl_cv_func_mkdir_trailing_slash_bug=no gl_cv_func_mkstemp_limitations=no \
ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
ac_use_included_regex=no gl_cv_c_restrict=no PKG_CONFIG_SYSROOT="$(STAGING_DIR)" \
- ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal ac_cv_path_FREETYPE_CONFIG=$(STAGING_DIR)/usr/bin/freetype-config
+ ac_cv_path_GLIB_GENMARSHAL=$(HOST_GLIB)/bin/glib-genmarshal ac_cv_path_FREETYPE_CONFIG=$(STAGING_DIR)/usr/bin/freetype-config
ifneq ($(BR2_PACKAGE_XSERVER_none),y)
PANGO_CONF_OPT_X = --with-x \
--x-includes=$(STAGING_DIR)/usr/include/X11 \
--x-libraries=$(STAGING_DIR)/usr/lib --disable-glibtest
else
- PANGO_CONF_OPT_X = --without-x
+ PANGO_CONF_OPT_X = --without-x
endif
PANGO_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
--enable-explicit-deps=no --disable-debug PKG_CONFIG_PATH="$(STAGING_DIR)/usr/lib/pkgconfig"
-PANGO_DEPENDENCIES = uclibc gettext libintl pkgconfig libglib2 $(XSERVER) cairo
+PANGO_DEPENDENCIES = uclibc gettext libintl pkgconfig libglib2 $(XSERVER) cairo
$(eval $(call AUTOTARGETS,package,pango))
config BR2_PACKAGE_PATCH
bool "patch"
help
- Take patch files (containing difference listings) and apply them
+ Take patch files (containing difference listings) and apply them
to original files, producing patched versions.
http://www.gnu.org/software/patch/
depends on BR2_PACKAGE_PHP
default y
help
- command line interface for php.
+ command line interface for php.
you must have at least cli or cgi selected.
config BR2_PACKAGE_PHP_CGI
PHP_CONFIGURE+=--disable-ipv6
endif
-### Extensions
+### Extensions
ifeq ($(BR2_PACKAGE_PHP_EXT_SOCKETS),y)
PHP_CONFIGURE+=--enable-sockets
endif
POPT_INSTALL_STAGING = YES
-POPT_CONF_ENV = ac_cv_va_copy=yes
+POPT_CONF_ENV = ac_cv_va_copy=yes
POPT_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(REAL_GNU_TARGET_NAME) \
depends on BR2_PACKAGE_PYTHON
bool "readline"
help
- readline module for Python (required for command-line
+ readline module for Python (required for command-line
editing in the Python shell).
config BR2_PACKAGE_PYTHON_SSL
bool "Compatibility with Qt3"
depends on BR2_PACKAGE_QTOPIA4
help
- Turns on support for older Qt3. This will create an additional
+ Turns on support for older Qt3. This will create an additional
library with proxy code and increase the space required on target.
If unsure say n.
help
Use the shared zlib from the system.
endchoice
-
+
choice
prompt "freetype2 support"
depends on BR2_PACKAGE_QTOPIA4
RUBIX_INSTALL_TARGET = YES
RUBIX_INSTALL_TARGET_OPT = GAMESDIR=$(TARGET_DIR)/usr/games install
-RUBIX_MAKE_OPT = CC=$(TARGET_CC) XINC="-I$(STAGING_DIR)/usr/include/X11" XLIB="-L$(STAGING_DIR)/usr/lib -lX11"
+RUBIX_MAKE_OPT = CC=$(TARGET_CC) XINC="-I$(STAGING_DIR)/usr/include/X11" XLIB="-L$(STAGING_DIR)/usr/lib -lX11"
-RUBIX_DEPENDENCIES = uclibc
+RUBIX_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,rubix))
bool "screen"
select BR2_PACKAGE_NCURSES
help
- Screen is a full-screen window manager that multiplexes a physical
- terminal between several processes, typically interactive shells.
- Each virtual terminal provides the functions of the DEC VT100
- terminal and, in addition, several control functions from the ANSI
- X3.64 (ISO 6429) and ISO 2022 standards (e.g., insert/delete line
+ Screen is a full-screen window manager that multiplexes a physical
+ terminal between several processes, typically interactive shells.
+ Each virtual terminal provides the functions of the DEC VT100
+ terminal and, in addition, several control functions from the ANSI
+ X3.64 (ISO 6429) and ISO 2022 standards (e.g., insert/delete line
and support for multiple character sets).
http://www.gnu.org/software/screen/
default y
depends on BR2_PACKAGE_SPEEX && BR2_arm
help
- Use the additional instructions available in the ARM5E
+ Use the additional instructions available in the ARM5E
or later cores.
STARTUP_NOTIFICATION_CONF_ENV = lf_cv_sane_realloc=yes
-STARTUP_NOTIFICATION_DEPENDENCIES = uclibc
+STARTUP_NOTIFICATION_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,startup-notification))
bool "strace"
help
A useful diagnostic, instructional, and debugging tool.
- Allows you to track what system calls a program makes
+ Allows you to track what system calls a program makes
while it is running.
http://sourceforge.net/projects/strace/
bool "synergy"
depends on BR2_PACKAGE_XORG7
help
- Synergy lets you easily share a single mouse and
- keyboard between multiple computers with different
- operating systems, each with its own display,
+ Synergy lets you easily share a single mouse and
+ keyboard between multiple computers with different
+ operating systems, each with its own display,
without special hardware.
http://synergy2.sourceforge.net/
SYNERGY_INSTALL_TARGET = YES
SYNERGY_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
- --build=$(GNU_HOST_NAME) --prefix=/usr --sysconfdir=/etc
+ --build=$(GNU_HOST_NAME) --prefix=/usr --sysconfdir=/etc
SYNERGY_DEPENDENCIES = uclibc $(XSERVER)
depends on BR2_USE_WCHAR
select BR2_UCLIBC_PROGRAM_INVOCATION
help
- A program that saves many files together into a single tape or disk
+ A program that saves many files together into a single tape or disk
archive, and can restore individual files from the archive.
http://www.gnu.org/software/tar/
help
A relatively simple webserver written as a school project. It is
exceedingly simple, threaded and handles basic CGI scripts.
-
+
http://sourceforge.net/projects/tinyhttpd/
$(TINYHTTPD_DIR)/$(TINYHTTPD_BINARY): $(TINYHTTPD_DIR)/.unpacked
$(TARGET_CONFIGURE_OPTS) CFLAGS="$(TARGET_CFLAGS)" LDFLAGS="$(TARGET_LDFLAGS)" $(MAKE) -C $(TINYHTTPD_DIR)
-
+
$(TARGET_DIR)/$(TINYHTTPD_TARGET_BINARY): $(TINYHTTPD_DIR)/$(TINYHTTPD_BINARY)
$(INSTALL) -m 0755 $(TINYHTTPD_DIR)/$(TINYHTTPD_BINARY) $(TARGET_DIR)/$(TINYHTTPD_TARGET_BINARY)
$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/$(TINYHTTPD_TARGET_BINARY)
config BR2_PACKAGE_TINYLOGIN
bool "tinylogin"
help
- Suite of tiny Unix utilities for handling logging into,
- being authenticated by, changing one's password for, and
+ Suite of tiny Unix utilities for handling logging into,
+ being authenticated by, changing one's password for, and
otherwise maintaining users and groups on an embedded system.
http://tinylogin.busybox.net/
TORSMO_CONF_OPT = --x-includes="-I$(STAGING_DIR)/usr/include/X11" --x-libraries="-I$(STAGING_DIR)/usr/lib" --with-x
-TORSMO_DEPENDENCIES = uclibc
+TORSMO_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,torsmo))
config BR2_PACKAGE_UDHCP
bool "udhcp"
help
- An embedded dhcp server/client package that strives to be
+ An embedded dhcp server/client package that strives to be
fully functional, RFC compliant, and really tiny.
http://udhcp.busybox.net/
VICE_CONF_OPT = --without-resid --with-alsa CFLAGS="-O0"
-VICE_DEPENDENCIES = uclibc
+VICE_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,vice))
VLC_INSTALL_STAGING = NO
VLC_INSTALL_TARGET = YES
-VLC_CONF_OPT =
+VLC_CONF_OPT =
-VLC_DEPENDENCIES = uclibc
+VLC_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package,vlc))
select BR2_PACKAGE_LZO
select BR2_PACKAGE_OPENSSL
help
- Tool for easily creating Virtual Tunnels over TCP/IP networks
+ Tool for easily creating Virtual Tunnels over TCP/IP networks
with traffic shaping, compression, and encryption.
It supports IP, PPP, SLIP, Ethernet and other tunnel types.
bool "webkit"
select BR2_PACKAGE_LIBGTK2
select BR2_PACKAGE_ICU
- select BR2_PACKAGE_CURL
- select BR2_PACKAGE_LIBXML2
- select BR2_PACKAGE_LIBXSLT
+ select BR2_PACKAGE_CURL
+ select BR2_PACKAGE_LIBXML2
+ select BR2_PACKAGE_LIBXSLT
select BR2_PACKAGE_SQLITE
help
- WebKit is an open source, standards compliant web browser engine.
+ WebKit is an open source, standards compliant web browser engine.
http://webkit.org/
WEBKIT_INSTALL_STAGING = YES
WEBKIT_INSTALL_TARGET = YES
-WEBKIT_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
+WEBKIT_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
WEBKIT_AUTORECONF = YES
WEBKIT_DEPENDENCIES = icu curl libxml2 libxslt xserver_xorg-server libgtk2 sqlite
config BR2_PACKAGE_PTHREAD_STUBS
bool "pthread-stubs"
help
- This library provides weak aliases for pthread functions not
+ This library provides weak aliases for pthread functions not
provided in libc or otherwise available by default.
http://xcb.freedesktop.org/
XKEYBOARD_CONFIG_CONF_OPT = GMSGFMT=/usr/bin/msgfmt
-XKEYBOARD_CONFIG_DEPENDENCIES = uclibc
+XKEYBOARD_CONFIG_DEPENDENCIES = uclibc
$(eval $(call AUTOTARGETS,package/x11r7,xkeyboard-config))
XPDF_INSTALL_TARGET = YES
XPDF_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
-XPDF_CONF_OPT = --enable-multithreaded
+XPDF_CONF_OPT = --enable-multithreaded
ifeq ($(BR2_SOFT_FLOAT),y)
XPDF_CONF_OPT += --enable-fixedpoint
XPDF_CONF_OPT += --with-Xm-library=$(STAGING_DIR)/usr/lib --with-Xm-includes=$(STAGING_DIR)/usr/include/Xm \
--with-x --with-freetype2-includes=$(STAGING_DIR)/usr/include \
--with-freetype2-library=$(STAGING_DIR)/usr/lib CFLAGS="-I$(STAGING_DIR)/usr/include/freetype2" \
- CXXFLAGS="-I$(STAGING_DIR)/usr/include/freetype2"
+ CXXFLAGS="-I$(STAGING_DIR)/usr/include/freetype2"
endif
XPDF_DEPENDENCIES = uclibc freetype
config BR2_PACKAGE_ZLIB
bool "zlib"
help
- Standard (de)compression library. Used by things like
+ Standard (de)compression library. Used by things like
gzip and libpng.
http://www.gzip.org/zlib/
default BR2_mips_1 if BR2_mipsel
help
Specific CPU variant to use
-
+
64bit cabable: 3, 4, 64, 64r2
non-64bit capable: 1, 2, 32, 32r2
help
Copies the resulting image to a secondary location
like a tftp server's root directory.
-
+
Example: $(IMAGE)-$(DATE).cpio$(CPIO_ROOTFS_COMPRESSOR_EXT)
Issues with contents of this server needs to be highlighted
on the buildroot mailing list and
should not be addressed directly to Atmel
- Atmel provides support for their AVR32 chips on
+ Atmel provides support for their AVR32 chips on
http://avr32linux.org/ or http://www.avrfreaks.net/
Atmel provides support for AT91 chips on www.at91.com.
Commercial AT91 Linux support is through www.timesys.com
config BR2_LINUX_AVR32_AC97_PATCH
bool "Add AC97 patch"
help
- Add support for AC97.
+ Add support for AC97.
Will need to be patched further to change GPIO_PIN_NONE
to the real pin used as AC-97 reset pin.
if BR2_TARGET_SHARP
comment "Sharp Specific Device Support"
depends on BR2_arm
-
+
config BR2_TARGET_SHARP_LNODE80
bool "Board support for the LNode80 development board"
depends on BR2_arm
bool "initramfs for initial ramdisk of linux kernel"
help
Build a file which is usable for the gen_init_cpio tool
- at linux kernel build.
+ at linux kernel build.
This file is normally called initramfs_list and can be
generated with gen_initramfs_list.sh script from the root
- directory structure.
+ directory structure.
The file is then used in the kernel build process to generate
the cpio filesystem for the initial ramdisk. Make sure that
you configure this file in kernel build configuration.
if BR2_KERNEL_LINUX_ADVANCED
# --- "Linux kernel options"
# This file exports the following symbols for use by Makefile's
-#
+#
# BR2_PACKAGE_LINUX
-#
+#
# BR2_KERNEL_SITE
# BR2_DOWNLOAD_LINUX26_VERSION
# BR2_LINUX26_VERSION
-#
+#
# BR2_KERNEL_PATCH_SITE
# BR2_KERNEL_PATCH
-#
+#
# BR2_LINUX26_CUSTOM
# BR2_CUSTOM_LINUX26_PATCH_SITE
# BR2_CUSTOM_LINUX26_PATCH
-#
+#
# BR2_LINUX_BSP_PATCH
-#
+#
# BR2_PACKAGE_LINUX_USE_KCONFIG
# BR2_PACKAGE_LINUX_USE_DEFCONFIG
# BR2_PACKAGE_LINUX_USE_XCONFIG
# BR2_PACKAGE_LINUX_KCONFIG
-#
+#
# BR2_PACKAGE_LINUX_FORMAT
-#
+#
# BR2_LINUX_COPYTO_ROOTFS
# BR2_LINUX_COPYTO_TFTPBOOT
# BR2_LINUX_COPYTO
-#
+#
# ---------------------------------------------------------------------------
# --- These 'constants' requires regular maintenance, so put them first
config BR2_KERNEL_PATCH_LEVEL
config BR2_LINUX_BOARD_PATCH
bool "Add board specific patch"
- default y
+ default y
config BR2_LINUX_BSP_PATCH
string "Additional patch to apply (from \$(DL_DIR))"
INSTALL_MOD_PATH=$(TARGET_DIR) \
CROSS_COMPILE=$(KERNEL_CROSS) \
LDFLAGS="$(TARGET_LDFLAGS)" \
- LZMA="$(LZMA)"
+ LZMA="$(LZMA)"
$(LINUX26_KCONFIG):
@if [ ! -f "$(LINUX26_KCONFIG)" ] ; then \
INSTALL_MOD_PATH=$(TARGET_DIR) \
CROSS_COMPILE=$(KERNEL_CROSS) \
LDFLAGS="$(TARGET_LDFLAGS)" \
- LZMA="$(LZMA)"
+ LZMA="$(LZMA)"
# =============================================================================
# ifneq ($(strip $(LINUX26_VERSION)),$(strip $(LINUX_HEADERS_VERSION)))
$(LINUX26_DIR)/.config: $(LINUX26_DIR)/.patched.board
ifeq ($(BR2_PACKAGE_LINUX_USE_DEFCONFIG),y)
- $(MAKE) $(LINUX26_MAKE_FLAGS) -C $(LINUX26_DIR) $(BOARD_NAME)_defconfig
+ $(MAKE) $(LINUX26_MAKE_FLAGS) -C $(LINUX26_DIR) $(BOARD_NAME)_defconfig
endif
ifeq ($(BR2_PACKAGE_LINUX_USE_XCONFIG),y)
$(MAKE) $(LINUX26_MAKE_FLAGS) -C $(LINUX26_DIR) $(KERNEL_CONFIG_METHOD)
depends on BR2_TARGET_GRUB
help
Add support for splashimage.
-
+
A splashimage is a 14-color indexed .xpm picture which
is displayed as background for the grub menu.
depends on BR2_TARGET_GRUB2
help
Add support for splashimage.
-
+
A splashimage is a 14-color indexed .xpm picture which
is displayed as background for the grub menu.
config BR2_TOOLCHAIN_BUILDROOT
bool "Buildroot toolchain"
depends on !BR2_avr32
-
+
config BR2_TOOLCHAIN_EXTERNAL
bool "External binary toolchain"
bool "Enable 'program invocation name'"
help
Support for the GNU-specific program_invocation_name and
- program_invocation_short_name strings. Some GNU packages
+ program_invocation_short_name strings. Some GNU packages
(like tar and coreutils) utilize these for extra useful
output, but in general are not required.
endif
ifeq ($(BR2_x86_i586),y)
$(SED) 's,# CONFIG_586 is not set,CONFIG_586=y,g' $(UCLIBC_DIR)/.oldconfig
-endif
+endif
ifeq ($(BR2_x86_pentium_mmx),y)
$(SED) 's,# CONFIG_586MMX is not set,CONFIG_586MMX=y,g' $(UCLIBC_DIR)/.oldconfig
-endif
+endif
ifeq ($(BR2_x86_i686),y)
$(SED) 's,# CONFIG_686 is not set,CONFIG_686=y,g' $(UCLIBC_DIR)/.oldconfig
endif
ifeq ($(BR2_x86_pentiumpro),y)
$(SED) 's,# CONFIG_686 is not set,CONFIG_686=y,g' $(UCLIBC_DIR)/.oldconfig
-endif
+endif
ifeq ($(BR2_x86_pentium2),y)
$(SED) 's,# CONFIG_PENTIUMII is not set,CONFIG_PENTIUMII=y,g' $(UCLIBC_DIR)/.oldconfig
-endif
+endif
ifeq ($(BR2_x86_pentium3),y)
$(SED) 's,# CONFIG_PENTIUMIII is not set,CONFIG_PENTIUMIII=y,g' $(UCLIBC_DIR)/.oldconfig
-endif
+endif
ifeq ($(BR2_x86_pentium4),y)
$(SED) 's,# CONFIG_PENTIUM4 is not set,CONFIG_PENTIUM4=y,g' $(UCLIBC_DIR)/.oldconfig
-endif
+endif
ifeq ($(BR2_x86_pentium_m),y)
$(SED) 's,# CONFIG_PENTIUM4 is not set,CONFIG_PENTIUM4=y,g' $(UCLIBC_DIR)/.oldconfig
-endif
+endif
ifeq ($(BR2_x86_nocona),y)
$(SED) 's,# CONFIG_PENTIUM4 is not set,CONFIG_PENTIUM4=y,g' $(UCLIBC_DIR)/.oldconfig
-endif
+endif
ifeq ($(BR2_x86_core2),y)
$(SED) 's,# CONFIG_PENTIUM4 is not set,CONFIG_PENTIUM4=y,g' $(UCLIBC_DIR)/.oldconfig
-endif
+endif
endif
$(UCLIBC_DIR)/.config: $(UCLIBC_DIR)/.oldconfig
uclibc-dirclean:
rm -rf $(UCLIBC_DIR)
-uclibc-target-utils:
+uclibc-target-utils:
#$(TARGET_DIR)/usr/bin/ldd
uclibc-target-utils-source: $(DL_DIR)/$(UCLIBC_SOURCE)