aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* README: defconfig, not configdebianbnewbold2013-08-271-1/+1
|
* novena debian: skeleton router sysctl settingsbnewbold2013-08-253-0/+17
|
* novena debian: clean up symlinks in polystrap configbnewbold2013-08-255-5/+5
|
* novena debian: add more packagesbnewbold2013-08-253-0/+10
|
* novena kernel: add lxc supportbnewbold2013-08-251-0/+19
|
* novena kernel: enable rfkill infrastructure and more IPv6 optionsbnewbold2013-08-251-0/+7
|
* novena: update kernel config; incl "mandb -c" fixbnewbold2013-08-231-3083/+0
| | | | | | | | | This 3.10 kernel config comes from "make linux-update-defconfig" with buildroot, which minimizes the output. It includes a fix from Sean Cross for the "mandb -c" SegFaults: disabling the VExpress System Type, and disabling the "ARM errata: TLBIASIDIS and TLBIMVAIS [...]" option.
* READMEbnewbold2013-08-231-0/+56
|
* add novena_debian defconfigbnewbold2013-08-231-0/+39
|
* novena debian: build debian and default imagesbnewbold2013-08-232-1/+75
|
* polystrap: update novena configbnewbold2013-08-2310-15/+80
|
* polystrap: basic novena configurationbnewbold2013-08-2319-0/+75
|
* early work on debian rootfs integrationbnewbold2013-08-232-1/+46
|
* polystrap: don't fail if openssh not installedbnewbold2013-08-231-1/+1
|
* initial import of 'polystrap' debian toolbnewbold2013-08-2329-0/+542
| | | | | | | From http://anonscm.debian.org/gitweb/?p=emdebian/polystrap.git;a=summary This imports 83ba112abb8f173254c60611b5a24ca0a72ca58f, from from Tue, 9 Oct 2012 15:36:02 -0400 (21:36 +0200)
* novena: expand default rootfs size to 400MB; compress final imagebnewbold2013-08-231-5/+6
|
* initial novena board supportbnewbold2013-07-156-0/+3944
|
* packages: add genfatfs and makedisk (both host tools)bnewbold2013-07-155-0/+73
|
* u-boot: workaround for setlocalversion issuebnewbold2013-07-142-0/+12
| | | | | | | | | | | | | | | | The u-boot build process attempts to determine the version number using git commands, which assumes that the build is taking place in a git checkout with the .git directory intact. The buildroot build process does a git checkout, but then exports a .tar.gz as a cache and does the build from that tarball (with no .git file). In some instances, being unable to determine the current version causes the build process to generate a non-functional bootloader. This patch implements a work-around for this problem by allowing the user to configure a 'localverion' override which gets written to the ./localversion file in the u-boot build directory, which is later used by the ./tools/setlocalversion script.
* fdk-aac: new packagegilles.talis@gmail.com2013-07-123-0/+32
| | | | | Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* nodejs: not supported on old ARM coresGustavo Zacarias2013-07-121-0/+2
| | | | | | | | | | nodejs needs the ARM blx instruction which is only supported in v5t+ cores (v5 ISA with thumb instructions). Disable it for lower cores. Fixes: http://autobuild.buildroot.net/results/89e/89ee5ba047a26a8c7a612d0285b08780b70efbd4/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* php: security bump to version 5.3.27Gustavo Zacarias2013-07-121-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* cifs-utils: bump to version 6.1Gustavo Zacarias2013-07-121-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Makefile: unexport RUBYOPTGustavo Zacarias2013-07-121-0/+3
| | | | | | | | On Gentoo systems with ruby installed RUBYOPT is set and causes build breakage for some packages that needs host-ruby (example: webkit). Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* erlang: add upstream URLPeter Korsgaard2013-07-121-0/+2
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* erlang: bump versionPeter Korsgaard2013-07-121-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gcc: remove BR2_GCC_SHARED_LIBGCC optionThomas Petazzoni2013-07-113-18/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | Commit 6b48b4803450 ("add a know to enable/disable building a shared libgcc"), from october 2006, isn't really as to why a BR2_GCC_SHARED_LIBGCC option was needed. However, now that gcc has been converted to the package infrastructure, it causes problems because the host packages are always being passed --enable-shared --disable-static, so re-adding --disable-shared on top of that break things. Moreover, our tests indicate that both a shared *and* a static version of libgcc are built, and that linking dynamically and statically a program that uses libgcc_s gives correct results: dynamically linked against libgcc_s in the first case, statically linked in the second case. Therefore, it appears that this option is no longer necessary, and removing it has the advantage of fixing the builds of qemu_mips64_malta_defconfig and qemu_sparc_ss10_defconfig, both of which had BR2_GCC_SHARED_LIBGCC not enabled. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* minidlna: fix linking with libintl if presentPeter Korsgaard2013-07-111-1/+7
| | | | | | | | | Fixes http://autobuild.buildroot.net/results/3b7/3b71243716dc193a11508a69265cdd0120bd13ed There's unfortunately not any easy way of adding extra libraries to LIBS, so we need to list them all here. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* jquery-sparkline: bump to version 2.1.2Gustavo Zacarias2013-07-111-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* jquery: bump to version 1.10.2Gustavo Zacarias2013-07-111-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* toolchain-external: fix bfin external toolchain downloadPeter Korsgaard2013-07-111-2/+2
| | | | | | | | | | | | Fixes http://autobuild.buildroot.org/results/7d0/7d0eee796407880a4554474e5affbe98b8caa271/ Commit 1cbffbd (eliminate double slashes caused by FOO_SITE ending in a slash) added a double replacement for the special bfin external toolchain download, breaking it. Fix it by removing the 2nd replacement. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* minidlna: new packageSimon Dawson2013-07-117-0/+219
| | | | | | [Peter: license is GPLv2, fix license file, drop unneeded standard include] Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* inadyn: define licensegilles.talis@gmail.com2013-07-101-0/+2
| | | | | Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ushare: define licensegilles.talis@gmail.com2013-07-101-0/+2
| | | | | Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* sdl_net: define licensegilles.talis@gmail.com2013-07-101-0/+2
| | | | | Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ramspeed: define licensegilles.talis@gmail.com2013-07-101-0/+2
| | | | | | [Peter: fix license file name] Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ramsmp: define licensegilles.talis@gmail.com2013-07-101-0/+2
| | | | | | [Peter: fix license file name] Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libusb-compat: define licensegilles.talis@gmail.com2013-07-101-0/+2
| | | | | Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libupnp: define licensegilles.talis@gmail.com2013-07-101-0/+2
| | | | | Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libtheora: define licensegilles.talis@gmail.com2013-07-101-0/+2
| | | | | Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libelf: define licensegilles.talis@gmail.com2013-07-101-0/+2
| | | | | | [Peter: license is LGPLv2+] Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* json-c: define licensegilles.talis@gmail.com2013-07-101-0/+2
| | | | | Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* jimtcl: define licensegilles.talis@gmail.com2013-07-101-0/+2
| | | | | Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* classpath: add config.rpathGustavo Zacarias2013-07-101-0/+680
| | | | | | | | Add config.rpath from upstream CVS to avoid autoreconf errors. Fixes: http://autobuild.buildroot.net/results/e88/e88b77b28e9a0f1d2960aaa782ec0cbfd4e5e451/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* python3: remove smtpd.py.3 sampleGustavo Zacarias2013-07-101-0/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* python: remove idle sampleGustavo Zacarias2013-07-101-7/+4
| | | | | | | Also move smtpd.py removal to the global remove useless files define. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* python external modules: reorder menu entryGustavo Zacarias2013-07-101-1/+1
| | | | | | | | Reorder the external python modules menu entry so that it belongs under python(2) and not under python3 to avoid confusion. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* uclibc: arc: add patch that adds __kernel_(u)longMischa Jonker2013-07-101-0/+29
| | | | | | | | This adds a patch that adds the __kernel_long and __kernel_ulong types to uClibc. This fixes the build failure with Linux 3.10 headers. Signed-off-by: Mischa Jonker <mjonker@synopsys.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* system: add option to pass extra args to post-build and post-image scriptsYann E. MORIN2013-07-103-14/+35
| | | | | | | | | | | | | | | | | It can be useful to have different configuration use the same post-build and/or post-image scripts as they share a common infrastructure, but yet have minor differentiation. This option allows passing zero or more additional arguments to each post-build or post-image script. The same set of extra arguments are passed to all scripts, it is not possible to pass different arguments to each script. [Peter: fix help text, post-image gets called with the images dir] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mongrel2: needs threadsGilles Talis2013-07-101-0/+1
| | | | | | | | mongrel2 uses zeromq that needs threads Fixes: http://autobuild.buildroot.org/results/93d/93da58453e1ca0cc491170976cfbdeb8bee5c648 Signed-off-by: Gilles Talis <gilles.talis@gmail.com>