summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* uclibc: Fix for improper copying of kernel headersWill Wagner2010-04-032-39/+1
| | | | | | | | Closes #1219 Signed-off-by: Will Wagner <will_wagner@carallon.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target/linux: bump 2.6.{27, 31, 32, 33} stable versionsH Hartley Sweeten2010-04-032-10/+10
| | | | | | | | Now that the kernel-headers are bumped, also bump the linux targets to match. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: bump versionFrederik Vannoote2010-04-028-75/+138
| | | | | | | | qt 4.6.x has a number of new configure options, and needs a patch to work on uClibc. Signed-off-by: Frederik Vannoote <frederik.vannoote@barco.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Add missing directories to Busybox skeletonPaulius Zaleckas2010-04-022-0/+0
| | | | | Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Remove ConfigFS from Busybox skeletonPaulius Zaleckas2010-04-022-1/+0
| | | | | | | | | It is not included in generic skeleton and very unlikely that someone will use it on embedded devices. AFAIK even Fedora does not include it in fstab. Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* radvd: needs host-flexPeter Korsgaard2010-04-022-2/+3
| | | | | | Closes #1369 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* u-boot: add 2010.03, adapt target mkimage step to work with 2010.03Peter Korsgaard2010-04-022-2/+7
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* logrotate: use standard wchar commentPeter Korsgaard2010-04-021-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* findutils: show comment if wchar isn't enabledPeter Korsgaard2010-04-021-0/+3
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* graphics: remove comment about fbset broken in busybox, sort orderPeter Korsgaard2010-04-021-5/+4
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: indent sub optionsPeter Korsgaard2010-04-021-10/+11
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* New package menu structureGustavo Zacarias2010-04-022-277/+323
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* kernel-headers: bump 2.6.{27,31,32,33} stable versionsPeter Korsgaard2010-04-023-4/+4
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* dnsmasq: fix CFLAGSGustavo Zacarias2010-04-012-4/+5
| | | | | | | | | Closes #1459 dnsmasq takes CFLAGS on make opt rather than env. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iw: needs host-pkg-configGustavo Zacarias2010-04-011-1/+1
| | | | | | | Closes #1459 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xlib_libX11: don't build documentationPeter Korsgaard2010-03-312-2/+9
| | | | | | | | | | | Closes #1387 The documentation step needs working groff and ps2pdf on the host, and only slows down the build, so just disable it. At the same time, cleanup the overlong _CONF_OPT line. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Config.in: bump default JLEVEL to 2Peter Korsgaard2010-03-311-1/+1
| | | | | | | | | | With multicores everywhere, 2 is probably a bit low - But atleast it's better than the current default. This extra parallelism also ensures we get to test the make dependencies a bit more. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* e2fsprogs: bump versionGustavo Zacarias2010-03-312-1/+2
| | | | | | | Closes #1423 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iptables: bump versionGustavo Zacarias2010-03-312-3/+4
| | | | | | | Closes #1417 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* openssl: bump versionGustavo Zacarias2010-03-316-109/+4
| | | | | | | Closes #1411 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* toolchain: prepare for more than two alternativesYann E. MORIN2010-03-313-10/+9
| | | | | | | | | | | | | | | | | | | | | | | | | Lay down the path to add more than two toolchain kinds: - check the type of toolchain as: ifeq (toolchain_buildroot,y) blabla buildroot-specific else ifeq (toolchain_external,y) blabla external-specific endif - prefer using positive checks, a-la: ifeq (foo,y) instead of: ifneq (bar,y) (where foo and bar are mutually exclusive) - have the toolchain_buildroot case always appear first - gettext is handled differently, because we want to add an option only if not using the buildroot toolchain, hence we use ifneq. Signed-off-by: Yann E. MORIN <yann.morin.1998@anciens.enib.fr> Acked-By: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* external toolchain: fix sysroot location if the toolchain was movedYann E. MORIN2010-03-311-1/+8
| | | | | | | | | Sysrooted toolchain can be relocated. In this case, the sysroot is no longer located at the place it was configured at. Signed-off-by: Yann E. MORIN <yann.morin.1998@anciens.enib.fr> Acked-By: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* php: bump versionGustavo Zacarias2010-03-312-3/+4
| | | | | | | | Closes #1429 [Peter: stick to bz2 upstream] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* CHANGES: add #1327Peter Korsgaard2010-03-311-0/+1
| | | | | | Got fixed by d5bf5f967009733. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Fix autotools instalation with symbolsPaulius Zaleckas2010-03-302-1/+2
| | | | | | | | | | | | | | | Closes #1447 When installing without symbols install-strip is used, with symbols - install-exec. Since install-exec installs only executables, we should use simple install, to install other needed files also (like files in /usr/shared) as install-strip does. Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Acked-by: Lionel Landwerlin <llandwerlin@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* get rid of broken nios2 supportPeter Korsgaard2010-03-3015-8073/+23
| | | | | | | Has been marked as broken for more than 1 year, with no indication that anyone cares, and it needs a bunch of special handling. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* binutils: simplify BINUTILS_SITE selectionPeter Korsgaard2010-03-301-19/+2
| | | | | | All versions are available on gnu.org. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* binutils: get rid of ancient 2.18.50.0.9 development versionPeter Korsgaard2010-03-306-185/+0
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* binutils: default to 2.20.1, mark 2.19.1 as deprecatedPeter Korsgaard2010-03-301-2/+3
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* binutils: add 2.20.1Gustavo Zacarias2010-03-307-1/+121
| | | | | | | | Closes #1441 [Peter: use gnu.org upstream] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* classpath: trivial Config.in whitespace fixPeter Korsgaard2010-03-301-1/+0
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libxml2: bump versionPeter Korsgaard2010-03-292-4/+4
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libgcrypt: bump to 1.4.5Lionel Landwerlin2010-03-294-98/+46
| | | | | | | | | Also autotools.in conversion and change source location from gd.tuwien.ac.at to ftp.gnupg.org [Peter: add missing libgpg-error makefile dependency] Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* xlib_libXfont: don't build devel documentationPeter Korsgaard2010-03-292-2/+3
| | | | | | Adds to the build time and brings in an xmlto dependency Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: bump 1.16.x stable versionPeter Korsgaard2010-03-2917-2256/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Add new netperf packageGustavo Zacarias2010-03-254-1/+34
| | | | | | | Closes #1105 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Bump less to 436 and migrate to Makefile.autotools.inGustavo Zacarias2010-03-252-52/+14
| | | | | | | | | Closes #1123 [Peter: get rid of redundant DISABLE_LARGEFILE] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Bump nano to 2.2.3 and migrate to Makefile.autotools.inGustavo Zacarias2010-03-253-51/+17
| | | | | | | | | Closes #1117 [Peter: get rid of redundant DISABLE_LARGEFILE, trailing spaces] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* squid: don't use susv3 legacy functionsPeter Korsgaard2010-03-241-0/+49
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* New package squid 3.0.STABLE21Gustavo Zacarias2010-03-245-1/+79
| | | | | | | Closes #513 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Add lmbenchKelvin Cheung2010-03-234-1/+57
| | | | | | | Closes #661 Signed-off-by: Kelvin Cheung <keguang.zhang@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* freetype: bump to 2.3.12William Wagner2010-03-222-4/+4
| | | | | Signed-off-by: William Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mdadm: update to 2.6.9Richard van Paasen2010-03-226-80/+34
| | | | | | | | | Closes #805 This patch updates mdadm to 2.6.9 and uses the new makefile template. Signed-off-by: Richard van Paasen <rvpaasen@t3i.nl> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: add librsyncChris Seawood2010-03-224-0/+30
| | | | | | | | | Closes #1303 [Peter: misc tweaks (whitespace, kconfig, sf.net URL)] Signed-off-by: Chris Seawood <cls@seawood.org> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: additional 1.16.0 fixesPeter Korsgaard2010-03-223-0/+113
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* wget: needs WCHAR support in toolchainPeter Korsgaard2010-03-221-0/+4
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: remove redundant DISABLE_{IPV6,NLS,LARGEFILE} configure argsPeter Korsgaard2010-03-2214-28/+9
| | | | | | | Makefile.autotools.in automatically adds these to the configure invocation, so there's no need to explicitly list them. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iperf: update to 2.0.4Richard van Paasen2010-03-222-6/+17
| | | | | | | Closes #800 Signed-off-by: Richard van Paasen <rvpaasen@t3i.nl> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* memstat: bump to 0.8 and migrate to Makefile.package.inGustavo Zacarias2010-03-222-46/+24
| | | | | | | Closes #1129 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* wget: bump to 1.12 and migrate to Makefile.autotools.inGustavo Zacarias2010-03-223-55/+12
| | | | | | | Closes #1111. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>