mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-25 20:26:34 +00:00
buildroot: remove trailing spaces
for i in `find -name 'Config*' -o -name 'Makefile*' -o -name '*.mk'`; do sed -i 's/ \+$//' $i; done
This commit is contained in:
parent
fa0ac2de33
commit
02a623ddf9
66
Config.in
66
Config.in
@ -207,9 +207,9 @@ choice
|
|||||||
config BR2_DEBUG_1
|
config BR2_DEBUG_1
|
||||||
bool "debug level 1"
|
bool "debug level 1"
|
||||||
help
|
help
|
||||||
Debug level 1 produces minimal information, enough
|
Debug level 1 produces minimal information, enough
|
||||||
for making backtraces in parts of the program that
|
for making backtraces in parts of the program that
|
||||||
you don't plan to debug. This includes descriptions
|
you don't plan to debug. This includes descriptions
|
||||||
of functions and external variables, but no information
|
of functions and external variables, but no information
|
||||||
about local variables and no line numbers.
|
about local variables and no line numbers.
|
||||||
|
|
||||||
@ -221,7 +221,7 @@ config BR2_DEBUG_2
|
|||||||
config BR2_DEBUG_3
|
config BR2_DEBUG_3
|
||||||
bool "debug level 3"
|
bool "debug level 3"
|
||||||
help
|
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
|
macro definitions present in the program. Some debuggers
|
||||||
support macro expansion when you use -g3.
|
support macro expansion when you use -g3.
|
||||||
endchoice
|
endchoice
|
||||||
@ -266,41 +266,41 @@ config BR2_OPTIMIZE_0
|
|||||||
bool "optimization level 0"
|
bool "optimization level 0"
|
||||||
depends on !BR2_PACKAGE_LINUX
|
depends on !BR2_PACKAGE_LINUX
|
||||||
help
|
help
|
||||||
Do not optimize. This is the default.
|
Do not optimize. This is the default.
|
||||||
|
|
||||||
config BR2_OPTIMIZE_1
|
config BR2_OPTIMIZE_1
|
||||||
bool "optimization level 1"
|
bool "optimization level 1"
|
||||||
depends on !BR2_PACKAGE_LINUX
|
depends on !BR2_PACKAGE_LINUX
|
||||||
help
|
help
|
||||||
Optimize. Optimizing compilation takes somewhat more time,
|
Optimize. Optimizing compilation takes somewhat more time,
|
||||||
and a lot more memory for a large function. With -O, the
|
and a lot more memory for a large function. With -O, the
|
||||||
compiler tries to reduce code size and execution time,
|
compiler tries to reduce code size and execution time,
|
||||||
without performing any optimizations that take a great deal
|
without performing any optimizations that take a great deal
|
||||||
of compilation time. -O turns on the following optimization
|
of compilation time. -O turns on the following optimization
|
||||||
flags: -fdefer-pop -fdelayed-branch -fguess-branch-probability
|
flags: -fdefer-pop -fdelayed-branch -fguess-branch-probability
|
||||||
-fcprop-registers -floop-optimize -fif-conversion
|
-fcprop-registers -floop-optimize -fif-conversion
|
||||||
-fif-conversion2 -ftree-ccp -ftree-dce -ftree-dominator-opts
|
-fif-conversion2 -ftree-ccp -ftree-dce -ftree-dominator-opts
|
||||||
-ftree-dse -ftree-ter -ftree-lrs -ftree-sra -ftree-copyrename
|
-ftree-dse -ftree-ter -ftree-lrs -ftree-sra -ftree-copyrename
|
||||||
-ftree-fre -ftree-ch -funit-at-a-time -fmerge-constants
|
-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.
|
so does not interfere with debugging.
|
||||||
|
|
||||||
config BR2_OPTIMIZE_2
|
config BR2_OPTIMIZE_2
|
||||||
bool "optimization level 2"
|
bool "optimization level 2"
|
||||||
help
|
help
|
||||||
Optimize even more. GCC performs nearly all supported optimizations
|
Optimize even more. GCC performs nearly all supported optimizations
|
||||||
that do not involve a space-speed tradeoff. The compiler does not
|
that do not involve a space-speed tradeoff. The compiler does not
|
||||||
perform loop unrolling or function inlining when you specify -O2.
|
perform loop unrolling or function inlining when you specify -O2.
|
||||||
As compared to -O, this option increases both compilation time and
|
As compared to -O, this option increases both compilation time and
|
||||||
the performance of the generated code. -O2 turns on all optimization
|
the performance of the generated code. -O2 turns on all optimization
|
||||||
flags specified by -O. It also turns on the following optimization
|
flags specified by -O. It also turns on the following optimization
|
||||||
flags: -fthread-jumps -fcrossjumping -foptimize-sibling-calls
|
flags: -fthread-jumps -fcrossjumping -foptimize-sibling-calls
|
||||||
-fcse-follow-jumps -fcse-skip-blocks -fgcse -fgcse-lm
|
-fcse-follow-jumps -fcse-skip-blocks -fgcse -fgcse-lm
|
||||||
-fexpensive-optimizations -fstrength-reduce -frerun-cse-after-loop
|
-fexpensive-optimizations -fstrength-reduce -frerun-cse-after-loop
|
||||||
-frerun-loop-opt -fcaller-saves -fpeephole2 -fschedule-insns
|
-frerun-loop-opt -fcaller-saves -fpeephole2 -fschedule-insns
|
||||||
-fschedule-insns2 -fsched-interblock -fsched-spec -fregmove
|
-fschedule-insns2 -fsched-interblock -fsched-spec -fregmove
|
||||||
-fstrict-aliasing -fdelete-null-pointer-checks -freorder-blocks
|
-fstrict-aliasing -fdelete-null-pointer-checks -freorder-blocks
|
||||||
-freorder-functions -falign-functions -falign-jumps -falign-loops
|
-freorder-functions -falign-functions -falign-jumps -falign-loops
|
||||||
-falign-labels -ftree-vrp -ftree-pre
|
-falign-labels -ftree-vrp -ftree-pre
|
||||||
Please note the warning under -fgcse about invoking -O2 on programs
|
Please note the warning under -fgcse about invoking -O2 on programs
|
||||||
that use computed gotos.
|
that use computed gotos.
|
||||||
@ -308,20 +308,20 @@ config BR2_OPTIMIZE_2
|
|||||||
config BR2_OPTIMIZE_3
|
config BR2_OPTIMIZE_3
|
||||||
bool "optimization level 3"
|
bool "optimization level 3"
|
||||||
help
|
help
|
||||||
Optimize yet more. -O3 turns on all optimizations specified by -O2
|
Optimize yet more. -O3 turns on all optimizations specified by -O2
|
||||||
and also turns on the -finline-functions, -funswitch-loops and
|
and also turns on the -finline-functions, -funswitch-loops and
|
||||||
-fgcse-after-reload options.
|
-fgcse-after-reload options.
|
||||||
|
|
||||||
config BR2_OPTIMIZE_S
|
config BR2_OPTIMIZE_S
|
||||||
bool "optimize for size"
|
bool "optimize for size"
|
||||||
help
|
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
|
typically increase code size. It also performs further optimizations
|
||||||
designed to reduce code size. -Os disables the following optimization
|
designed to reduce code size. -Os disables the following optimization
|
||||||
flags: -falign-functions -falign-jumps -falign-loops -falign-labels
|
flags: -falign-functions -falign-jumps -falign-loops -falign-labels
|
||||||
-freorder-blocks -freorder-blocks-and-partition -fprefetch-loop-arrays
|
-freorder-blocks -freorder-blocks-and-partition -fprefetch-loop-arrays
|
||||||
-ftree-vect-loop-version
|
-ftree-vect-loop-version
|
||||||
|
|
||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
config BR2_PREFER_STATIC_LIB
|
config BR2_PREFER_STATIC_LIB
|
||||||
|
12
Makefile
12
Makefile
@ -260,7 +260,7 @@ TARGETS+=target-devfiles
|
|||||||
# target stuff is last so it can override anything else
|
# target stuff is last so it can override anything else
|
||||||
include target/Makefile.in
|
include target/Makefile.in
|
||||||
|
|
||||||
TARGETS+=erase-fakeroots
|
TARGETS+=erase-fakeroots
|
||||||
|
|
||||||
TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS))
|
TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS))
|
||||||
TARGETS_SOURCE:=$(patsubst %,%-source,$(TARGETS) $(BASE_TARGETS))
|
TARGETS_SOURCE:=$(patsubst %,%-source,$(TARGETS) $(BASE_TARGETS))
|
||||||
@ -337,10 +337,10 @@ ifeq ($(BR2_HAVE_DEVFILES),y)
|
|||||||
( scripts/copy.sh $(STAGING_DIR) $(TARGET_DIR) )
|
( scripts/copy.sh $(STAGING_DIR) $(TARGET_DIR) )
|
||||||
else
|
else
|
||||||
rm -rf $(TARGET_DIR)/usr/include $(TARGET_DIR)/usr/lib/pkgconfig
|
rm -rf $(TARGET_DIR)/usr/include $(TARGET_DIR)/usr/lib/pkgconfig
|
||||||
find $(TARGET_DIR)/usr/lib -name '*.a' -delete
|
find $(TARGET_DIR)/usr/lib -name '*.a' -delete
|
||||||
find $(TARGET_DIR)/lib -name '*.a' -delete
|
find $(TARGET_DIR)/lib -name '*.a' -delete
|
||||||
find $(TARGET_DIR)/usr/lib -name '*.la' -delete
|
find $(TARGET_DIR)/usr/lib -name '*.la' -delete
|
||||||
find $(TARGET_DIR)/lib -name '*.la' -delete
|
find $(TARGET_DIR)/lib -name '*.la' -delete
|
||||||
endif
|
endif
|
||||||
|
|
||||||
source: $(TARGETS_SOURCE) $(HOST_SOURCE)
|
source: $(TARGETS_SOURCE) $(HOST_SOURCE)
|
||||||
@ -485,7 +485,7 @@ prepatch: gcc-patched binutils-patched gdb-patched uclibc-patched
|
|||||||
log: .lognr.$(PROJECT)
|
log: .lognr.$(PROJECT)
|
||||||
@expr `cat .lognr.$(PROJECT)` + 1 > .lognr.$(PROJECT)
|
@expr `cat .lognr.$(PROJECT)` + 1 > .lognr.$(PROJECT)
|
||||||
@echo Creating $(PROJECT)-`cat .lognr.$(PROJECT)`.log
|
@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)
|
cross: $(BASE_TARGETS)
|
||||||
|
@ -32,7 +32,7 @@ endif
|
|||||||
# bool "Common Applications"
|
# bool "Common Applications"
|
||||||
# default y
|
# default y
|
||||||
# help
|
# help
|
||||||
# A set of applications, utilities and libraries for
|
# A set of applications, utilities and libraries for
|
||||||
# text processing, toolchain generation and other things.
|
# text processing, toolchain generation and other things.
|
||||||
|
|
||||||
|
|
||||||
|
@ -157,7 +157,7 @@ $(BUILD_DIR)/%/.stamp_extracted:
|
|||||||
# if the package uses libtool, patch it for cross-compiling in buildroot
|
# if the package uses libtool, patch it for cross-compiling in buildroot
|
||||||
for i in `find $(@D) -name ltmain.sh`; do \
|
for i in `find $(@D) -name ltmain.sh`; do \
|
||||||
toolchain/patch-kernel.sh $${i%/*} package buildroot-libtool.patch; \
|
toolchain/patch-kernel.sh $${i%/*} package buildroot-libtool.patch; \
|
||||||
done
|
done
|
||||||
$(Q)touch $@
|
$(Q)touch $@
|
||||||
|
|
||||||
# Patch
|
# Patch
|
||||||
|
@ -15,6 +15,6 @@ ACE_OF_PENGUINS_CONF_OPT = --target=$(GNU_TARGET_NAME) \
|
|||||||
--host=$(GNU_TARGET_NAME) --build=$(GNU_HOST_NAME) \
|
--host=$(GNU_TARGET_NAME) --build=$(GNU_HOST_NAME) \
|
||||||
--prefix=/usr --sysconfdir=/etc
|
--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))
|
$(eval $(call AUTOTARGETS,package,ace_of_penguins))
|
@ -9,7 +9,7 @@ ATK_SITE = ftp://ftp.gtk.org/pub/gtk/v2.10/dependencies
|
|||||||
ATK_AUTORECONF = NO
|
ATK_AUTORECONF = NO
|
||||||
ATK_INSTALL_STAGING = YES
|
ATK_INSTALL_STAGING = YES
|
||||||
ATK_INSTALL_TARGET = 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 \
|
ATK_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes \
|
||||||
glib_cv_stack_grows=no glib_cv_uscore=no \
|
glib_cv_stack_grows=no glib_cv_uscore=no \
|
||||||
@ -40,7 +40,7 @@ ATK_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes \
|
|||||||
gl_cv_func_mkstemp_limitations=no ac_cv_func_working_mktime=yes \
|
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 \
|
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 \
|
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)
|
ifneq ($(BR2_PACKAGE_XSERVER_none),y)
|
||||||
ATK_CONF_OPT_X = --with-x \
|
ATK_CONF_OPT_X = --with-x \
|
||||||
@ -60,7 +60,7 @@ ATK_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(REAL_GNU_TARGET_NAME) \
|
|||||||
--infodir=/usr/info --enable-shared \
|
--infodir=/usr/info --enable-shared \
|
||||||
--enable-static $(ATK_CONF_OPT_X) \
|
--enable-static $(ATK_CONF_OPT_X) \
|
||||||
--disable-glibtest --enable-explicit-deps=no \
|
--disable-glibtest --enable-explicit-deps=no \
|
||||||
--disable-debug
|
--disable-debug
|
||||||
|
|
||||||
ATK_DEPENDENCIES = libglib2 pkgconfig
|
ATK_DEPENDENCIES = libglib2 pkgconfig
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
config BR2_PACKAGE_AUTOCONF
|
config BR2_PACKAGE_AUTOCONF
|
||||||
bool "autoconf"
|
bool "autoconf"
|
||||||
help
|
help
|
||||||
Extensible program for developing configure scripts. These
|
Extensible program for developing configure scripts. These
|
||||||
scripts handle all the mundane system/feature detection.
|
scripts handle all the mundane system/feature detection.
|
||||||
|
|
||||||
http://www.gnu.org/software/autoconf/
|
http://www.gnu.org/software/autoconf/
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
config BR2_PACKAGE_AUTOMAKE
|
config BR2_PACKAGE_AUTOMAKE
|
||||||
bool "automake"
|
bool "automake"
|
||||||
help
|
help
|
||||||
Tool for automatically generating Makefile's for input to
|
Tool for automatically generating Makefile's for input to
|
||||||
configure scripts (made by autoconf).
|
configure scripts (made by autoconf).
|
||||||
|
|
||||||
http://www.gnu.org/software/automake/
|
http://www.gnu.org/software/automake/
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
config BR2_PACKAGE_BERKELEYDB
|
config BR2_PACKAGE_BERKELEYDB
|
||||||
bool "berkeleydb"
|
bool "berkeleydb"
|
||||||
help
|
help
|
||||||
The Berkeley database. A very common library for database
|
The Berkeley database. A very common library for database
|
||||||
applications.
|
applications.
|
||||||
|
|
||||||
http://www.sleepycat.com/products/db.shtml
|
http://www.sleepycat.com/products/db.shtml
|
||||||
|
@ -8,7 +8,7 @@ config BR2_PACKAGE_BIND
|
|||||||
|
|
||||||
* a Domain Name System server (named)
|
* a Domain Name System server (named)
|
||||||
* a Domain Name System resolver library
|
* 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
|
The BIND DNS Server is used on the vast majority of name
|
||||||
serving machines on the Internet, providing a robust and
|
serving machines on the Internet, providing a robust and
|
||||||
@ -16,6 +16,6 @@ config BR2_PACKAGE_BIND
|
|||||||
architecture can be built. The resolver library included in
|
architecture can be built. The resolver library included in
|
||||||
the BIND distribution provides the standard APIs for
|
the BIND distribution provides the standard APIs for
|
||||||
translation between domain names and Internet addresses and is
|
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/
|
http://www.isc.org/sw/bind/
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
config BR2_PACKAGE_BISON
|
config BR2_PACKAGE_BISON
|
||||||
bool "bison"
|
bool "bison"
|
||||||
help
|
help
|
||||||
General-purpose parser generator that converts a
|
General-purpose parser generator that converts a
|
||||||
grammar description for an LALR context-free grammar into a C
|
grammar description for an LALR context-free grammar into a C
|
||||||
program to parse that grammar.
|
program to parse that grammar.
|
||||||
|
|
||||||
http://www.gnu.org/software/bison/
|
http://www.gnu.org/software/bison/
|
||||||
|
@ -15,7 +15,7 @@ BLACKBOX_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
|
|||||||
BLACKBOX_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
|
BLACKBOX_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
|
||||||
--build=$(GNU_HOST_NAME) --prefix=/usr \
|
--build=$(GNU_HOST_NAME) --prefix=/usr \
|
||||||
--sysconfdir=/etc --x-includes=$(STAGING_DIR)/usr/include/X11 \
|
--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)
|
BLACKBOX_DEPENDENCIES = uclibc $(XSERVER)
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
config BR2_PACKAGE_BOA
|
config BR2_PACKAGE_BOA
|
||||||
bool "boa"
|
bool "boa"
|
||||||
help
|
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.
|
a feature-packed server.
|
||||||
|
|
||||||
http://www.boa.org/
|
http://www.boa.org/
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
config BR2_PACKAGE_BOOTUTILS
|
config BR2_PACKAGE_BOOTUTILS
|
||||||
bool "bootutils"
|
bool "bootutils"
|
||||||
help
|
help
|
||||||
BootUtils is a collection of utilities to facilitate booting of
|
BootUtils is a collection of utilities to facilitate booting of
|
||||||
Linux 2.6-based systems. The process of finding the root volume
|
Linux 2.6-based systems. The process of finding the root volume
|
||||||
either by label or explicit label= on the kernel command line,
|
either by label or explicit label= on the kernel command line,
|
||||||
mounting it, and 'switchroot'ing is automated.
|
mounting it, and 'switchroot'ing is automated.
|
||||||
|
|
||||||
http://bootutils.pr.linuxrulz.org/
|
http://bootutils.pr.linuxrulz.org/
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
config BR2_PACKAGE_BZIP2
|
config BR2_PACKAGE_BZIP2
|
||||||
bool "bzip2"
|
bool "bzip2"
|
||||||
help
|
help
|
||||||
Freely available, patent free, high-quality data compressor.
|
Freely available, patent free, high-quality data compressor.
|
||||||
It typically compresses files to within 10% to 15% of the best
|
It typically compresses files to within 10% to 15% of the best
|
||||||
available techniques, while being around twice as fast at
|
available techniques, while being around twice as fast at
|
||||||
compression and six times faster at decompression.
|
compression and six times faster at decompression.
|
||||||
|
|
||||||
http://sources.redhat.com/bzip2/
|
http://sources.redhat.com/bzip2/
|
||||||
|
@ -9,7 +9,7 @@ CAIRO_SITE = http://cairographics.org/releases
|
|||||||
CAIRO_AUTORECONF = NO
|
CAIRO_AUTORECONF = NO
|
||||||
CAIRO_INSTALL_STAGING = YES
|
CAIRO_INSTALL_STAGING = YES
|
||||||
CAIRO_INSTALL_TARGET = 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 \
|
CAIRO_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
|
||||||
glib_cv_uscore=no ac_cv_func_strtod=yes \
|
glib_cv_uscore=no ac_cv_func_strtod=yes \
|
||||||
@ -39,13 +39,13 @@ CAIRO_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 \
|
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_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
|
||||||
ac_use_included_regex=no gl_cv_c_restrict=no \
|
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)
|
ifeq ($(BR2_PACKAGE_DIRECTFB),y)
|
||||||
CAIRO_CONF_OPT = --disable-xlib --without-x --enable-directfb
|
CAIRO_CONF_OPT = --disable-xlib --without-x --enable-directfb
|
||||||
CAIRO_DEPENDENCIES_EXTRA = directfb
|
CAIRO_DEPENDENCIES_EXTRA = directfb
|
||||||
endif
|
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))
|
$(eval $(call AUTOTARGETS,package,cairo))
|
||||||
|
@ -3,8 +3,8 @@ config BR2_PACKAGE_COREUTILS
|
|||||||
depends on BR2_USE_WCHAR
|
depends on BR2_USE_WCHAR
|
||||||
select BR2_UCLIBC_PROGRAM_INVOCATION
|
select BR2_UCLIBC_PROGRAM_INVOCATION
|
||||||
help
|
help
|
||||||
All of the basic file/text/shell utilities. These are the
|
All of the basic file/text/shell utilities. These are the
|
||||||
core utilities which are expected to exist on every system.
|
core utilities which are expected to exist on every system.
|
||||||
Busybox implements many of the most common.
|
Busybox implements many of the most common.
|
||||||
|
|
||||||
Things like:
|
Things like:
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
config BR2_PACKAGE_DISTCC
|
config BR2_PACKAGE_DISTCC
|
||||||
bool "distcc"
|
bool "distcc"
|
||||||
help
|
help
|
||||||
Distributed compiler client and server. Allows you to
|
Distributed compiler client and server. Allows you to
|
||||||
distribute compilation of C code across several machines
|
distribute compilation of C code across several machines
|
||||||
on a network.
|
on a network.
|
||||||
|
|
||||||
http://distcc.samba.org/
|
http://distcc.samba.org/
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
config BR2_PACKAGE_DNSMASQ
|
config BR2_PACKAGE_DNSMASQ
|
||||||
bool "dnsmasq"
|
bool "dnsmasq"
|
||||||
help
|
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.
|
coupled DNS and DHCP service to a LAN.
|
||||||
|
|
||||||
http://www.thekelleys.org.uk/dnsmasq/
|
http://www.thekelleys.org.uk/dnsmasq/
|
||||||
|
@ -21,7 +21,7 @@ DOCKER_MAKE_OPT = CC=$(TARGET_CC) CXX=$(TARGET_CXX) LD=$(TARGET_LD) \
|
|||||||
|
|
||||||
DOCKER_INSTALL_TARGET_OPT = PREFIX=$(TARGET_DIR)/usr install
|
DOCKER_INSTALL_TARGET_OPT = PREFIX=$(TARGET_DIR)/usr install
|
||||||
|
|
||||||
DOCKER_DEPENDENCIES = uclibc
|
DOCKER_DEPENDENCIES = uclibc
|
||||||
|
|
||||||
$(eval $(call AUTOTARGETS,package,docker))
|
$(eval $(call AUTOTARGETS,package,docker))
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
config BR2_PACKAGE_ED
|
config BR2_PACKAGE_ED
|
||||||
bool "ed"
|
bool "ed"
|
||||||
help
|
help
|
||||||
A line-oriented text editor. Used to create, display, modify,
|
A line-oriented text editor. Used to create, display, modify,
|
||||||
and otherwise manipulate text files. Often used in scripts
|
and otherwise manipulate text files. Often used in scripts
|
||||||
rather than invoked directly.
|
rather than invoked directly.
|
||||||
|
|
||||||
http://www.gnu.org/software/ed/
|
http://www.gnu.org/software/ed/
|
||||||
|
@ -2,7 +2,7 @@ config BR2_PACKAGE_NANO
|
|||||||
bool "nano"
|
bool "nano"
|
||||||
select BR2_PACKAGE_NCURSES
|
select BR2_PACKAGE_NCURSES
|
||||||
help
|
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.
|
Great editor for new users.
|
||||||
|
|
||||||
http://www.nano-editor.org/
|
http://www.nano-editor.org/
|
||||||
|
@ -11,7 +11,7 @@ SPEECH_TOOLS_INSTALL_STAGING = NO
|
|||||||
SPEECH_TOOLS_INSTALL_TARGET = YES
|
SPEECH_TOOLS_INSTALL_TARGET = YES
|
||||||
SPEECH_TOOLS_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) STRIP=$(TARGET_STRIP) install
|
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_MAKE_OPT = CC=$(TARGET_CC) CXX=$(TARGET_CXX)
|
||||||
|
|
||||||
SPEECH_TOOLS_DEPENDENCIES = uclibc ncurses
|
SPEECH_TOOLS_DEPENDENCIES = uclibc ncurses
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
config BR2_PACKAGE_FILE
|
config BR2_PACKAGE_FILE
|
||||||
bool "file"
|
bool "file"
|
||||||
help
|
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.
|
for known patterns.
|
||||||
|
|
||||||
ftp://ftp.astron.com/pub/file/
|
ftp://ftp.astron.com/pub/file/
|
||||||
|
@ -2,7 +2,7 @@ config BR2_PACKAGE_FINDUTILS
|
|||||||
bool "findutils"
|
bool "findutils"
|
||||||
depends on BR2_USE_WCHAR
|
depends on BR2_USE_WCHAR
|
||||||
help
|
help
|
||||||
Basic directory searching utilities. Provides the
|
Basic directory searching utilities. Provides the
|
||||||
common 'find', 'xargs', 'locate', and 'updatedb' binaries.
|
common 'find', 'xargs', 'locate', and 'updatedb' binaries.
|
||||||
|
|
||||||
http://www.gnu.org/software/findutils/findutils.html
|
http://www.gnu.org/software/findutils/findutils.html
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
config BR2_PACKAGE_FLEX
|
config BR2_PACKAGE_FLEX
|
||||||
bool "flex"
|
bool "flex"
|
||||||
help
|
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.
|
programs that perform pattern-matching on text.
|
||||||
|
|
||||||
http://www.gnu.org/software/flex/
|
http://www.gnu.org/software/flex/
|
||||||
|
@ -18,6 +18,6 @@ FLTK_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
|
|||||||
--build=$(GNU_HOST_NAME) --prefix=/usr \
|
--build=$(GNU_HOST_NAME) --prefix=/usr \
|
||||||
--sysconfdir=/etc --enable-shared --enable-threads --with-x
|
--sysconfdir=/etc --enable-shared --enable-threads --with-x
|
||||||
|
|
||||||
FLTK_DEPENDENCIES = uclibc $(XSERVER)
|
FLTK_DEPENDENCIES = uclibc $(XSERVER)
|
||||||
|
|
||||||
$(eval $(call AUTOTARGETS,package,fltk))
|
$(eval $(call AUTOTARGETS,package,fltk))
|
@ -2,8 +2,8 @@ config BR2_PACKAGE_GAWK
|
|||||||
bool "gawk"
|
bool "gawk"
|
||||||
depends on BR2_USE_WCHAR
|
depends on BR2_USE_WCHAR
|
||||||
help
|
help
|
||||||
A special-purpose programming language which is data driven
|
A special-purpose programming language which is data driven
|
||||||
rather than procedural. Allows for simple data-reformatting jobs
|
rather than procedural. Allows for simple data-reformatting jobs
|
||||||
with just a few lines of code.
|
with just a few lines of code.
|
||||||
|
|
||||||
http://www.gnu.org/software/gawk/
|
http://www.gnu.org/software/gawk/
|
||||||
|
@ -12,7 +12,7 @@ GNUCHESS_INSTALL_TARGET = YES
|
|||||||
|
|
||||||
GNUCHESS_CONF_ENV = ac_cv_func_realloc_0_nonnull=yes ac_cv_func_malloc_0_nonnull=yes
|
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))
|
$(eval $(call AUTOTARGETS,package,gnuchess))
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
config BR2_PACKAGE_GZIP
|
config BR2_PACKAGE_GZIP
|
||||||
bool "gzip"
|
bool "gzip"
|
||||||
help
|
help
|
||||||
Standard GNU compressor. Provides things like gzip,
|
Standard GNU compressor. Provides things like gzip,
|
||||||
gunzip, gzcat, etc...
|
gunzip, gzcat, etc...
|
||||||
|
|
||||||
http://www.gnu.org/software/gzip/gzip.html
|
http://www.gnu.org/software/gzip/gzip.html
|
||||||
|
@ -3,7 +3,7 @@ config BR2_PACKAGE_HOSTAP
|
|||||||
depends on BR2_DEPRECATED
|
depends on BR2_DEPRECATED
|
||||||
select BR2_PACKAGE_PCMCIA
|
select BR2_PACKAGE_PCMCIA
|
||||||
help
|
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.
|
Prism2/2.5/3 chipset.
|
||||||
|
|
||||||
http://hostap.epitest.fi/
|
http://hostap.epitest.fi/
|
||||||
|
@ -51,7 +51,7 @@ $(ICU_HOST_DIR)/.done: $(ICU_DIR)/.configured
|
|||||||
touch $(ICU_HOST_DIR)/.done
|
touch $(ICU_HOST_DIR)/.done
|
||||||
|
|
||||||
$(ICU_DIR)/.done: $(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=$(STAGING_DIR)
|
||||||
$(MAKE) -C $(ICU_DIR) install DESTDIR=$(TARGET_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
|
$(SED) "s,^default_prefix=.*,default_prefix=\'$(STAGING_DIR)/usr\',g" $(STAGING_DIR)/usr/bin/icu-config
|
||||||
|
@ -12,8 +12,8 @@ IPKG_INSTALL_STAGING = YES
|
|||||||
IPKG_INSTALL_TARGET = YES
|
IPKG_INSTALL_TARGET = YES
|
||||||
|
|
||||||
IPKG_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
|
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))
|
$(eval $(call AUTOTARGETS,package,ipkg))
|
@ -1,7 +1,7 @@
|
|||||||
config BR2_PACKAGE_IPROUTE2
|
config BR2_PACKAGE_IPROUTE2
|
||||||
bool "iproute2"
|
bool "iproute2"
|
||||||
help
|
help
|
||||||
Kernel routing and traffic control utilities. Provides things
|
Kernel routing and traffic control utilities. Provides things
|
||||||
like ip and tc.
|
like ip and tc.
|
||||||
|
|
||||||
http://developer.osdl.org/dev/iproute2/
|
http://developer.osdl.org/dev/iproute2/
|
||||||
|
@ -19,13 +19,13 @@ config BR2_PACKAGE_IPSEC_TOOLS_NATT
|
|||||||
depends on BR2_PACKAGE_IPSEC_TOOLS
|
depends on BR2_PACKAGE_IPSEC_TOOLS
|
||||||
bool "Enable NAT-Traversal"
|
bool "Enable NAT-Traversal"
|
||||||
help
|
help
|
||||||
This needs kernel support, which is available on Linux. On
|
This needs kernel support, which is available on Linux. On
|
||||||
NetBSD, NAT-Traversal kernel support has not been integrated
|
NetBSD, NAT-Traversal kernel support has not been integrated
|
||||||
yet, you can get it from here:
|
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.
|
NAT-Traversal might infringe a patent.
|
||||||
|
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ config IRDA_TEKRAM
|
|||||||
config IRDA_SMCINIT
|
config IRDA_SMCINIT
|
||||||
bool "support toshiba-laptops"
|
bool "support toshiba-laptops"
|
||||||
help
|
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.
|
Irda. This may help those.
|
||||||
|
|
||||||
endif
|
endif
|
||||||
|
@ -9,7 +9,7 @@ CLASSPATH_SITE = $(BR2_GNU_MIRROR)/classpath
|
|||||||
CLASSPATH_AUTORECONF = NO
|
CLASSPATH_AUTORECONF = NO
|
||||||
CLASSPATH_INSTALL_STAGING = YES
|
CLASSPATH_INSTALL_STAGING = YES
|
||||||
CLASSPATH_INSTALL_TARGET = 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_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
|
||||||
CLASSPATH_DIR_PREFIX = package/java
|
CLASSPATH_DIR_PREFIX = package/java
|
||||||
|
|
||||||
@ -42,7 +42,7 @@ CLASSPATH_CONF_ENV = 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_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
|
||||||
ac_use_included_regex=no gl_cv_c_restrict=no \
|
ac_use_included_regex=no gl_cv_c_restrict=no \
|
||||||
ac_cv_path_GLIB_GENMARSHAL=/usr/bin/glib-genmarshal \
|
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) \
|
CLASSPATH_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
|
||||||
@ -63,21 +63,21 @@ CLASSPATH_DEPENDENCIES = uclibc pkgconfig png jpeg tiff
|
|||||||
ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
|
ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
|
||||||
CLASSPATH_DEPENDENCIES+= alsa-lib
|
CLASSPATH_DEPENDENCIES+= alsa-lib
|
||||||
CLASSPATH_CONF_OPT+= --enable-alsa
|
CLASSPATH_CONF_OPT+= --enable-alsa
|
||||||
else
|
else
|
||||||
CLASSPATH_CONF_OPT+= --disable-alsa
|
CLASSPATH_CONF_OPT+= --disable-alsa
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_QTOPIA4),y)
|
ifeq ($(BR2_PACKAGE_QTOPIA4),y)
|
||||||
CLASSPATH_DEPENDENCIES+= qtopia4
|
CLASSPATH_DEPENDENCIES+= qtopia4
|
||||||
CLASSPATH_CONF_OPT+= --enable-qt-peer
|
CLASSPATH_CONF_OPT+= --enable-qt-peer
|
||||||
else
|
else
|
||||||
CLASSPATH_CONF_OPT+= --disable-qt-peer
|
CLASSPATH_CONF_OPT+= --disable-qt-peer
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_LIBGTK2),y)
|
ifeq ($(BR2_PACKAGE_LIBGTK2),y)
|
||||||
CLASSPATH_DEPENDENCIES+= libgtk2
|
CLASSPATH_DEPENDENCIES+= libgtk2
|
||||||
CLASSPATH_CONF_OPT+= --enable-gtk-peer
|
CLASSPATH_CONF_OPT+= --enable-gtk-peer
|
||||||
else
|
else
|
||||||
CLASSPATH_CONF_OPT+= --disable-gtk-peer
|
CLASSPATH_CONF_OPT+= --disable-gtk-peer
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@ -87,7 +87,7 @@ ifneq ($(BR2_PACKAGE_XSERVER_none),y)
|
|||||||
--x-includes=$(STAGING_DIR)/usr/include/X11 \
|
--x-includes=$(STAGING_DIR)/usr/include/X11 \
|
||||||
--x-libraries=$(STAGING_DIR)/usr/lib
|
--x-libraries=$(STAGING_DIR)/usr/lib
|
||||||
else
|
else
|
||||||
CLASSPATH_CONF_OPT+= --without-x
|
CLASSPATH_CONF_OPT+= --without-x
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ $(TARGET_DIR)/usr/lib/concierge/: $(DL_DIR)/concierge
|
|||||||
cp -dpf package/concierge/files/init.xargs $(TARGET_DIR)/usr/lib/concierge/
|
cp -dpf package/concierge/files/init.xargs $(TARGET_DIR)/usr/lib/concierge/
|
||||||
touch -c $@
|
touch -c $@
|
||||||
|
|
||||||
$(TARGET_DIR)/usr/bin/concierge:
|
$(TARGET_DIR)/usr/bin/concierge:
|
||||||
cp -dpf package/concierge/files/concierge $(TARGET_DIR)/usr/bin/
|
cp -dpf package/concierge/files/concierge $(TARGET_DIR)/usr/bin/
|
||||||
chmod +x $(TARGET_DIR)/usr/bin/concierge
|
chmod +x $(TARGET_DIR)/usr/bin/concierge
|
||||||
touch -c $@
|
touch -c $@
|
||||||
|
@ -3,7 +3,7 @@ config BR2_PACKAGE_JAMVM
|
|||||||
depends on BR2_PACKAGE_CLASSPATH
|
depends on BR2_PACKAGE_CLASSPATH
|
||||||
select BR2_PACKAGE_PKGCONFIG
|
select BR2_PACKAGE_PKGCONFIG
|
||||||
help
|
help
|
||||||
JamVM is a new Java Virtual Machine which conforms to
|
JamVM is a new Java Virtual Machine which conforms to
|
||||||
the JVM specification version 2 (blue book).
|
the JVM specification version 2 (blue book).
|
||||||
|
|
||||||
http://jamvm.sourceforge.net/
|
http://jamvm.sourceforge.net/
|
||||||
|
@ -41,7 +41,7 @@ JAMVM_CONF_ENV = 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_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
|
||||||
ac_use_included_regex=no gl_cv_c_restrict=no \
|
ac_use_included_regex=no gl_cv_c_restrict=no \
|
||||||
ac_cv_path_GLIB_GENMARSHAL=/usr/bin/glib-genmarshal \
|
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) \
|
JAMVM_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
|
||||||
--build=$(GNU_HOST_NAME) --prefix=/usr \
|
--build=$(GNU_HOST_NAME) --prefix=/usr \
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
config BR2_PACKAGE_KISMET
|
config BR2_PACKAGE_KISMET
|
||||||
bool "kismet"
|
bool "kismet"
|
||||||
select BR2_PACKAGE_NCURSES
|
select BR2_PACKAGE_NCURSES
|
||||||
select BR2_PACKAGE_LIBPCAP
|
select BR2_PACKAGE_LIBPCAP
|
||||||
select BR2_PACKAGE_DBUS
|
select BR2_PACKAGE_DBUS
|
||||||
select BR2_PACKAGE_DBUS_GLIB
|
select BR2_PACKAGE_DBUS_GLIB
|
||||||
@ -13,5 +13,5 @@ config BR2_PACKAGE_KISMET
|
|||||||
|
|
||||||
Kismet identifies networks by passively collecting packets and detecting standard named
|
Kismet identifies networks by passively collecting packets and detecting standard named
|
||||||
networks, detecting (and given time, decloaking) hidden networks, and infering the presence
|
networks, detecting (and given time, decloaking) hidden networks, and infering the presence
|
||||||
of nonbeaconing networks via data traffic.
|
of nonbeaconing networks via data traffic.
|
||||||
|
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
config BR2_PACKAGE_LIBCGI
|
config BR2_PACKAGE_LIBCGI
|
||||||
bool "libcgi"
|
bool "libcgi"
|
||||||
help
|
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.
|
CGI applications in C.
|
||||||
|
|
||||||
There are a lot of functions like string manipulation,
|
There are a lot of functions like string manipulation,
|
||||||
session and cookie support, GET and POST methods manipulation
|
session and cookie support, GET and POST methods manipulation
|
||||||
etc..., to help you to quickly write powerful CGI programs.
|
etc..., to help you to quickly write powerful CGI programs.
|
||||||
|
|
||||||
http://libcgi.sourceforge.net/
|
http://libcgi.sourceforge.net/
|
||||||
|
@ -2,7 +2,7 @@ config BR2_PACKAGE_LIBDAEMON
|
|||||||
bool "libdaemon"
|
bool "libdaemon"
|
||||||
select BR2_PACKAGE_PKGCONFIG
|
select BR2_PACKAGE_PKGCONFIG
|
||||||
help
|
help
|
||||||
libdaemon is a lightweight C library that eases the
|
libdaemon is a lightweight C library that eases the
|
||||||
writing of UNIX daemons.
|
writing of UNIX daemons.
|
||||||
|
|
||||||
http://0pointer.de/lennart/projects/libdaemon/
|
http://0pointer.de/lennart/projects/libdaemon/
|
||||||
|
@ -4,7 +4,7 @@ config BR2_PACKAGE_LIBEXOSIP2
|
|||||||
GNU Higher level SIP (Session Initiation Protocol)
|
GNU Higher level SIP (Session Initiation Protocol)
|
||||||
This library aims to provide multimedia and telecom software
|
This library aims to provide multimedia and telecom software
|
||||||
developers an easy and powerful interface to initiate and
|
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.
|
SIP is a open standard replacement from IETF for H323.
|
||||||
|
|
||||||
http://www.gnu.org/software/osip/
|
http://www.gnu.org/software/osip/
|
||||||
|
@ -56,7 +56,7 @@ $(LIBEXOSIP2_DIR)/.compiled: $(LIBEXOSIP2_DIR)/.configured
|
|||||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(LIBEXOSIP2_DIR)
|
$(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(LIBEXOSIP2_DIR)
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
#LDFLAGS=$(TARGET_LDFLAGS)
|
#LDFLAGS=$(TARGET_LDFLAGS)
|
||||||
|
|
||||||
$(STAGING_DIR)/usr/lib/libeXosip2.so: $(LIBEXOSIP2_DIR)/.compiled
|
$(STAGING_DIR)/usr/lib/libeXosip2.so: $(LIBEXOSIP2_DIR)/.compiled
|
||||||
cp -dpf $(LIBEXOSIP2_DIR)/src/.libs/libeXosip2.so* $(STAGING_DIR)/usr/lib
|
cp -dpf $(LIBEXOSIP2_DIR)/src/.libs/libeXosip2.so* $(STAGING_DIR)/usr/lib
|
||||||
|
@ -2,6 +2,6 @@ config BR2_PACKAGE_LIBFLOAT
|
|||||||
bool "libfloat"
|
bool "libfloat"
|
||||||
help
|
help
|
||||||
Soft floating point library.
|
Soft floating point library.
|
||||||
|
|
||||||
http://netwinder.osuosl.org/devteam/scottb/libfloat/
|
http://netwinder.osuosl.org/devteam/scottb/libfloat/
|
||||||
|
|
||||||
|
@ -2,6 +2,6 @@ config BR2_PACKAGE_LIBGCRYPT
|
|||||||
bool "libgcrypt"
|
bool "libgcrypt"
|
||||||
select BR2_PACKAGE_LIBGPG_ERROR
|
select BR2_PACKAGE_LIBGPG_ERROR
|
||||||
help
|
help
|
||||||
LibGCrypt is GNU's basic cryptographic library.
|
LibGCrypt is GNU's basic cryptographic library.
|
||||||
|
|
||||||
ftp://gd.tuwien.ac.at/privacy/gnupg/libgcrypt/
|
ftp://gd.tuwien.ac.at/privacy/gnupg/libgcrypt/
|
||||||
|
@ -9,7 +9,7 @@ LIBGLIB2_SITE = http://ftp.gtk.org/pub/glib/2.15
|
|||||||
LIBGLIB2_AUTORECONF = NO
|
LIBGLIB2_AUTORECONF = NO
|
||||||
LIBGLIB2_INSTALL_STAGING = YES
|
LIBGLIB2_INSTALL_STAGING = YES
|
||||||
LIBGLIB2_INSTALL_TARGET = 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) \
|
LIBGLIB2_CONF_ENV = $(TARGET_CONFIGURE_OPTS) $(TARGET_CONFIGURE_ARGS) \
|
||||||
ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
|
ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
|
||||||
@ -41,7 +41,7 @@ LIBGLIB2_CONF_ENV = $(TARGET_CONFIGURE_OPTS) $(TARGET_CONFIGURE_ARGS) \
|
|||||||
ac_cv_func_working_mktime=yes jm_cv_func_working_re_compile_pattern=yes \
|
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_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_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) \
|
LIBGLIB2_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
|
||||||
--build=$(GNU_HOST_NAME) --prefix=/usr \
|
--build=$(GNU_HOST_NAME) --prefix=/usr \
|
||||||
@ -51,8 +51,8 @@ LIBGLIB2_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
|
|||||||
--datadir=/usr/share --localstatedir=/var \
|
--datadir=/usr/share --localstatedir=/var \
|
||||||
--includedir=/usr/include --mandir=/usr/man \
|
--includedir=/usr/include --mandir=/usr/man \
|
||||||
--infodir=/usr/info --enable-shared \
|
--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))
|
$(eval $(call AUTOTARGETS,package,libglib2))
|
||||||
|
@ -9,8 +9,8 @@ LIBGTK2_SITE = ftp://ftp.gtk.org/pub/gtk/2.12
|
|||||||
LIBGTK2_AUTORECONF = NO
|
LIBGTK2_AUTORECONF = NO
|
||||||
LIBGTK2_INSTALL_STAGING = YES
|
LIBGTK2_INSTALL_STAGING = YES
|
||||||
LIBGTK2_INSTALL_TARGET = YES
|
LIBGTK2_INSTALL_TARGET = YES
|
||||||
LIBGTK2_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
|
LIBGTK2_INSTALL_STAGING_OPT = DESTDIR=$(STAGING_DIR) install
|
||||||
LIBGTK2_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_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 \
|
LIBGTK2_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
|
||||||
glib_cv_uscore=no \
|
glib_cv_uscore=no \
|
||||||
@ -71,7 +71,7 @@ LIBGTK2_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
|
|||||||
ac_cv_path_GDK_PIXBUF_CSOURCE=$(HOST_GLIB)/bin/gdk-pixbuf-csource \
|
ac_cv_path_GDK_PIXBUF_CSOURCE=$(HOST_GLIB)/bin/gdk-pixbuf-csource \
|
||||||
ac_cv_prog_F77=no \
|
ac_cv_prog_F77=no \
|
||||||
ac_cv_prog_CXX=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) \
|
LIBGTK2_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
|
||||||
--build=$(GNU_HOST_NAME) \
|
--build=$(GNU_HOST_NAME) \
|
||||||
@ -109,7 +109,7 @@ ifneq ($(BR2_PACKAGE_XSERVER_none),y)
|
|||||||
--x-includes=$(STAGING_DIR)/usr/include/X11 \
|
--x-includes=$(STAGING_DIR)/usr/include/X11 \
|
||||||
--x-libraries=$(STAGING_DIR)/usr/lib \
|
--x-libraries=$(STAGING_DIR)/usr/lib \
|
||||||
--with-gdktarget=x11
|
--with-gdktarget=x11
|
||||||
LIBGTK2_DEPENDENCIES_EXTRA = xlib_libXcomposite $(XSERVER)
|
LIBGTK2_DEPENDENCIES_EXTRA = xlib_libXcomposite $(XSERVER)
|
||||||
else
|
else
|
||||||
LIBGTK2_CONF_OPT += --without-x
|
LIBGTK2_CONF_OPT += --without-x
|
||||||
endif
|
endif
|
||||||
|
@ -12,7 +12,7 @@ LIBICONV_INSTALL_TARGET = YES
|
|||||||
|
|
||||||
LIBICONV_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
|
LIBICONV_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
|
||||||
|
|
||||||
LIBICONV_DEPENDENCIES = uclibc
|
LIBICONV_DEPENDENCIES = uclibc
|
||||||
|
|
||||||
$(eval $(call AUTOTARGETS,package,libiconv))
|
$(eval $(call AUTOTARGETS,package,libiconv))
|
||||||
|
|
||||||
|
@ -4,6 +4,6 @@ config BR2_PACKAGE_LIBOSIP2
|
|||||||
GNU SIP (Session Initiation Protocol)
|
GNU SIP (Session Initiation Protocol)
|
||||||
This library aims to provide multimedia and telecom software
|
This library aims to provide multimedia and telecom software
|
||||||
developers an easy and powerful interface to initiate and
|
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.
|
SIP is a open standard replacement from IETF for H323.
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
config BR2_PACKAGE_LIBSNDFILE
|
config BR2_PACKAGE_LIBSNDFILE
|
||||||
bool "libsndfile"
|
bool "libsndfile"
|
||||||
help
|
help
|
||||||
Libsndfile is a C library for reading and writing files containing
|
Libsndfile is a C library for reading and writing files containing
|
||||||
sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format)
|
sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format)
|
||||||
through one standard library interface.
|
through one standard library interface.
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
config BR2_PACKAGE_LIBTOOL
|
config BR2_PACKAGE_LIBTOOL
|
||||||
bool "libtool"
|
bool "libtool"
|
||||||
help
|
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.
|
on different platforms behind a consistent, portable interface.
|
||||||
|
|
||||||
http://www.gnu.org/software/libtool/
|
http://www.gnu.org/software/libtool/
|
||||||
|
@ -8,7 +8,7 @@ config BR2_PACKAGE_LIGHTTPD
|
|||||||
Auth, Output-Compression, URL-Rewriting and many more) make
|
Auth, Output-Compression, URL-Rewriting and many more) make
|
||||||
lighttpd the perfect webserver-software for every server that
|
lighttpd the perfect webserver-software for every server that
|
||||||
is suffering load problems.
|
is suffering load problems.
|
||||||
|
|
||||||
http://www.lighttpd.net/
|
http://www.lighttpd.net/
|
||||||
|
|
||||||
if BR2_PACKAGE_LIGHTTPD
|
if BR2_PACKAGE_LIGHTTPD
|
||||||
|
@ -9,7 +9,7 @@ LIGHTTPD_SITE:=http://www.lighttpd.net/download
|
|||||||
LIGHTTPD_INSTALL_STAGING = NO
|
LIGHTTPD_INSTALL_STAGING = NO
|
||||||
LIGHTTPD_INSTALL_TARGET = YES
|
LIGHTTPD_INSTALL_TARGET = YES
|
||||||
LIGHTTPD_DEPENDENCIES = uclibc
|
LIGHTTPD_DEPENDENCIES = uclibc
|
||||||
LIGHTTPD_CONF_ENV =
|
LIGHTTPD_CONF_ENV =
|
||||||
LIGHTTPD_CONF_OPT = \
|
LIGHTTPD_CONF_OPT = \
|
||||||
--target=$(GNU_TARGET_NAME) \
|
--target=$(GNU_TARGET_NAME) \
|
||||||
--host=$(GNU_TARGET_NAME) \
|
--host=$(GNU_TARGET_NAME) \
|
||||||
|
@ -2,7 +2,7 @@ config BR2_PACKAGE_LSOF
|
|||||||
bool "lsof"
|
bool "lsof"
|
||||||
help
|
help
|
||||||
lsof (LiSt Open Files)
|
lsof (LiSt Open Files)
|
||||||
The lsof tool lists information about files opened by
|
The lsof tool lists information about files opened by
|
||||||
processes.
|
processes.
|
||||||
|
|
||||||
ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/
|
ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/
|
||||||
|
@ -15,7 +15,7 @@ $(DL_DIR)/$(LXDOOM_WAD_SOURCE):
|
|||||||
$(LXDOOM_WAD_DIR)/.unpacked: $(DL_DIR)/$(LXDOOM_WAD_SOURCE)
|
$(LXDOOM_WAD_DIR)/.unpacked: $(DL_DIR)/$(LXDOOM_WAD_SOURCE)
|
||||||
mkdir -p $(LXDOOM_WAD_DIR)
|
mkdir -p $(LXDOOM_WAD_DIR)
|
||||||
cp -f $(DL_DIR)/$(LXDOOM_WAD_SOURCE) $(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 $@
|
touch $@
|
||||||
|
|
||||||
$(LXDOOM_WAD_DIR)/.installed: $(LXDOOM_WAD_DIR)/.unpacked
|
$(LXDOOM_WAD_DIR)/.installed: $(LXDOOM_WAD_DIR)/.unpacked
|
||||||
|
@ -17,6 +17,6 @@ LXDOOM_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
|
|||||||
--includedir=/usr/include --enable-shared \
|
--includedir=/usr/include --enable-shared \
|
||||||
$(DISABLE_NLS)
|
$(DISABLE_NLS)
|
||||||
|
|
||||||
LXDOOM_DEPENDENCIES = uclibc
|
LXDOOM_DEPENDENCIES = uclibc
|
||||||
|
|
||||||
$(eval $(call AUTOTARGETS,package,lxdoom))
|
$(eval $(call AUTOTARGETS,package,lxdoom))
|
@ -11,7 +11,7 @@ MAGICCUBE4D_INSTALL_STAGING = NO
|
|||||||
MAGICCUBE4D_INSTALL_TARGET = YES
|
MAGICCUBE4D_INSTALL_TARGET = YES
|
||||||
MAGICCUBE4D_INSTALL_TARGET_OPT = GAMESDIR=$(TARGET_DIR)/usr/games install
|
MAGICCUBE4D_INSTALL_TARGET_OPT = GAMESDIR=$(TARGET_DIR)/usr/games install
|
||||||
|
|
||||||
MAGICCUBE4D_DEPENDENCIES = uclibc
|
MAGICCUBE4D_DEPENDENCIES = uclibc
|
||||||
|
|
||||||
$(eval $(call AUTOTARGETS,package,magiccube4d))
|
$(eval $(call AUTOTARGETS,package,magiccube4d))
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
config BR2_PACKAGE_MAKE
|
config BR2_PACKAGE_MAKE
|
||||||
bool "make"
|
bool "make"
|
||||||
help
|
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.
|
non-source files of a program from the program's source files.
|
||||||
|
|
||||||
http://www.gnu.org/software/make/
|
http://www.gnu.org/software/make/
|
||||||
|
@ -10,5 +10,5 @@ config BR2_PACKAGE_MICROPERL_MODULES
|
|||||||
help
|
help
|
||||||
List of microperl modules to copy to the rootfs.
|
List of microperl modules to copy to the rootfs.
|
||||||
E.g.
|
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
|
Exporter.pm Exporter/Heavy.pm Carp.pm Getopt/Long.pm
|
||||||
|
@ -3,5 +3,5 @@ config BR2_PACKAGE_MICROWIN
|
|||||||
help
|
help
|
||||||
Microwindows Graphical User Interface for small and
|
Microwindows Graphical User Interface for small and
|
||||||
embedded enviroments.
|
embedded enviroments.
|
||||||
|
|
||||||
http://microwindows.censoft.com/
|
http://microwindows.censoft.com/
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
config BR2_PACKAGE_MODULE_INIT_TOOLS
|
config BR2_PACKAGE_MODULE_INIT_TOOLS
|
||||||
bool "module-init-tools"
|
bool "module-init-tools"
|
||||||
help
|
help
|
||||||
The module-init-tools package contains a set of programs for
|
The module-init-tools package contains a set of programs for
|
||||||
loading, inserting, and removing kernel modules for Linux
|
loading, inserting, and removing kernel modules for Linux
|
||||||
(versions 2.5.48 and above). It serves the same function that
|
(versions 2.5.48 and above). It serves the same function that
|
||||||
the "modutils" package serves for Linux 2.4.
|
the "modutils" package serves for Linux 2.4.
|
||||||
|
|
||||||
http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/
|
http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/
|
||||||
|
@ -2,9 +2,9 @@ config BR2_PACKAGE_MODUTILS
|
|||||||
bool "modutils"
|
bool "modutils"
|
||||||
depends on !BR2_PACKAGE_MODULE_INIT_TOOLS
|
depends on !BR2_PACKAGE_MODULE_INIT_TOOLS
|
||||||
help
|
help
|
||||||
The modutils packages includes the kerneld program for automatic
|
The modutils packages includes the kerneld program for automatic
|
||||||
loading and unloading of modules, as well as other module
|
loading and unloading of modules, as well as other module
|
||||||
management programs. Examples of loaded and unloaded modules are
|
management programs. Examples of loaded and unloaded modules are
|
||||||
device drivers and filesystems, as well as some other things.
|
device drivers and filesystems, as well as some other things.
|
||||||
|
|
||||||
linux v.<2.6
|
linux v.<2.6
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
config BR2_PACKAGE_NCURSES
|
config BR2_PACKAGE_NCURSES
|
||||||
bool "ncurses"
|
bool "ncurses"
|
||||||
help
|
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.
|
curses in System V Release 4.0, and more.
|
||||||
|
|
||||||
http://www.gnu.org/software/ncurses/
|
http://www.gnu.org/software/ncurses/
|
||||||
@ -11,13 +11,13 @@ config BR2_PACKAGE_NCURSES_TARGET_PANEL
|
|||||||
depends on BR2_PACKAGE_NCURSES
|
depends on BR2_PACKAGE_NCURSES
|
||||||
help
|
help
|
||||||
Includes ncurses dynamic libpanel in target
|
Includes ncurses dynamic libpanel in target
|
||||||
|
|
||||||
config BR2_PACKAGE_NCURSES_TARGET_FORM
|
config BR2_PACKAGE_NCURSES_TARGET_FORM
|
||||||
bool "ncurses libform in target"
|
bool "ncurses libform in target"
|
||||||
depends on BR2_PACKAGE_NCURSES
|
depends on BR2_PACKAGE_NCURSES
|
||||||
help
|
help
|
||||||
Includes ncurses dynamic libform in target
|
Includes ncurses dynamic libform in target
|
||||||
|
|
||||||
config BR2_PACKAGE_NCURSES_TARGET_MENU
|
config BR2_PACKAGE_NCURSES_TARGET_MENU
|
||||||
bool "ncurses libmenu in target"
|
bool "ncurses libmenu in target"
|
||||||
depends on BR2_PACKAGE_NCURSES
|
depends on BR2_PACKAGE_NCURSES
|
||||||
|
@ -25,7 +25,7 @@ config BR2_PACKAGE_NEON_LIBXML2
|
|||||||
bool "libxml2"
|
bool "libxml2"
|
||||||
depends on BR2_PACKAGE_LIBXML2
|
depends on BR2_PACKAGE_LIBXML2
|
||||||
help
|
help
|
||||||
libxml2 use libxml2, a library to read, modify and
|
libxml2 use libxml2, a library to read, modify and
|
||||||
write XML and HTML files.
|
write XML and HTML files.
|
||||||
|
|
||||||
config BR2_PACKAGE_NEON_NOXML
|
config BR2_PACKAGE_NEON_NOXML
|
||||||
|
@ -4,9 +4,9 @@ config BR2_PACKAGE_NETCAT
|
|||||||
Netcat is a featured networking utility which reads and writes data
|
Netcat is a featured networking utility which reads and writes data
|
||||||
across network connections, using the TCP/IP protocol.
|
across network connections, using the TCP/IP protocol.
|
||||||
It is designed to be a reliable "back-end" tool that can be used
|
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
|
directly or easily driven by other programs and scripts. At the
|
||||||
same time, it is a feature-rich network debugging and exploration
|
same time, it is a feature-rich network debugging and exploration
|
||||||
tool, since it can create almost any kind of connection you would
|
tool, since it can create almost any kind of connection you would
|
||||||
need and has several interesting built-in capabilities.
|
need and has several interesting built-in capabilities.
|
||||||
|
|
||||||
http://netcat.sourceforge.net/download.php
|
http://netcat.sourceforge.net/download.php
|
||||||
|
@ -2,7 +2,7 @@ config BR2_PACKAGE_NETSNMP
|
|||||||
bool "netsnmp"
|
bool "netsnmp"
|
||||||
select BR2_PACKAGE_OPENSSL
|
select BR2_PACKAGE_OPENSSL
|
||||||
help
|
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.
|
SNMP v3 using both IPv4 and IPv6.
|
||||||
|
|
||||||
http://net-snmp.sourceforge.net/
|
http://net-snmp.sourceforge.net/
|
||||||
|
@ -13,7 +13,7 @@ NG_SPICE_REWORK_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
|
|||||||
|
|
||||||
NG_SPICE_REWORK_CONF_OPT = CFLAGS="-I$(STAGING_DIR)/usr/include"
|
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))
|
$(eval $(call AUTOTARGETS,package,ng-spice-rework))
|
||||||
|
|
||||||
|
@ -42,14 +42,14 @@ $(NTFS-3G_DIR)/.configured: $(NTFS-3G_DIR)/.source
|
|||||||
ac_cv_path_LDCONFIG=""\
|
ac_cv_path_LDCONFIG=""\
|
||||||
);
|
);
|
||||||
touch $@
|
touch $@
|
||||||
|
|
||||||
$(NTFS-3G_DIR)/.compiled: $(NTFS-3G_DIR)/.configured
|
$(NTFS-3G_DIR)/.compiled: $(NTFS-3G_DIR)/.configured
|
||||||
$(MAKE) prefix=$/usr CC=$(TARGET_CC)-C $(NTFS-3G_DIR)
|
$(MAKE) prefix=$/usr CC=$(TARGET_CC)-C $(NTFS-3G_DIR)
|
||||||
touch $@
|
touch $@
|
||||||
# CROSS_COMPILE="$(TARGET_CROSS)"
|
# CROSS_COMPILE="$(TARGET_CROSS)"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$(STAGING_DIR)/usr/bin/ntfs-3g: $(NTFS-3G_DIR)/.compiled
|
$(STAGING_DIR)/usr/bin/ntfs-3g: $(NTFS-3G_DIR)/.compiled
|
||||||
$(MAKE) prefix=$/usr -C $(NTFS-3G_DIR) DESTDIR=$(STAGING_DIR)/ install
|
$(MAKE) prefix=$/usr -C $(NTFS-3G_DIR) DESTDIR=$(STAGING_DIR)/ install
|
||||||
touch -c $@
|
touch -c $@
|
||||||
|
@ -2,7 +2,7 @@ config BR2_PACKAGE_OLSR
|
|||||||
bool "OLSR mesh networking Daemon"
|
bool "OLSR mesh networking Daemon"
|
||||||
help
|
help
|
||||||
olsr
|
olsr
|
||||||
|
|
||||||
The Optimized Link State Routing protocol (OLSR) is a routing protocol that is optimised
|
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
|
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
|
link-state routing protocol that floods a full topology table to all nodes in the network
|
||||||
|
@ -56,7 +56,7 @@ $(OPENMOTIF_DIR)/.configured: $(OPENMOTIF_HOST_DIR)/.configured
|
|||||||
touch $(OPENMOTIF_DIR)/.configured
|
touch $(OPENMOTIF_DIR)/.configured
|
||||||
|
|
||||||
$(OPENMOTIF_HOST_DIR)/.done: $(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)/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/wmluiltok $(OPENMOTIF_DIR)/tools/wml/wmluiltok-host
|
||||||
ln -s -f $(OPENMOTIF_HOST_DIR)/tools/wml/wml $(OPENMOTIF_DIR)/tools/wml/wml-host
|
ln -s -f $(OPENMOTIF_HOST_DIR)/tools/wml/wml $(OPENMOTIF_DIR)/tools/wml/wml-host
|
||||||
@ -70,7 +70,7 @@ $(OPENMOTIF_HOST_DIR)/.done: $(OPENMOTIF_DIR)/.configured
|
|||||||
touch $(OPENMOTIF_HOST_DIR)/.done
|
touch $(OPENMOTIF_HOST_DIR)/.done
|
||||||
|
|
||||||
$(OPENMOTIF_DIR)/.done: $(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=$(STAGING_DIR)
|
||||||
$(MAKE) -C $(OPENMOTIF_DIR) install DESTDIR=$(TARGET_DIR)
|
$(MAKE) -C $(OPENMOTIF_DIR) install DESTDIR=$(TARGET_DIR)
|
||||||
touch $(OPENMOTIF_DIR)/.done
|
touch $(OPENMOTIF_DIR)/.done
|
||||||
|
@ -3,7 +3,7 @@ config BR2_PACKAGE_OPENSSH
|
|||||||
select BR2_PACKAGE_OPENSSL
|
select BR2_PACKAGE_OPENSSL
|
||||||
select BR2_PACKAGE_ZLIB
|
select BR2_PACKAGE_ZLIB
|
||||||
help
|
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.
|
tools. The standard 'ssh', 'sshd', 'scp', and friends.
|
||||||
|
|
||||||
http://www.openssh.com/
|
http://www.openssh.com/
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
config BR2_PACKAGE_OPENSSL
|
config BR2_PACKAGE_OPENSSL
|
||||||
bool "openssl"
|
bool "openssl"
|
||||||
help
|
help
|
||||||
A collaborative effort to develop a robust, commercial-grade, fully
|
A collaborative effort to develop a robust, commercial-grade, fully
|
||||||
featured, and Open Source toolkit implementing the Secure Sockets
|
featured, and Open Source toolkit implementing the Secure Sockets
|
||||||
Layer (SSL v2/v3) and Transport Security (TLS v1) as well as a
|
Layer (SSL v2/v3) and Transport Security (TLS v1) as well as a
|
||||||
full-strength general-purpose cryptography library.
|
full-strength general-purpose cryptography library.
|
||||||
|
|
||||||
http://www.openssl.org/
|
http://www.openssl.org/
|
||||||
|
@ -3,11 +3,11 @@ config BR2_PACKAGE_OPENVPN
|
|||||||
select BR2_PACKAGE_LZO
|
select BR2_PACKAGE_LZO
|
||||||
select BR2_PACKAGE_OPENSSL
|
select BR2_PACKAGE_OPENSSL
|
||||||
help
|
help
|
||||||
OpenVPN is a full-featured SSL VPN solution which can
|
OpenVPN is a full-featured SSL VPN solution which can
|
||||||
accomodate a wide range of configurations, including road
|
accomodate a wide range of configurations, including road
|
||||||
warrior access, home/office/campus telecommuting, WiFi
|
warrior access, home/office/campus telecommuting, WiFi
|
||||||
security, secure branch office linking, and enterprise-scale
|
security, secure branch office linking, and enterprise-scale
|
||||||
remote access solutions with load balancing, failover, and
|
remote access solutions with load balancing, failover, and
|
||||||
fine-grained access-controls.
|
fine-grained access-controls.
|
||||||
|
|
||||||
http://openvpn.sourceforge.net/
|
http://openvpn.sourceforge.net/
|
||||||
|
@ -16,4 +16,4 @@ config BR2_PACKAGE_OPROFILE
|
|||||||
statistics, which can also be used for basic time-spent
|
statistics, which can also be used for basic time-spent
|
||||||
profiling. All code is profiled: hardware and software
|
profiling. All code is profiled: hardware and software
|
||||||
interrupt handlers, kernel modules, the kernel, shared
|
interrupt handlers, kernel modules, the kernel, shared
|
||||||
libraries, and applications.
|
libraries, and applications.
|
||||||
|
@ -9,7 +9,7 @@ PANGO_SITE = http://ftp.gnome.org/pub/GNOME/sources/pango/1.19
|
|||||||
PANGO_AUTORECONF = YES
|
PANGO_AUTORECONF = YES
|
||||||
PANGO_INSTALL_STAGING = YES
|
PANGO_INSTALL_STAGING = YES
|
||||||
PANGO_INSTALL_TARGET = 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_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install
|
||||||
|
|
||||||
PANGO_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
|
PANGO_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \
|
||||||
@ -40,14 +40,14 @@ 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 \
|
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_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_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)
|
ifneq ($(BR2_PACKAGE_XSERVER_none),y)
|
||||||
PANGO_CONF_OPT_X = --with-x \
|
PANGO_CONF_OPT_X = --with-x \
|
||||||
--x-includes=$(STAGING_DIR)/usr/include/X11 \
|
--x-includes=$(STAGING_DIR)/usr/include/X11 \
|
||||||
--x-libraries=$(STAGING_DIR)/usr/lib --disable-glibtest
|
--x-libraries=$(STAGING_DIR)/usr/lib --disable-glibtest
|
||||||
else
|
else
|
||||||
PANGO_CONF_OPT_X = --without-x
|
PANGO_CONF_OPT_X = --without-x
|
||||||
endif
|
endif
|
||||||
|
|
||||||
PANGO_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
|
PANGO_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
|
||||||
@ -62,7 +62,7 @@ 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"
|
--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))
|
$(eval $(call AUTOTARGETS,package,pango))
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
config BR2_PACKAGE_PATCH
|
config BR2_PACKAGE_PATCH
|
||||||
bool "patch"
|
bool "patch"
|
||||||
help
|
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.
|
to original files, producing patched versions.
|
||||||
|
|
||||||
http://www.gnu.org/software/patch/
|
http://www.gnu.org/software/patch/
|
||||||
|
@ -12,7 +12,7 @@ config BR2_PACKAGE_PHP_CLI
|
|||||||
depends on BR2_PACKAGE_PHP
|
depends on BR2_PACKAGE_PHP
|
||||||
default y
|
default y
|
||||||
help
|
help
|
||||||
command line interface for php.
|
command line interface for php.
|
||||||
you must have at least cli or cgi selected.
|
you must have at least cli or cgi selected.
|
||||||
|
|
||||||
config BR2_PACKAGE_PHP_CGI
|
config BR2_PACKAGE_PHP_CGI
|
||||||
|
@ -33,7 +33,7 @@ ifneq ($(BR2_INET_IPV6),y)
|
|||||||
PHP_CONFIGURE+=--disable-ipv6
|
PHP_CONFIGURE+=--disable-ipv6
|
||||||
endif
|
endif
|
||||||
|
|
||||||
### Extensions
|
### Extensions
|
||||||
ifeq ($(BR2_PACKAGE_PHP_EXT_SOCKETS),y)
|
ifeq ($(BR2_PACKAGE_PHP_EXT_SOCKETS),y)
|
||||||
PHP_CONFIGURE+=--enable-sockets
|
PHP_CONFIGURE+=--enable-sockets
|
||||||
endif
|
endif
|
||||||
|
@ -8,7 +8,7 @@ POPT_SITE = http://rpm5.org/files/popt
|
|||||||
POPT_INSTALL_STAGING = YES
|
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) \
|
POPT_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(REAL_GNU_TARGET_NAME) \
|
||||||
|
@ -74,7 +74,7 @@ config BR2_PACKAGE_PYTHON_READLINE
|
|||||||
depends on BR2_PACKAGE_PYTHON
|
depends on BR2_PACKAGE_PYTHON
|
||||||
bool "readline"
|
bool "readline"
|
||||||
help
|
help
|
||||||
readline module for Python (required for command-line
|
readline module for Python (required for command-line
|
||||||
editing in the Python shell).
|
editing in the Python shell).
|
||||||
|
|
||||||
config BR2_PACKAGE_PYTHON_SSL
|
config BR2_PACKAGE_PYTHON_SSL
|
||||||
|
@ -83,7 +83,7 @@ config BR2_PACKAGE_QTOPIA4_QT3SUPPORT
|
|||||||
bool "Compatibility with Qt3"
|
bool "Compatibility with Qt3"
|
||||||
depends on BR2_PACKAGE_QTOPIA4
|
depends on BR2_PACKAGE_QTOPIA4
|
||||||
help
|
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.
|
library with proxy code and increase the space required on target.
|
||||||
If unsure say n.
|
If unsure say n.
|
||||||
|
|
||||||
@ -185,7 +185,7 @@ config BR2_PACKAGE_QTOPIA4_SYSTEMZLIB
|
|||||||
help
|
help
|
||||||
Use the shared zlib from the system.
|
Use the shared zlib from the system.
|
||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
choice
|
choice
|
||||||
prompt "freetype2 support"
|
prompt "freetype2 support"
|
||||||
depends on BR2_PACKAGE_QTOPIA4
|
depends on BR2_PACKAGE_QTOPIA4
|
||||||
|
@ -11,9 +11,9 @@ RUBIX_INSTALL_STAGING = NO
|
|||||||
RUBIX_INSTALL_TARGET = YES
|
RUBIX_INSTALL_TARGET = YES
|
||||||
RUBIX_INSTALL_TARGET_OPT = GAMESDIR=$(TARGET_DIR)/usr/games install
|
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))
|
$(eval $(call AUTOTARGETS,package,rubix))
|
||||||
|
|
||||||
|
@ -2,11 +2,11 @@ config BR2_PACKAGE_SCREEN
|
|||||||
bool "screen"
|
bool "screen"
|
||||||
select BR2_PACKAGE_NCURSES
|
select BR2_PACKAGE_NCURSES
|
||||||
help
|
help
|
||||||
Screen is a full-screen window manager that multiplexes a physical
|
Screen is a full-screen window manager that multiplexes a physical
|
||||||
terminal between several processes, typically interactive shells.
|
terminal between several processes, typically interactive shells.
|
||||||
Each virtual terminal provides the functions of the DEC VT100
|
Each virtual terminal provides the functions of the DEC VT100
|
||||||
terminal and, in addition, several control functions from the ANSI
|
terminal and, in addition, several control functions from the ANSI
|
||||||
X3.64 (ISO 6429) and ISO 2022 standards (e.g., insert/delete line
|
X3.64 (ISO 6429) and ISO 2022 standards (e.g., insert/delete line
|
||||||
and support for multiple character sets).
|
and support for multiple character sets).
|
||||||
|
|
||||||
http://www.gnu.org/software/screen/
|
http://www.gnu.org/software/screen/
|
||||||
|
@ -12,5 +12,5 @@ config BR2_PACKAGE_SPEEX_ARM5E
|
|||||||
default y
|
default y
|
||||||
depends on BR2_PACKAGE_SPEEX && BR2_arm
|
depends on BR2_PACKAGE_SPEEX && BR2_arm
|
||||||
help
|
help
|
||||||
Use the additional instructions available in the ARM5E
|
Use the additional instructions available in the ARM5E
|
||||||
or later cores.
|
or later cores.
|
||||||
|
@ -12,7 +12,7 @@ STARTUP_NOTIFICATION_INSTALL_TARGET = YES
|
|||||||
|
|
||||||
STARTUP_NOTIFICATION_CONF_ENV = lf_cv_sane_realloc=yes
|
STARTUP_NOTIFICATION_CONF_ENV = lf_cv_sane_realloc=yes
|
||||||
|
|
||||||
STARTUP_NOTIFICATION_DEPENDENCIES = uclibc
|
STARTUP_NOTIFICATION_DEPENDENCIES = uclibc
|
||||||
|
|
||||||
$(eval $(call AUTOTARGETS,package,startup-notification))
|
$(eval $(call AUTOTARGETS,package,startup-notification))
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@ config BR2_PACKAGE_STRACE
|
|||||||
bool "strace"
|
bool "strace"
|
||||||
help
|
help
|
||||||
A useful diagnostic, instructional, and debugging tool.
|
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.
|
while it is running.
|
||||||
|
|
||||||
http://sourceforge.net/projects/strace/
|
http://sourceforge.net/projects/strace/
|
||||||
|
@ -2,9 +2,9 @@ config BR2_PACKAGE_SYNERGY
|
|||||||
bool "synergy"
|
bool "synergy"
|
||||||
depends on BR2_PACKAGE_XORG7
|
depends on BR2_PACKAGE_XORG7
|
||||||
help
|
help
|
||||||
Synergy lets you easily share a single mouse and
|
Synergy lets you easily share a single mouse and
|
||||||
keyboard between multiple computers with different
|
keyboard between multiple computers with different
|
||||||
operating systems, each with its own display,
|
operating systems, each with its own display,
|
||||||
without special hardware.
|
without special hardware.
|
||||||
|
|
||||||
http://synergy2.sourceforge.net/
|
http://synergy2.sourceforge.net/
|
||||||
|
@ -12,7 +12,7 @@ SYNERGY_INSTALL_STAGING = NO
|
|||||||
SYNERGY_INSTALL_TARGET = YES
|
SYNERGY_INSTALL_TARGET = YES
|
||||||
|
|
||||||
SYNERGY_CONF_OPT = --target=$(GNU_TARGET_NAME) --host=$(GNU_TARGET_NAME) \
|
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)
|
SYNERGY_DEPENDENCIES = uclibc $(XSERVER)
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ config BR2_PACKAGE_TAR
|
|||||||
depends on BR2_USE_WCHAR
|
depends on BR2_USE_WCHAR
|
||||||
select BR2_UCLIBC_PROGRAM_INVOCATION
|
select BR2_UCLIBC_PROGRAM_INVOCATION
|
||||||
help
|
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.
|
archive, and can restore individual files from the archive.
|
||||||
|
|
||||||
http://www.gnu.org/software/tar/
|
http://www.gnu.org/software/tar/
|
||||||
|
@ -3,5 +3,5 @@ config BR2_PACKAGE_TINYHTTPD
|
|||||||
help
|
help
|
||||||
A relatively simple webserver written as a school project. It is
|
A relatively simple webserver written as a school project. It is
|
||||||
exceedingly simple, threaded and handles basic CGI scripts.
|
exceedingly simple, threaded and handles basic CGI scripts.
|
||||||
|
|
||||||
http://sourceforge.net/projects/tinyhttpd/
|
http://sourceforge.net/projects/tinyhttpd/
|
||||||
|
@ -28,7 +28,7 @@ $(TINYHTTPD_DIR)/.unpacked: $(DL_DIR)/$(TINYHTTPD_SOURCE)
|
|||||||
|
|
||||||
$(TINYHTTPD_DIR)/$(TINYHTTPD_BINARY): $(TINYHTTPD_DIR)/.unpacked
|
$(TINYHTTPD_DIR)/$(TINYHTTPD_BINARY): $(TINYHTTPD_DIR)/.unpacked
|
||||||
$(TARGET_CONFIGURE_OPTS) CFLAGS="$(TARGET_CFLAGS)" LDFLAGS="$(TARGET_LDFLAGS)" $(MAKE) -C $(TINYHTTPD_DIR)
|
$(TARGET_CONFIGURE_OPTS) CFLAGS="$(TARGET_CFLAGS)" LDFLAGS="$(TARGET_LDFLAGS)" $(MAKE) -C $(TINYHTTPD_DIR)
|
||||||
|
|
||||||
$(TARGET_DIR)/$(TINYHTTPD_TARGET_BINARY): $(TINYHTTPD_DIR)/$(TINYHTTPD_BINARY)
|
$(TARGET_DIR)/$(TINYHTTPD_TARGET_BINARY): $(TINYHTTPD_DIR)/$(TINYHTTPD_BINARY)
|
||||||
$(INSTALL) -m 0755 $(TINYHTTPD_DIR)/$(TINYHTTPD_BINARY) $(TARGET_DIR)/$(TINYHTTPD_TARGET_BINARY)
|
$(INSTALL) -m 0755 $(TINYHTTPD_DIR)/$(TINYHTTPD_BINARY) $(TARGET_DIR)/$(TINYHTTPD_TARGET_BINARY)
|
||||||
$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/$(TINYHTTPD_TARGET_BINARY)
|
$(STRIPCMD) $(STRIP_STRIP_UNNEEDED) $(TARGET_DIR)/$(TINYHTTPD_TARGET_BINARY)
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
config BR2_PACKAGE_TINYLOGIN
|
config BR2_PACKAGE_TINYLOGIN
|
||||||
bool "tinylogin"
|
bool "tinylogin"
|
||||||
help
|
help
|
||||||
Suite of tiny Unix utilities for handling logging into,
|
Suite of tiny Unix utilities for handling logging into,
|
||||||
being authenticated by, changing one's password for, and
|
being authenticated by, changing one's password for, and
|
||||||
otherwise maintaining users and groups on an embedded system.
|
otherwise maintaining users and groups on an embedded system.
|
||||||
|
|
||||||
http://tinylogin.busybox.net/
|
http://tinylogin.busybox.net/
|
||||||
|
@ -12,7 +12,7 @@ TORSMO_INSTALL_TARGET = YES
|
|||||||
|
|
||||||
TORSMO_CONF_OPT = --x-includes="-I$(STAGING_DIR)/usr/include/X11" --x-libraries="-I$(STAGING_DIR)/usr/lib" --with-x
|
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))
|
$(eval $(call AUTOTARGETS,package,torsmo))
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
config BR2_PACKAGE_UDHCP
|
config BR2_PACKAGE_UDHCP
|
||||||
bool "udhcp"
|
bool "udhcp"
|
||||||
help
|
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.
|
fully functional, RFC compliant, and really tiny.
|
||||||
|
|
||||||
http://udhcp.busybox.net/
|
http://udhcp.busybox.net/
|
||||||
|
@ -12,7 +12,7 @@ VICE_INSTALL_TARGET = YES
|
|||||||
|
|
||||||
VICE_CONF_OPT = --without-resid --with-alsa CFLAGS="-O0"
|
VICE_CONF_OPT = --without-resid --with-alsa CFLAGS="-O0"
|
||||||
|
|
||||||
VICE_DEPENDENCIES = uclibc
|
VICE_DEPENDENCIES = uclibc
|
||||||
|
|
||||||
$(eval $(call AUTOTARGETS,package,vice))
|
$(eval $(call AUTOTARGETS,package,vice))
|
||||||
|
|
||||||
|
@ -10,9 +10,9 @@ VLC_AUTORECONF = NO
|
|||||||
VLC_INSTALL_STAGING = NO
|
VLC_INSTALL_STAGING = NO
|
||||||
VLC_INSTALL_TARGET = YES
|
VLC_INSTALL_TARGET = YES
|
||||||
|
|
||||||
VLC_CONF_OPT =
|
VLC_CONF_OPT =
|
||||||
|
|
||||||
VLC_DEPENDENCIES = uclibc
|
VLC_DEPENDENCIES = uclibc
|
||||||
|
|
||||||
$(eval $(call AUTOTARGETS,package,vlc))
|
$(eval $(call AUTOTARGETS,package,vlc))
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ config BR2_PACKAGE_VTUN
|
|||||||
select BR2_PACKAGE_LZO
|
select BR2_PACKAGE_LZO
|
||||||
select BR2_PACKAGE_OPENSSL
|
select BR2_PACKAGE_OPENSSL
|
||||||
help
|
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.
|
with traffic shaping, compression, and encryption.
|
||||||
|
|
||||||
It supports IP, PPP, SLIP, Ethernet and other tunnel types.
|
It supports IP, PPP, SLIP, Ethernet and other tunnel types.
|
||||||
|
@ -2,12 +2,12 @@ config BR2_PACKAGE_WEBKIT
|
|||||||
bool "webkit"
|
bool "webkit"
|
||||||
select BR2_PACKAGE_LIBGTK2
|
select BR2_PACKAGE_LIBGTK2
|
||||||
select BR2_PACKAGE_ICU
|
select BR2_PACKAGE_ICU
|
||||||
select BR2_PACKAGE_CURL
|
select BR2_PACKAGE_CURL
|
||||||
select BR2_PACKAGE_LIBXML2
|
select BR2_PACKAGE_LIBXML2
|
||||||
select BR2_PACKAGE_LIBXSLT
|
select BR2_PACKAGE_LIBXSLT
|
||||||
select BR2_PACKAGE_SQLITE
|
select BR2_PACKAGE_SQLITE
|
||||||
help
|
help
|
||||||
WebKit is an open source, standards compliant web browser engine.
|
WebKit is an open source, standards compliant web browser engine.
|
||||||
|
|
||||||
http://webkit.org/
|
http://webkit.org/
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user