summaryrefslogtreecommitdiff
path: root/package/e2fsprogs
AgeCommit message (Collapse)Author
2012-09-03e2fsprogs: fix download URLPeter Korsgaard
It is /v$VERSION, not just /$VERSION. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-09-03Merge branch 'next'Peter Korsgaard
Conflicts: package/e2fsprogs/e2fsprogs.mk package/libfuse/libfuse.mk package/multimedia/mpd/mpd.mk package/smartmontools/smartmontools.mk Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-08-28remove rest of the BR2_SOURCEFORGE_MIRROR referencesStefan Fröberg
Signed-off-by: Stefan Fröberg <stefan.froberg@petroprogram.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2012-08-12e2fsprogs: bump to version 1.42.5Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2012-07-17all packages: rename XXXTARGETS to xxx-packageArnout Vandecappelle (Essensium/Mind)
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>
2012-07-17all packages: use new host-xxx-package macrosArnout Vandecappelle (Essensium/Mind)
This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS,host))/$(eval $(host-generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS,host))/$(eval $(host-autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS,host))/$(eval $(host-cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2012-06-16e2fsprogs: bump to 1.42.4Yegor Yefremov
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-05-21e2fsprogs: bump to 1.42.3Yegor Yefremov
remove e2fsprogs-add-missing-dep-of-tst_uuid-o.patch as the changes are already upstream Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-04-03e2fsprogs: bump to version 1.42.2Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-03-19e2fsprogs: bump to version 1.42.1Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-02-28e2fsprogs: disable build of e4defrag unless explicitly enabledSven Neumann
The e2fsprogs configure script enables the build of the e4defrag utility by default. Disable it unless BR2_PACKAGE_E2FSPROGS_E4DEFRAG is selected. Also the --disable-blkid option is not recognized by the configure script. Use --disable-libblkid instead. Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-01-26e2fsprogs: bump to version 1.42Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2012-01-18e2fsprogs: unbreak host build after auto-host-deps changePeter Korsgaard
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-06e2fsprogs: drop uuidd optionPeter Korsgaard
e2fsprogs uuidd no longer builds with libuuid from util-linux 2.20, and according to tytso the util-linux version should be used instead when using libuuid from there, so drop the e2fsprogs option. Reported-by: Yegor Yefremov <yegorslists@googlemail.com> 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-29package: use libuuid from util-linuxPeter Korsgaard
And adjust users. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-07-28e2fsprogs: ensure util-linux is built before e2fsprogsPeter Korsgaard
For libblkid. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-07-28e2fsprogs: use libblkid / blkid from util-linuxPeter Korsgaard
e2fsprogs and util-linux both provide blkid / libblkid causing conflicts if both are enabled. The preferred upstream (E.G. what is used by Debian) is util-linux, so remove the options from e2fsprogs and make it use the util-linux version instead. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-07-28e2fsprogs: configure needs pkg-configPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-07-28e2fsprogs: add options for debugfs/e2image/resize2fs utilitiesPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-07-28e2fsprogs: don't build uuidd if not requestedPeter Korsgaard
Rather than not installing it. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-07-28e2fsprogs: simplify Config.inPeter Korsgaard
No need for 'depends on' for all individual options when they already are in a conditional section. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-07-25e2fsprogs: Add missing dependency of tst_uuid.o on uuid.hArnout Vandecappelle (Essensium/Mind)
The missing dependency used to break parallel builds. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-02-09e2fsprogs: bump to 1.41.14 and fixupGustavo Zacarias
Bump e2fsprogs to version 1.41.14 Also export libblkid properly for util-linux to use. [Peter: install pkg-config files] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-09-12e2fsprogs: convert old-style hooks to new-style hookThomas Petazzoni
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-07-08e2fsprogs: bump versionH Hartley Sweeten
Version 1.41.12 was released May 18, 2010. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-04-09e2fsprogs: add support for host packageThomas Petazzoni
Host package is needed to get libuuid installed for the host, needed to build the mtd utils for the host. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2010-03-31e2fsprogs: bump versionGustavo Zacarias
Closes #1423 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-03-22package: remove redundant DISABLE_{IPV6,NLS,LARGEFILE} configure argsPeter Korsgaard
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>
2010-03-07e2fsprogs: fix build when no binaries/libs are selectedPeter Korsgaard
Reported by "Thomas". Strip fails as it gets called without any arguments. Instead of working around this, simply remove the package-specific stripping as it is done later (in target-finalize) anyway. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-02-23e2fsprogs: fix lsattr chattr and e2label e2undo mixupRichard van Paasen
In Config.in lsattr/chattr and e2label/e2undo are mixed up. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-12-21Install uuid.h into staging as some other apps like xfsprogs need itNigel Kukard
[Peter: cleanup, only install header if libuuid is installed] Signed-off-by: Nigel Kukard <nkukard@lbsd.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-10-29e2fsprogs: convert to Makefile.autotools.in format and update Kconfigrvpaasen
Closes #667. I have updated the e2fsprogs package to the new makefile format. I added the tools from the 1.41.9 release of e2fsprogs that could not yet be (de)selected (freefrag, e2undo) to the menu in Config.in. Signed-off-by: rvpaasen <rvpaasen@t3i.nl> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-10-07e2fsprogs: add a patch to link against SEM_INIT libsDaniel Mack
This patch is needed to make e2fsprogs being linked against SEM_INIT libraries. In this particular case, it causes the Makefiles to add -lpthread. Without that, all binaries crash at startup, at least on x86. Signed-off-by: Daniel Mack <daniel@caiaq.de> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-10-07e2fsprogs: bump version number to 1.41.9Daniel Mack
Signed-off-by: Daniel Mack <daniel@caiaq.de> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-10-02libuuid: cleanupPeter Korsgaard
Got rid of LIBUUID_TARGET_DIR, and made sure staging install is only done once. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-10-02libuuid: fix target-install dependenciesPeter Korsgaard
libuuid.so gets installed into /usr/lib, not /lib, so the target install make target is always considered out-of-date. 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-05libuuid: add -source and -clean targetsPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-08-05e2fsprogs: factor out libuuid supportDaniel Mack
Add a new target for libuuid so it can be built without e2fsprogs. Signed-off-by: Daniel Mack <daniel@caiaq.de> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2009-03-09e2fsprogs: install into staging so other stuff can find the libs/includesPeter Korsgaard
And explicitly install the libuuid headers. Needed for the gupnp stuff in #35.
2009-03-09e2fsprogs: needs LARGEFILEPeter Korsgaard
2009-01-16package/: convert to DOWNLOAD helperPeter Korsgaard
2009-01-01* Bumped to version 1.41.3Nigel Kukard
- Disable tls - rel-libs is now implemented upstream - Install ext4 tools aswell
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.
2008-02-24Allow selection of e2fsprogs to install in the targetHamish Moffatt
2007-12-13make e2fsprogs generate relative symlinks in the rootIvan Kuten