summaryrefslogtreecommitdiffstats
path: root/configs/sheevaplug_defconfig
Commit message (Collapse)AuthorAgeFilesLines
* sheevaplug_defconfig: bump linux to 4.14.63 to include latest fixesPeter Korsgaard2018-08-171-1/+1
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sheevaplug_defconfig: bump u-boot to 2018.07 to fix build issuePeter Korsgaard2018-08-171-1/+1
| | | | | | | | | | | | | | | | | | | | u-boot 2016.05 no longer builds with the default gcc/binutils versions: https://gitlab.com/buildroot.org/buildroot/-/jobs/88314946 LD u-boot fs/built-in.o: In function `read_symbol': /builds/buildroot.org/buildroot/output/build/uboot-2016.05/fs/jffs2/mini_inflate.c:129: undefined reference to `pull_bit' fs/built-in.o: In function `decompress_huffman': /builds/buildroot.org/buildroot/output/build/uboot-2016.05/fs/jffs2/mini_inflate.c:159: undefined reference to `pull_bits' /builds/buildroot.org/buildroot/output/build/uboot-2016.05/fs/jffs2/mini_inflate.c:170: undefined reference to `pull_bits' .. /builds/buildroot.org/buildroot/output/host/bin/arm-buildroot-linux-uclibcgnueabi-ld.bfd: BFD (GNU Binutils) 2.29.1 assertion fail elf32-arm.c:9509 Makefile:1192: recipe for target 'u-boot' failed make[1]: *** [u-boot] Error 1 make[1]: Leaving directory '/builds/buildroot.org/buildroot/output/build/uboot-2016.05' Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/sheevaplug_defconfig: bump linux kernel to 4.14.13Peter Korsgaard2018-01-151-3/+3
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sheevaplug: defconfig: use 4.6 kernel, u-boot 2016.05Peter Korsgaard2016-05-161-4/+4
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/sheevaplug_defconfig: use 4.5.2 kernel, configure eth0Peter Korsgaard2016-04-281-3/+4
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* defconfigs: all use the headers from the kernelYann E. MORIN2016-02-061-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | For most defconfigs, it was trivial to deduce the kernel version, by just reading the version string, which could be: - a standard upstream version string vX.Y.Z - a non-standard version string, but still containg the standard X.Y.Z Those for which it was not so trivial were those hosted on git tree. Since most were already using a custom linux-headers version, it could be easily deduced from that. It was confirmed by browsing said git trees and check the version there. There are a few cases were there was a mismatch: - microzed: uses a 3.18 kernel, but 3.8 headers; fixed. - xilinx_zc706: uses a 3.14 kernel, but 3.8 headers; fixed. - zedboard: uses a 3.18 kernel, but 3.8 headers; fixed. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Peter Korsgaard <peter@korsgaard.com> Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/sheevaplug: bump u-boot to 2016.01Peter Korsgaard2016-01-171-2/+3
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/sheevaplug: bump kernel to 4.4Peter Korsgaard2016-01-171-3/+3
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* fs/jffs2: Fix mkfs.jffs2 --pagesize parameter usageMichał Leśniewski2015-05-221-1/+1
| | | | | | | | | | | | | | | | | | | | Fixes #8186 Mkfs.jffs2 accepts a --pagesize parameter, which allows specifying the size of the virtual memory page size of the target machine, where the image will be used. (This is the value of the PAGE_SIZE macro in Linux.) In most cases the parameter doesn't need to be set as the default value of 4 kB is usually correct. The parameter was used incorrectly in Buildroot -- it was set to the page size of flash memory chip -- this commit fixes this problem. Now the --pagesize parameter is not used at all (unless the user explicitly chooses to use a custom value during configuration). All existing defconfigs were corrected to match the new configuration variable names. [Peter: reword, add Config.in.legacy handling] Signed-off-by: Michał Leśniewski <mlesniew@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* defconfigs: bump sheevaplug kernel to 3.18.1Peter Korsgaard2015-01-021-6/+7
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* defconfigs: add the _AT_LEAST_X_Y headers optionsYann E. MORIN2014-03-081-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | Since commit 2a5cf5e (check kernel headers version), we also need to specify the series of the custom kernel headers version. The defconfigs file that define such a custom kernel headers version now fail to build. Add the required _AT_LEAST_X_Y options to those config files. Done with this (convoluted but very fast, uch faster ythan manual editing!) rule: for f in $( git grep -l BR2_DEFAULT_KERNEL_VERSION=\"3 ); do grep -E '^BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_' "${f}" >/dev/null && continue sed -r -e '/^(BR2_DEFAULT_KERNEL_VERSION="3\.([[:digit:]]+).*")$/s//\1\nBR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_\2=y/' "${f}" done Only kernels >= 3.0 need those options in the defconfig, since the default for 2.6.x kernels is correct (selects _AT_LEAST_2_6), and the default is not saved in a defconfig. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sheevaplug_defconfig: bump kernel version, lock u-boot versionPeter Korsgaard2013-11-171-2/+4
| | | | | | Stick to 3.11.x for now, as sheevaplug has moved to DT only in 3.12+. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/sheevaplug_defconfig: lock down kernel headers versionGustavo Zacarias2013-02-081-0/+5
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* sheevaplug_defconfig: use 3.5.4 kernelPeter Korsgaard2012-09-301-1/+1
| | | | | | | | Notice that you need u-boot >= 2012.04 to be able to boot kernel >= 3.2, because older u-boots keep the l2 cache enabled, see u-boot commit 679530278 (arm, arm-kirkwood: disable l2c before linux boot) for details. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* sheevaplug_defconfig: use 2.6.39.4Peter Korsgaard2011-08-081-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* sheevaplug_defconfig: use 2.6.39.3Peter Korsgaard2011-07-141-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* sheevaplug_defconfig: bump kernel versionPeter Korsgaard2011-06-241-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* configs: add defconfig for sheevaplugPeter Korsgaard2011-06-211-0/+24
http://en.wikipedia.org/wiki/SheevaPlug Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
OpenPOWER on IntegriCloud