summaryrefslogtreecommitdiff
path: root/package/util-linux
AgeCommit message (Collapse)Author
2012-01-31util-linux: add host variant for host-lttng-babeltraceThomas Petazzoni
lttng-babeltrace needs libuuid, which is provided by util-linux, and since we want to build lttng-babeltrace for the host, we need to build libuuid for the host. It's a shame that libuuid is part of such a big package as util-linux. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-11-08util-linux: fix partx build breakageGustavo Zacarias
addpart, delpart and partx are enabled by default so --disable now to avoid build breaking when we lack libblkid. Also select libblkid when it's enabled now. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-09-29package: remove useless arguments from AUTOTARGETSThomas Petazzoni
Thanks to the pkgparentdir and pkgname functions, we can rewrite the AUTOTARGETS 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>
2011-09-05util-linux: bump versionPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-08-12util-linux: fix install when locales are enabledPeter Korsgaard
util-linux uses mkinstalldirs to install .po files when locales are enabled, but the definition of MKINSTALLDIRS comes from a tweaked nls.m4 (based on the one from gettext). When we autoreconf the package, we end up using the system (staging) version of nls.m4, so MKINSTALLDIRS doesn't get defined. Fix it by passing a definition of MKINSTALLDIRS to make during the install steps. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-08-09util-linux: fix libintl linking if presentPeter Korsgaard
The configure script correctly detects presence of libintl, but it forgets to link against it, breaking the build. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-08-08util-linux: fix BR2_PACKAGE_UTIL_LINUX_UUIDD optionSven Neumann
Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-07-29util-linux: add option for libmountPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-07-29util-linux: mount/fsck needs libblkidPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-07-29util-linux: drop BR2_PACKAGE_BUSYBOX_SHOW_OTHERS dependencyPeter Korsgaard
Drop the dependency as it isn't really nice that other packages need to select it, and kconf complains about it: warning: (BR2_PACKAGE_E2FSPROGS && BR2_PACKAGE_USBMOUNT) selects BR2_PACKAGE_BUSYBOX_SHOW_OTHERS which has unmet direct dependencies (!BR2_PACKAGE_BUSYBOX) Instead ensure that only the libraries are built by default, so busybox applets are still used unless explicitly configured. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-07-29util-linux: install to stagingPeter Korsgaard
For libblkid / libuuid. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-07-28util-linux: libblkid needs liibuuidPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-07-28util-linux: fix sub option typosPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-07-27uClibc: drop BR2_PROGRAM_INVOCATION optionPeter Korsgaard
Remove the BR option and enable the configuration setting in the uClibc defconfigs. The BR2_PROGRAM_INVOCATION option only adds very little overhead to uClibc, and we have a number of packages needing it, so simply always enable it - Simplifying the kconfig logic and the number of choices users have to make. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-07-27util-linux: misc fixesPeter Korsgaard
- We patch configure.ac, so we need to autoreconf - configure uses pkg-config, so ensure the cross version is used. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-07-27util-linux: convert to autotarget and bump to 2.19.1Yegor Yefremov
[Peter: fix deps, restructure, add unshare] Signed-off-by: Chih-Min Chao <cmchao@gmail.com> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-08-10Add dependency from util-linux on ncursesThomas Petazzoni
util-linux can build without ncurses, but when ncurses is available, additional features can be built (such as the more command). Therefore, in util-linux.mk, when ncurses is available, mark it as a dependency. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-08-10Fix util-linux build on MIPSThomas Petazzoni
As reported in bug #635, util-linux doesn't build due to missing constant definitions related to the a.out binary format. We fix this by hardcoding these constant definitions, as done in newer versions of util-linux. Obviously, the long term fix is to upgrade to util-linux-ng, but this is probably not acceptable for 2010.08. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-07-07Update all packages to quote $(TARGET_CC)Thomas Petazzoni
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>
2010-05-24Update packages to BR2_NEEDS_GETTEXT_IF_LOCALEThomas Petazzoni
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-05-20Make all package using gettext rely on BR2_NEEDS_GETTEXTThomas Petazzoni
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-10-30util-linux: fix kconfig typoPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-10-05util-linux: needs RPC support in toolchainPeter Korsgaard
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-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-08-31util-linux: use := instead of = to stop recursion2009.08Peter Korsgaard
Unbreaks util-linux together with busybox Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-08-30util-linux: fix build with locale in toolchainPeter Korsgaard
Closes #529. util-linux needs to link with libintl when locale support is available / requested in the toolchain, similar to how it is done for avahi. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-08-30util-linux: fix libblkid detectionPeter Korsgaard
We don't have libblkid in BR, so make sure the configure script doesn't detect it if it is installed on the host. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-03-26util-linux: fix download URLPeter Korsgaard
2009-03-03util-linux: bump versionPeter Korsgaard
Fixes #19
2009-01-16package/: convert to DOWNLOAD helperPeter Korsgaard
2008-12-08package/: get rid of unneeded $(strip ..)Peter Korsgaard
2008-07-17Kconfig: remove 'default n'Peter Korsgaard
'default n' is the default, so there's no need to say it explicitly.
2007-12-17Add support for GNU and kernel.org mirrorsIvan Kuten
2007-08-22- global whitespace trimmingBernhard Reutner-Fischer
2007-08-21- sed -i -e "/;$/s/;$//g" $(egrep ";$" package/* package/*/*.mk toolchain/* ↵Bernhard Reutner-Fischer
toolchain/*/*.mk */Makefile.in -l)
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-14yet more LDFLAGS handling fixupsEric Andersen
2007-03-13fixup package LDFLAGS handlingEric Andersen
2007-01-14fixup a whole steaming pile of insanity. When packages are configured,Eric Andersen
they should be configured with --prefix=/usr and we then need to use make DESTDIR=$(STAGING_DIR) install to get things installed into the staging directory. The current situation for many packages, which use --prefix=$(STAGING_DIR) results in the staging_dir paths getting compiled into the binary itself. This also adds in a pile of libtool fixups. Between broken pkgconfig, broken libtool handling, and broken --prefix settings, its a wonder things have worked as well as they have up till now. -Erik
2006-12-05Patch the entire source tree up to get rid of deprecated and obsolete ↵"Steven J. Hill"
functions. Submitted new patch to maintainer.
2006-12-05Patch packages to remove legacy and deprecated functions. All of these ↵"Steven J. Hill"
patches have been sent upstream to the various maintainers.
2006-11-17- add and use BR2_BZCAT config option.Bernhard Reutner-Fischer
2005-12-29version bump to 2.12r and remove old dead targetMike Frysinger
2005-10-04This patch is necessary in order to build with gcc-4.1 compilers. Otherwise, ↵"Steven J. Hill"
you will get the error message of 'fsck.cramfs.c:98: error: variable-size type declared outside of any function'. I emailed the maintainer giving them a couple of different ways to fix the package, but I have not heard anything. He gets a 'L' for Lame. Anyway, I have hardcoded the PAGE_CACHE_SIZE (page size) to be 4096. Only alpha and the 64-bit platforms will have something different, or MIPS with its variable page size. Curse you MIPS.
2005-09-24ver bumpMike Frysinger
2005-07-12Thomas Lundquist writes:Eric Andersen
If I understand you correctly, you want the ncurses development headers on the target. a patch for this (named target_headers.patch and includes similar options for a few other libs in buildroot) can be found at: http://www.zelow.no/floppyfw/download/Development/Patches/buildroot/ (a few packages there aswell) it will add an option to put headers on target for ncurses, zlib and openssl. Thomas.
2005-06-24be a bit more consistant with naming, always escape wildcardsEric Andersen
2005-06-19The configure script for this package is a hack at best. This patch"Steven J. Hill"
fixes an issues with the Linux header file 'include/linux/cyclades.h' that gets tested to determine whether or not the 'tqueue' data structure is needed or not. The newer version of it added new types that require 'include/linux/compiler.h' to be included in order for the test to succeed/fail properly. Please, someone shoot me.