summaryrefslogtreecommitdiffstats
path: root/package/iproute2
Commit message (Collapse)AuthorAgeFilesLines
* Normalize separator size to 80Alexandre Belloni2013-06-061-2/+2
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: add missing host-flex dependencyThomas Petazzoni2013-03-241-1/+1
| | | | | | | | Fixes http://autobuild.buildroot.org/results/0931e622a0e80fc7321f0e26c96ae4607eaadd00/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: add dependency on host-bisonThomas Petazzoni2013-03-241-2/+5
| | | | | | | | | iproute2 requires bison, so we add the necessary dependency. In addition, in order for iproute2 to find bison, we need to pass $(TARGET_MAKE_ENV). Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: needs mmuGustavo Zacarias2013-03-191-0/+1
| | | | | | | | Fixes http://autobuild.buildroot.net/results/08beca1cae9dc55b2f770a01ad95bcbe56594300/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: bump to version 3.7.0Gustavo Zacarias2012-12-121-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: fix em_ipset build issuePeter Korsgaard2012-11-031-0/+5
| | | | | | | | | Fixes http://autobuild.buildroot.net/results/be19e39c19b62946ea48dd6b3dfd55f5c3ccd7c9 em_ipset.c uses xtables.h from iptables, but the configure script fails to to check for this, so forcibly disable it if not available. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: fix build with toolchains providing setns(2)Peter Korsgaard2012-11-031-0/+2
| | | | | | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/b2f28621bc9d6048057c406048b3f7d665cef165 ipnetns.c contains a replacement setns implementation, which is used if the toolchain doesn't provide any (HAVE_SETNS not set). We don't have any knowledge of toolchain setns support on buildroot level, but the (handwritten) configure script contains a test for it, so run the configure script before building. The configure script isn't written for cross compilation, so it needs to be massaged slightly to use the cross compiler / flags. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: bump to version 3.6.0Gustavo Zacarias2012-10-041-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: bump to version 3.5.1Gustavo Zacarias2012-09-091-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: bump to version 3.5.0Gustavo Zacarias2012-08-171-1/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* all packages: rename XXXTARGETS to xxx-packageArnout Vandecappelle (Essensium/Mind)2012-07-171-1/+1
| | | | | | | | | | | | | Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* iproute2: bump versionPeter Korsgaard2012-05-221-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: bump to version 3.3.0Gustavo Zacarias2012-04-301-3/+1
| | | | | | | | | Bump to version 3.3.0 We now need to keep builtin headers since it's using very modern defines which aren't yet mainstream in glibc or uClibc. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: bump to version 3.1.0Gustavo Zacarias2011-12-072-41/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: remove useless arguments from GENTARGETSThomas Petazzoni2011-09-291-1/+1
| | | | | | | | | | Thanks to the pkgparentdir and pkgname functions, we can rewrite the GENTARGETS macro in a way that avoids the need for each package to repeat its name and the directory in which it is present. [Peter: pkgdir->pkgparentdir] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: fixup CCOPTS to unbreak buildGustavo Zacarias2011-07-241-0/+1
| | | | | | | | | CCOPTS is also used for HOSTCC in the netem/ directory which contains host tools so just ditch it there to avoid extra non-native optimizations to sweep by. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: ensure TARGET_CFLAGS are usedPeter Korsgaard2011-07-211-2/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: bump to version 2.6.39Gustavo Zacarias2011-07-212-2/+40
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: bump to version 2.6.38Gustavo Zacarias2011-04-202-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: fix build on configs without ipv6 supportPeter Korsgaard2011-01-302-4/+94
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: ensure it gets built after busybox if both enabledPeter Korsgaard2011-01-281-0/+6
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute2: bump to version 2.6.37 + fixesGustavo Zacarias2011-01-111-3/+13
| | | | | | | | | Bump to version 2.6.37 Add iptables support when it's available. ATM support requires linux-atm for which we don't have a package yet. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iproute: bump version and convert to gentargetsGustavo Zacarias2010-09-252-55/+37
| | | | | | | | Convert iproute2 to gentargets and bump to version 2.6.35. [Peter: Small fixes to uninstall] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Update all packages to quote $(TARGET_CC)Thomas Petazzoni2010-07-071-1/+1
| | | | | | | Now that TARGET_CC contains several space-separated words, it must be used quoted everywhere. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* iproute2: needs ipv6Peter Korsgaard2009-03-041-0/+4
|
* iproute: fix makefilePeter Korsgaard2009-03-041-12/+13
| | | | | | | | | | | Patch by Olaf Rempel <razzor@kopf-tisch.de>. - bump version to 2.6.28 - fix download - change compile ordering (build tc after ip) - remove both binaries from target when cleaning up [Peter: fixed target install strip]
* package/: convert to DOWNLOAD helperPeter Korsgaard2009-01-161-1/+1
|
* package/: get rid of unneeded $(strip ..)Peter Korsgaard2008-12-081-1/+1
|
* buildroot: remove trailing spacesPeter Korsgaard2008-08-041-1/+1
| | | | | | | for i in `find -name 'Config*' -o -name 'Makefile*' -o -name '*.mk'`; do sed -i 's/ \+$//' $i; done
* Kconfig: remove 'default n'Peter Korsgaard2008-07-171-1/+0
| | | | 'default n' is the default, so there's no need to say it explicitly.
* Use <package>_VERSION in all <package>.mk instead of <package>_VERUlf Samuelsson2007-07-111-3/+3
|
* - add missing package-source targetsBernhard Reutner-Fischer2007-01-031-0/+2
| | | | - add missing dependencies to build prerequisites in the config system
* - bump versionBernhard Reutner-Fischer2006-11-221-2/+2
|
* - use $(ZCAT) as configured by the user instead of hardcoded 'zcat' that may ↵Bernhard Reutner-Fischer2006-10-011-1/+1
| | | | | | not exist; Closes #971 Silly, unchecked sed -i -e "/[^b]zcat/s/zcat/\$\(ZCAT\)/g" $(svngrep "[^b]zcat" * -rl | grep -v Config.in)
* - update from 2.6.9-ss040831 to 2.6.14-051107Bernhard Reutner-Fischer2006-01-031-3/+3
|
* remove extra space after touchMike Frysinger2005-11-241-1/+1
|
* There is no need to have a separate 'Makefile.in' file in theEric Andersen2005-02-102-3/+8
| | | | | general case, therefore, combine the toplevel Makefile options such as setting TARGETS into the per-package *.mk file
* Apply patch from nawawi: http://bugs.uclibc.org/view.php?id=57Eric Andersen2005-01-231-1/+2
|
* add help textMike Frysinger2004-11-111-4/+4
|
* Kristian Hoffmann:Mike Frysinger2004-10-141-1/+1
| | | | | | Attached is a (trivial) patch to fix a reference to an undefined variable 'IPROUTE2_SOURCE_URL' that prevents the source from being downloaded correctly.
* Make the TAR_VERBOSITY option a bit more saneEric Andersen2004-10-091-1/+1
|
* use $(TAR_VERBOSITY)Mike Frysinger2004-10-091-1/+1
|
* make sure iproute2 uses target cflagsMike Frysinger2004-10-091-1/+2
|
* final step in buildroot faceliftEric Andersen2004-10-092-0/+11
|
* Remove the old 'make' directory, and populate the new 'package'Eric Andersen2004-10-091-0/+47
directory.