summaryrefslogtreecommitdiffstats
path: root/package/modutils
Commit message (Collapse)AuthorAgeFilesLines
* buildroot: silence ./configure step when building with 'make -s'Peter Korsgaard2009-10-011-2/+2
| | | | | | | | | | We have been passing -q to ./configure when using 'make -s' for packages using Makefile.autotools.in for some time. Do the same for packages using autotools, but not using the Makefile.autotools.in infrastructure, taking care to not do it for packages with hand written configure scripts. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* rename TOOL_BUILD_DIR to TOOLCHAIN_DIRMichael Roth2009-09-231-2/+2
| | | | | | | | To reflect the new output directory hierachy rename the Makefile variable TOOL_BUILD_DIR to TOOLCHAIN_DIR. Signed-off-by: Michael Roth <mroth@nessie.de> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: Remove unnecessary dependencies on uclibc.Will Newton2009-09-031-2/+2
| | | | | | | | A C library will have been built by the toolchain makefiles, so there is no need for packages to explicitly depend on uclibc. Signed-off-by: Will Newton <will.newton@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Deprecate modutils, only for ancient 2.4 kernelsUlf Samuelsson2009-01-261-0/+1
|
* package/: convert to DOWNLOAD helperPeter Korsgaard2009-01-161-1/+1
|
* package/: get rid of unneeded $(strip ..)Peter Korsgaard2008-12-081-3/+3
|
* buildroot: remove trailing spacesPeter Korsgaard2008-08-041-3/+3
| | | | | | | 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.
* buildroot: s/depends/depends on/Peter Korsgaard2008-06-191-1/+1
| | | | | The new kconfig is more strict regarding depends/depends on, so fixup the tree.
* buildroot: use BR2_KERNEL_MIRROR everywherePeter Korsgaard2008-03-111-1/+1
| | | | Based on patch by Nigel Kukard.
* - just use the strip binary to avoid confusing libtool (quotes)Bernhard Reutner-Fischer2007-10-011-1/+1
| | | | - use $(STRIPCMD) in packages to avoid clashes with $(STRIP)
* - make sure that configure doesn't see a wrong cacheBernhard Reutner-Fischer2007-09-251-1/+1
|
* - misc cleanups (Cristian Ionescu-Idbohrn)Bernhard Reutner-Fischer2007-08-281-5/+5
|
* - fixup whitespace damage after ulfBernhard Reutner-Fischer2007-08-211-10/+8
|
* - sed -i -e "/;$/s/;$//g" $(egrep ";$" package/* package/*/*.mk toolchain/* ↵Bernhard Reutner-Fischer2007-08-211-3/+3
| | | | toolchain/*/*.mk */Makefile.in -l)
* SED away some whitespaceUlf Samuelsson2007-08-201-1/+1
|
* Install modutils first to STAGING_DIR, then copy to TARGET_DIRUlf Samuelsson2007-07-311-10/+30
|
* Use <package>_VERSION in all <package>.mk instead of <package>_VERUlf Samuelsson2007-07-111-3/+4
|
* - add endian handling, mmap, memcmp checks to TARGET_CONFIGURE_ARGSBernhard Reutner-Fischer2007-06-271-2/+1
| | | | - use TARGET_CONFIGURE_ARGS where appropriate.
* fixup package LDFLAGS handlingEric Andersen2007-03-131-0/+2
|
* update pathsEric Andersen2006-12-131-4/+5
|
* - add and use BR2_BZCAT config option.Bernhard Reutner-Fischer2006-11-171-2/+3
|
* use http for kernel.orgEric Andersen2006-10-091-1/+1
|
* yet another fix for yet another cross depmod endianness problemEric Andersen2006-07-131-0/+21
|
* change things so menuconfig wont complain about circular depsEric Andersen2006-07-101-1/+1
|
* prevent up circular deps by preventing both from being enabled concurrentlyEric Andersen2006-07-092-2/+7
|
* update some missing bits for cross depmodEric Andersen2006-03-221-19/+93
|
* After some effort, I have taught depmod to handle endianness,Eric Andersen2005-09-302-0/+453
| | | | | | allowing us to build a cross-depmod that runs on the host and generates the target modules.dep and modules.*map files -Erik
* After some effort, I have taught depmod to handle endianness,Eric Andersen2005-09-301-16/+71
| | | | | | allowing us to build a cross-depmod that runs on the host and generates the target modules.dep and modules.*map files -Erik
* Changes to allow compilation with GCC-4.1.0."Steven J. Hill"2005-08-181-4/+78
|
* http://bugs.uclibc.org/view.php?id=178Eric Andersen2005-06-093-0/+98
This patch provides modutils and module-init-tools. I know busybox can load modules, but modinfo may also be very useful for kernel/driver debugging purposes. I have managed binaries concurrency between modutils and module-init-tools, but I'm not sure this is the best way to do it... Thanks for your work.