summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-11-19fs: rename make targets to match package/ conventionPeter Korsgaard
Use rootfs-* rather than *-root, to match the convention used under package/ and which fits with the ROOTFS_*_ variables. This will also help with the host dependencies. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-19makedevs: add source targetsPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-19Makefile: handle host packages for make source / make external-depsPeter Korsgaard
Ensure host packages (dependencies of target packages) are also handled by make source / make external-deps. This has to be done a explicitly, as we don't list these in Kconfig, and hence also not in a variable like TARGETS, so instead we have to look at the <PKG>_DEPENDENCIES variables for each enabled package and extract the host packages from there. Host packages can in turn also have dependencies, so we have to follow those as well. Ideally this should be done recursively, but as that's pretty hard to do in make, it is limited to 1 level for now. Finally, host packages share source files with target packages, so pipe output of make external-deps through sort -u to ensure duplicates are removed. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-19gdb: add source targets for gdbserver/gdbhostPeter Korsgaard
So it gets handled by make source / external-deps Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-19pciutils: compilation failed with zlib enabled because it lacks a dependencyStanislav Bogatyrev
Closes #2797 Signed-off-by: Stanislav Bogatyrev <realloc@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-19bind: security bump to 9.5.2-p4Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-19busybox: add 1.17.3 ls fixGustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-19libmad: fix MIPS gcc 4.4+ "h" asm constraint removalGustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-19webkit: needs libcurl, not the curl binaryPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-19bash: fix build issues reported by Dmitry Ivanov, update to pl9Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-19midori: bump to 0.2.9 and make it build with directfbGustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-19webkit: fix compilation with directfbGustavo Zacarias
Closes #2833 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-18Update uclibc snapshot config to avoid build breakageGustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-18sqlite: bump to version 3.7.3Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-18openssh: bump to version 5.6p1Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-18mtd-utils: ensure libmtd.a always gets builtPeter Korsgaard
Closes #2785 If only ubi* is selected, libmtd.a wouldn't get built breaking the build. Based on patch by Patrick Ziegler <patrick.ziegler@fh-kl.de> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-18.gitignore: ignore more patch related filesMike Frysinger
Patches shouldn't be committed to the top level, and that is where `git format-patch` typically operates, so ignore that stuff. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-18gdb: drop local stripping in favor of top levelMike Frysinger
Since the top level takes care of stripping for us, and some file formats cannot be stripped safely (like FLAT which will error out), simply punt the manual stripping from the gdb package. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-18CHANGES: #2479 is resolvedPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-17module-init-tools: fix configure bug by bumping to 3.12Paulius Zaleckas
3.11 fails to configure/compile for my host (F14) due to bug in ax_enable_builddir.m4 Signed-off-by: Paulius Zaleckas <paulius.zaleckas@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-17toolchain-external: fix indentation in KconfigMike Frysinger
Signed-off-by: Mike Frysinger <vapier@gentoo.org> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-17qt: also patch webkit instance of javascriptcorePeter Korsgaard
Closes #2821, #2827 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-17initramfs: fix init symlink creationMike Frysinger
The -e test will dereference the symlink, so if there is no /bin/init, we will constantly try to create the symlink. So rather than error on subsequent runs when the link exists, use the force flag to ln. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-17linux: update paths to compiled cpio filesMike Frysinger
Linux has been using "usr/initramfs_data.cpio" for a few releases as the generated cpio name, so the buildroot match of "...cpio.*" won't actually clean out the previous result. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-17libglib2: ensure atomic ops patch gets appliedPeter Korsgaard
Closes #2809 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-08docs/news.html: announce 2010.11-rc1Peter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-08Update for 2010.11-rc12010.11_rc1Peter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-08qt: bump versionPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-07directfb: Fix missing -lm flag againLionel Landwerlin
(aka fix the fix) Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-07xserver-xorg: enable glx support if mesa3d is enabledPeter Korsgaard
Closes #2533 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-07wireless-tools: add option to install shared libPeter Korsgaard
Closes #2461 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-07config: fix crash with too long pathsPeter Korsgaard
Closes #2737 Use PATH_MAX rather that 128 for path buffers. Patch from kernel 1408b15b98 (kconfig: Use PATH_MAX instead of 128 for path buffer sizes) by Will Newton. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-07mpc: fix make dependenciesPeter Korsgaard
So the build target isn't always considered out of date. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-07Makefile: move target-{finalize,purgelocales} after bootloader/linux stepPeter Korsgaard
Closes #2731 Bootloader and Linux kernel steps can add content to the rootfs, so ensure the cleanup / postprocess steps are moved after those. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-07directfb: rename ppc patch so it still gets appliedPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-07Add kbd packageFelipe Contreras
[Peter: use BR2_KERNEL_MIRROR] Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-07directfb: png support is needed to build directfb-csource for the hostPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-07directfb: don't build tools for targetPeter Korsgaard
Normally these aren't needed, and some of them (mkdgifft) needs C++ support. Alternatively we could add an option (depending on HAVE_DEVFILES) to build these. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-07directfb: add -lm when using freetype2 font interfaceLionel Landwerlin
This fixes runtime/compilation problems seen with directfb 1.4.10. Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-07libglib2: fix compilation when compiler has no builtin atomicLionel Landwerlin
Reported here: https://bugzilla.gnome.org/show_bug.cgi?id=631353 Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-06tcpdump: bump versionPeter Korsgaard
The old version didn't build with the updated libpcap anymore. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-05tslib: needs libtool patchPeter Korsgaard
Otherwise it fails with 'cannot install to a directory not ending in /usr/lib/ts'. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-05New package: nuttcpYegor Yefremov
Add a new TCP/UDP network testing tool, that provides some advanced features compared to ttcp. [Peter: cleanup, fix FLAGS, move to network] Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-05busybox: 1.17.3 iproute fixPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-05slang: build system breaks with parallel buildsPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-05thttpd: install into /usr, cleanup install handlingPeter Korsgaard
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-05thttpd: convert to autotargetsMartin Banky
Also, changed the site to Debian, to get the latest patches Signed-off-by: Martin Banky <Martin.Banky@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-05slang: convert to gentargetsMartin Banky
Signed-off-by: Martin Banky <Martin.Banky@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-05sfdisk: mark as deprecatedPeter Korsgaard
We're using an ancient uclibc specific snapshot, and should rather focus on moving our util-linux package forward. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-11-05sed: convert to autotargetsMartin Banky
Signed-off-by: Martin Banky <Martin.Banky@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>