summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * jffs2: convert to ROOTFS_TARGET infrastructureThomas Petazzoni2010-04-092-45/+16
| | | | | | | | | | | | | | We also remove the BR2_TARGET_ROOTFS_JFFS2_OUTPUT option, that could be used to specify an alternate name for the generated image file. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * ext2: convert to ROOTFS_TARGET infrastructureThomas Petazzoni2010-04-092-70/+11
| | | | | | | | | | | | | | We also remove the BR2_TARGET_ROOTFS_EXT2_OUTPUT option, that could be used to specify an alternate name for the generated image file. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * squashfs: convert to ROOTFS_TARGET infrastructureThomas Petazzoni2010-04-091-29/+5
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * tar: convert to ROOTFS_TARGET infrastructureThomas Petazzoni2010-04-091-45/+4
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * romfs: convert to ROOTFS_TARGET infrastructureThomas Petazzoni2010-04-091-24/+6
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * cramfs: convert to ROOTFS_TARGET infrastructureThomas Petazzoni2010-04-091-26/+5
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * cpio: convert to ROOTFS_TARGET infrastructureThomas Petazzoni2010-04-091-55/+7
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * cloop: convert to ROOTFS_TARGET infrastructureThomas Petazzoni2010-04-091-21/+5
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * target: Add new infrastructure for filesystem generationThomas Petazzoni2010-04-092-0/+69
| | | | | | | | | | | | | | | | In order to avoid code duplication between the different filesystem generation makefile, we introduce a ROOTFS_TARGET macro. Documentation for this macro is contained in the patch. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * target/: remove the COPYTO messThomas Petazzoni2010-04-0910-72/+0
| | | | | | | | | | | | | | There's no need to provide options to copy the filesystem image after the build. Just use 'cp' outside of Buildroot. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * fakeroot: remove all references to BR2_HOST_FAKEROOTThomas Petazzoni2010-04-0923-23/+0
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * fakeroot: convert to the autotools infrastructureThomas Petazzoni2010-04-092-117/+13
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * target/ubifs: cleanup, unbrokenThomas Petazzoni2010-04-092-48/+4
| | | | | | | | | | | | | | Use package/mtd to build the host mtd-utils, which contains mkfs.ubifs. Remove dependency on BR2_HOST_FAKEROOT. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * target/tar: cleanupThomas Petazzoni2010-04-092-7/+0
| | | | | | | | | | | | Remove dependency on BR2_HOST_FAKEROOT. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * target/squashfs: cleanup, remove support for 3.xThomas Petazzoni2010-04-094-171/+2
| | | | | | | | | | | | | | | | | | | | | | Remove the code to build squashfs-tools for the host, since they can now be built using package/squashfs. We also remove support for Squashfs 3.x, because the Squashfs driver merged inside the mainline kernel is a 4.x driver. So 3.x is only useful for old kernels using a Squashfs patch. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * target/romfs: cleanupThomas Petazzoni2010-04-092-41/+2
| | | | | | | | | | | | | | Remove the code needed to build host genromfs, since it can now be done using package/genromfs. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * target/jffs2: cleanupThomas Petazzoni2010-04-092-10/+1
| | | | | | | | | | | | | | Remove the code to build host MTD utils, since they can now be built using package/mtd. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * target/iso9660: cleanupThomas Petazzoni2010-04-092-51/+2
| | | | | | | | | | | | | | Remove the mkisofs host tools building process, which is now in package/cdrkit. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * target/ext2: cleanupThomas Petazzoni2010-04-092-52/+5
| | | | | | | | | | | | | | Remove the genext2fs host tools building process, which is now in package/genext2fs. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * target/cramfs: cleanupThomas Petazzoni2010-04-095-1612/+2
| | | | | | | | | | | | | | Remove the cramfs host tools building process, which is now in package/cramfs. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * target/cpio: cleanupThomas Petazzoni2010-04-093-16/+4
| | | | | | | | | | | | | | | | | | | | | | | | * Remove the dependency on BR2_HOST_FAKEROOT, since we don't have config option for host tools. * Remove a few useless things. * Check that cpio is available on the host in toolchain/dependencies/dependencies.sh. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * target/cloop: cleanupThomas Petazzoni2010-04-092-109/+27
| | | | | | | | | | | | | | | | | | | | | | | | Remove the code to build the cloop utilities for the host (it is now in package/cloop). Use fakeroot instead of ugly sudo. The cloop filesystem generation code is now much more similar to other filesystems code. Remove empty Makefile.in. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * lzma: convert the host package to the autotools infrastructureThomas Petazzoni2010-04-091-63/+2
| | | | | | | | | | | | | | Note that we loose the ability to use a lzma command available on the host and we now always build your own if a package needs it. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * cloop: new packageThomas Petazzoni2010-04-091-0/+18
| | | | | | | | | | | | | | Only the host variant is supported, which explains why there is no Config.in file. Will be used by the filesystem generation code. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * mtd: convert to gentargets, add host packageThomas Petazzoni2010-04-091-98/+46
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * e2fsprogs: add support for host packageThomas Petazzoni2010-04-091-0/+5
| | | | | | | | | | | | | | 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>
| * cdrkit: new packageThomas Petazzoni2010-04-093-0/+75
| | | | | | | | | | | | | | Supported both for the target and the host. Will be used by the root filesystem generation code, thanks to genisoimage. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * cmake: new packageThomas Petazzoni2010-04-091-0/+20
| | | | | | | | | | | | | | Only compilation for the host is supported, why explains why we don't have a Config.in and the corresponding BR2_PACKAGE_CMAKE option. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * bzip2: convert to gentargets, add host package, bump versionThomas Petazzoni2010-04-091-80/+60
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * libcap: new packageThomas Petazzoni2010-04-094-0/+93
| | | | | | | | | | | | | | Needed as a dependency of cdrkit, which contains genisomage, useful for generating ISO9660 filesystem images. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * squashfs: new packageThomas Petazzoni2010-04-095-0/+97
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * cramfs: new packageThomas Petazzoni2010-04-096-0/+1607
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * genext2fs: new packageThomas Petazzoni2010-04-095-0/+22
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * genromfs: add new packageThomas Petazzoni2010-04-094-0/+64
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* | atmel: Add at91sam9g45ekes board supportJosh.Wu2010-04-092-0/+17
|/ | | | | Signed-off-by: Josh.Wu <josh.wu@atmel.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* CHANGES: add libaioPeter Korsgaard2010-04-091-8/+9
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Merge branch 'libaio-conversion' of ↵Peter Korsgaard2010-04-093-39/+708
|\ | | | | | | git://git.busybox.net/~tpetazzoni/git/buildroot
| * libaio: convert to the GENTARGETS infrastructureThomas Petazzoni2010-04-083-39/+708
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* | xdriver_xf86-video-intel: bump versionWill Wagner2010-04-084-8/+21
| | | | | | | | | | | | [Peter: remove version from Config.in help] Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | xlib_libXxf86misc: bump versionWill Wagner2010-04-083-4/+4
| | | | | | | | | | | | [Peter: remove version from Config.in help] Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | xproto_evieext: bump versionWill Wagner2010-04-083-3/+2
| | | | | | | | | | | | [Peter: remove version from Config.in help] Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | xkeyboard-config: bump versionWill Wagner2010-04-082-4/+4
| | | | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | xlib_libXfontcache: bump versionWill Wagner2010-04-083-4/+4
| | | | | | | | | | | | [Peter: remove version from Config.in help] Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | xlib_libpciaccess: bump versionWill Wagner2010-04-083-6/+4
| | | | | | | | | | | | [Peter: remove version from Config.in help] Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | xproto_xf86miscproto: bump versionWill Wagner2010-04-083-3/+2
| | | | | | | | | | | | [Peter: remove version from Config.in help] Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | xproto_fontcacheproto: bump versionWill Wagner2010-04-083-3/+3
| | | | | | | | | | | | [Peter: remove version from Config.in help] Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | xproto_dri2proto: bump versionWill Wagner2010-04-083-3/+2
| | | | | | | | | | | | [Peter: remove version from Config.in help] Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | pthread-stubs: bump versionWill Wagner2010-04-082-3/+4
| | | | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | xlib_libXau: remove duplicate dependanciesWill Wagner2010-04-082-2/+1
| | | | | | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | correct name of xapp_xinput.mkWill Wagner2010-04-081-0/+0
| | | | | | | | | | Signed-off-by: Will Wagner <will_wagner@carallon.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>