summaryrefslogtreecommitdiff
path: root/package/modutils
AgeCommit message (Collapse)Author
2010-06-05modutils: remove packageGustavo Zacarias
It's for ancient 2.4 kernels, and busybox has a modutils applet. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-10-01buildroot: silence ./configure step when building with 'make -s'Peter Korsgaard
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>
2009-09-23rename TOOL_BUILD_DIR to TOOLCHAIN_DIRMichael Roth
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>
2009-09-03package: Remove unnecessary dependencies on uclibc.Will Newton
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>
2009-01-26Deprecate modutils, only for ancient 2.4 kernelsUlf Samuelsson
2009-01-16package/: convert to DOWNLOAD helperPeter Korsgaard
2008-12-08package/: get rid of unneeded $(strip ..)Peter Korsgaard
2008-08-04buildroot: remove trailing spacesPeter Korsgaard
for i in `find -name 'Config*' -o -name 'Makefile*' -o -name '*.mk'`; do sed -i 's/ \+$//' $i; done
2008-07-17Kconfig: remove 'default n'Peter Korsgaard
'default n' is the default, so there's no need to say it explicitly.
2008-06-19buildroot: s/depends/depends on/Peter Korsgaard
The new kconfig is more strict regarding depends/depends on, so fixup the tree.
2008-03-11buildroot: use BR2_KERNEL_MIRROR everywherePeter Korsgaard
Based on patch by Nigel Kukard.
2007-10-01- just use the strip binary to avoid confusing libtool (quotes)Bernhard Reutner-Fischer
- use $(STRIPCMD) in packages to avoid clashes with $(STRIP)
2007-09-25- make sure that configure doesn't see a wrong cacheBernhard Reutner-Fischer
2007-08-28- misc cleanups (Cristian Ionescu-Idbohrn)Bernhard Reutner-Fischer
2007-08-21- fixup whitespace damage after ulfBernhard Reutner-Fischer
2007-08-21- sed -i -e "/;$/s/;$//g" $(egrep ";$" package/* package/*/*.mk toolchain/* ↵Bernhard Reutner-Fischer
toolchain/*/*.mk */Makefile.in -l)
2007-08-20SED away some whitespaceUlf Samuelsson
2007-07-31Install modutils first to STAGING_DIR, then copy to TARGET_DIRUlf Samuelsson
2007-07-11Use <package>_VERSION in all <package>.mk instead of <package>_VERUlf Samuelsson
2007-06-27- add endian handling, mmap, memcmp checks to TARGET_CONFIGURE_ARGSBernhard Reutner-Fischer
- use TARGET_CONFIGURE_ARGS where appropriate.
2007-03-13fixup package LDFLAGS handlingEric Andersen
2006-12-13update pathsEric Andersen
2006-11-17- add and use BR2_BZCAT config option.Bernhard Reutner-Fischer
2006-10-09use http for kernel.orgEric Andersen
2006-07-13yet another fix for yet another cross depmod endianness problemEric Andersen
2006-07-10change things so menuconfig wont complain about circular depsEric Andersen
2006-07-09prevent up circular deps by preventing both from being enabled concurrentlyEric Andersen
2006-03-22update some missing bits for cross depmodEric Andersen
2005-09-30After some effort, I have taught depmod to handle endianness,Eric Andersen
allowing us to build a cross-depmod that runs on the host and generates the target modules.dep and modules.*map files -Erik
2005-09-30After some effort, I have taught depmod to handle endianness,Eric Andersen
allowing us to build a cross-depmod that runs on the host and generates the target modules.dep and modules.*map files -Erik
2005-08-18Changes to allow compilation with GCC-4.1.0."Steven J. Hill"
2005-06-09http://bugs.uclibc.org/view.php?id=178Eric Andersen
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.