summaryrefslogtreecommitdiff
path: root/configs/raspberrypi2_defconfig
AgeCommit message (Collapse)Author
2017-01-23raspberrypi2_defconfig: bump kernel version to 4.4.43Peter Seiderer
Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2016-12-04raspberrypi2_defconfig: bump kernel version to 4.4.36Peter Seiderer
Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2016-09-23raspberrypi2_defconfig: bump to kernel version 4.4.21Peter Seiderer
Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2016-04-28raspberrypi2_defconfig: bump to kernel version 4.4.8Benoît Mauduit
Signed-off-by: Benoît Mauduit <bmauduit@beneth.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2016-04-23raspberrypi2_defconfig: bump to kernel version 4.4.7Peter Seiderer
Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2016-04-18raspberrypi, raspberrypi2: add a serial consoleLuca Ceresoli
The current Buildroot defconfigs for Raspberry Pi and Raspberry Pi 2 instantiate a console on tty1, which appears on HDMI. Add a console on the serial port (ttyAMA0) to be more consistent with other defconfigs and provide a better out-of-the-box experience to users used to have a serial console from Buildroot defconfigs. This requires three changes: 1. have two 'console=' entries in the kernel command line: tty1, then ttyAMA0; 2. change BR2_TARGET_GENERIC_GETTY_PORT to "console", so it starts a getty on the last console= passed to the kernel, ttyAMA0; 3. add a new getty on tty1 to the generated inittab. Step 2 is actually obtained by removing BR2_TARGET_GENERIC_GETTY_PORT entirely from the defconfigs, since "console" is the default value. Step 3 requires a post-build script since the Buildroot makefiles can configure only one console. Note: instead of simply adding a new getty on ttyAMA0 (which would work) this patch actually changes BR2_TARGET_GENERIC_GETTY_PORT to instantiate a console on UART, then adds back tty1 via post-build.sh. This is done only to avoid the "GENERIC_SERIAL" comment where we instantiate an HDMI console, then instantiate a really-serial console on another line. The result is these two inittab lines: console::respawn:/sbin/getty -L console 0 vt100 # GENERIC_SERIAL tty1::respawn:/sbin/getty -L tty1 0 vt100 # HDMI console Cc: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Arnout Vandecappelle <arnout@mind.be> Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2016-04-15configs/raspberrypi2_defconfig: configure eth0 through dhcpPeter Korsgaard
The rpi2 board has an ethernet port, so configure it at startup. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2016-04-05linux: use zImage by default on ARMThomas Petazzoni
Since quite some time, the kernel and bootloader communities consider zImage as the default format for kernel images on ARM, replacing uImage. The load address information in uImage is no longer needed, since the kernel is position-independent in terms of physical address, except on a few old platforms. For most people, using zImage is simply better/simpler, so let's switch to zImage as the default image format on ARM. All defconfigs are updated: 46 defconfigs no longer need to select explicitly zImage because it's the default, and 16 defconfigs now need to explicitly select uImage because that's no longer the default. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Matt Weber <matt@thewebers.ws> Acked-by: Julien Boibessot <julien.boibessot@armadeus.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2016-02-06defconfigs: all use the headers from the kernelYann E. MORIN
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>
2016-02-01configs/raspberrypi{,2}: bump to kernel version 4.1.15Gustavo Zacarias
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2015-12-31configs/raspberrypi*: update them to use genimageGustavo Zacarias
Update the raspberrypi and raspberrypi2 configs to use genimage directly to build the image. Update the documentation to reflect this, and drop the volatile rootfs option since it doesn't make much sense and it's not easily integrated with the genimage configurations. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-08-18configs/raspberrypi2: bump kernel version to 4.1.5Benoît Thébaudeau
Signed-off-by: Benoît Thébaudeau <benoit@wsystem.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-08-02configs/raspberry2_defconfig: Fix typoMaxime Hadjinlian
Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-06-30configs/raspberrypi2: update our defconfigYann E. MORIN
Update to the latest stable kernel version (4.0.y); build an in-tree DTB. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Floris Bos <bos@je-eigen-domein.nl> Cc: Pascal de Bruijn <pmjdebruijn@pcode.nl> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-05-01raspberrypi2: switch Linux kernel to rpi-3.18.yFrank Hunleth
This changes the kernel used on the Raspberry Pi 2 from the 3.19 branch back to the 3.18 branch. This provides a couple of advantages: 1. mmc0 works again. Floris Bos found out that this was due to using the precompiled DTB files from rpi-firmware. These DTBs were built using 3.18. 2. The rpi-3.18.y branch is not regularly rebased like rpi-3.19.y according to popcornmix. See https://github.com/raspberrypi/linux/issues/915. Signed-off-by: Frank Hunleth <fhunleth@troodon-software.com> Reviewed-by: Floris Bos <bos@je-eigen-domein.nl> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-04-08configs/raspberrypi2: kernel version does not exist anymoreJérôme Pouiller
It looks like version 23c76b7 of Raspberry kernel does not exist anymore: $ git clone https://github.com/raspberrypi/linux.git [...] $ cd linux $ git co 23c76b7f608e51258c6fca02aebeb5d588583149 fatal: reference is not a tree: 23c76b7f608e51258c6fca02aebeb5d588583149 Replace it by latest version of 3.19 branch. [Thomas: tweak commit log.] Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-04-07configs/raspberrypi: remove BR2_PACKAGE_RPI_FIRMWARE_INSTALL_DTBSBaruch Siach
BR2_PACKAGE_RPI_FIRMWARE_INSTALL_DTBS became ineffective in commit a5ce7590c4b (package/rpi-firmware: bump version), and was removed in commit 4e92ffdc47cc (rpi-firmware: remove no longer used BR2_PACKAGE_RPI_FIRMWARE_INSTALL_DTBS). Remove it from the Pi configs. Also, remove the now obsolete comment in these config files. Cc: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-04-01configs: drop largefile optionGustavo Zacarias
Drop the buildroot toolchain non-largefile support option since it's being removed. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-02-26configs/raspberrypi2: update and fix our defconfigYann E. MORIN
Lock to 3.19 kernel headers; and comment about installing DTBs; bump kernel sha1. Reported-by: Peter Korsgaard <jacmet@uclibc.org> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2015-02-22configs: add Raspberry Pi 2 defconfigJames Hebden
Signed-off-by: James Hebden <james@hebden.net.au> [yann.morin.1998@free.fr: fix commit log; further bump] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Cc: "Guillermo A. Amaral" <g@maral.me> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>