summaryrefslogtreecommitdiffstats
path: root/configs/raspberrypi3_defconfig
Commit message (Collapse)AuthorAgeFilesLines
* configs/raspberrypi*: bump kernel version to 83b36f98e1Peter Seiderer2019-01-271-1/+1
| | | | | | | Now based on 4.14.95 (from 4.14.91). Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/raspberrypi*: bump kernel version to 4c5aec7827Peter Seiderer2019-01-061-1/+1
| | | | | | | Now based on 4.14.91 (from 4.14.74). Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/raspberrypi*: bump kernel version to 6d27aa156cPeter Seiderer2018-10-151-1/+1
| | | | | | | Now based on 4.14.74 (from 4.14.39). Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/raspberrypi3_defconfig: increase filesystem sizeLeon Anavi2018-07-081-0/+1
| | | | | | | | | | | | | | | | | | Increase the filesystem size for raspberrypi3 by setting BR2_TARGET_ROOTFS_EXT2_SIZE to "120M". The filesystem for raspberrypi3_64 has the same size. The size is so large because the kernel config enables many many modules. Fixes: Copying files into the device: __populate_fs: Could not allocate block in ext2 filesystem while writing file "services" mkfs.ext4: Could not allocate block in ext2 filesystem while populating file system This error is not reproducible, it seems to depend on e.g. directory ordering. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* configs/raspberrypi*: bump kernel versionMartin Bark2018-05-201-1/+1
| | | | | | | Now based on 4.14.39 (from 4.14.29) Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* board/raspberrypi: add support for rpi3 b+Martin Bark2018-04-061-1/+1
| | | | | Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* configs/raspberrypi*: bump kernel versionMartin Bark2018-04-061-3/+3
| | | | | | | | | Now based on 4.14.29 (from 4.9.79) Signed-off-by: Martin Bark <martin@barkynet.com> [Thomas: adjusted on top of Yann E. Morin changes to use a tarball instead of a git clone.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* configs: switch to a wget download for kernels on githubYann E. MORIN2018-04-021-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | The linux git trees on github can be huge, and takes a long time to download, which is not very nice nor convenient for newcomers. Switch them to using a wget, with the github macro. A nice side effect of this conversion, is that we no longer need to wait for the git clone to finish to notice that the ref is gone; doing a wget will instantly fail in that case. Mechanical patch, obtained by running (hang-on tight): $ sed -r -i -e 's/BR2_LINUX_KERNEL_CUSTOM_GIT/BR2_LINUX_KERNEL_CUSTOM_TARBALL/; /BR2_LINUX_KERNEL_CUSTOM_REPO_URL/N; s:BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https\://github.com/([^/]+)/(.+)"\nBR2_LINUX_KERNEL_CUSTOM_REPO_VERSION="(.+)":BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,\1,\2,\3)/linux-\3.tar.gz":; s/(call github.*)\.git/\1/;' $(grep -l 'BR2_LINUX_KERNEL_CUSTOM_REPO_URL="https://github.com' configs/*) olimex_a20_olinuxino_lime_mali had a comment in between, so it was manually fixed thereafter; that comment was also moved. Except for socrates_cyclone5 which did not work previously (missing tag in git tree?), all the affected defconfigs still download their sources. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* configs/raspberrypi*: bump kernel versionMario Lang2018-02-031-1/+1
| | | | | | | Now based on 4.9.79 (from 4.9.66). Signed-off-by: Mario Lang <mlang@blind.guru> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/raspberrypi*: bump kernel versionMario Lang2017-12-061-1/+1
| | | | | | | Now based on 4.9.66 (from 4.9.52). Signed-off-by: Mario Lang <mlang@blind.guru> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/raspberrypi*: bump kernel versionPeter Korsgaard2017-10-011-1/+1
| | | | | | Now based on 4.9.52 (from 4.9.36). Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/raspberrypi3_defconfig: bump kernel version to 4.9.36Martin Bark2017-07-151-1/+1
| | | | | Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/raspberrypi3: use correct CPUYann E. MORIN2017-05-021-3/+1
| | | | | | | | | | | | | | | | | | We so far were using a Cortex-A7 as the CPU for the rpi3, as this was the closest we had available, in 32-bit mode, to the real CPU used in the rpi3. But now we can also use the Cortex-A53 in 32-bit mode, so we use that, which makes for an optimised build (A53 has an improved instruction set, as compared to the A7). Also drop the DTB overlay option, it defaults to 'y'. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Martin Bark <martin@barkynet.com> Cc: Peter Seiderer <ps.report@gmx.net> Tested-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/raspberrypi3_defconfig: bump version to 4.9.21Martin Bark2017-04-141-1/+1
| | | | | Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/raspberrypi3_defconfig: add raspberry pi 3 compute module supportMartin Bark2017-03-051-1/+1
| | | | | Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/raspberrypi3_defconfig: bump kernel version to 4.9.13Martin Bark2017-03-051-3/+3
| | | | | Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* raspberrypi3_defconfig: bump kernel version to 4.4.43Peter Seiderer2017-01-231-1/+1
| | | | | Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* raspberrypi3_defconfig: bump kernel version to 4.4.36Peter Seiderer2016-12-041-1/+1
| | | | | Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* raspberrypi3_defconfig: bump to kernel version 4.4.21Peter Seiderer2016-09-231-1/+1
| | | | | Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* raspberrypi3: fix serial console (load pi3-miniuart-bt overlay)Peter Seiderer2016-09-181-1/+2
| | | | | | | | | | - enable BR2_PACKAGE_RPI_FIRMWARE_INSTALL_DTB_OVERLAYS in raspberrypi3_defconfig - add copy of rpi-firmware/overlays directory to boot partition in genimage-raspberrypi3.cfg - enhance post-image.sh script to add 'dtoverlay=pi3-miniuart-bt' on request - add BR2_ROOTFS_POST_SCRIPT_ARGS="--add-pi3-miniuart-bt-overlay" in raspberrypi3_defconfig Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* raspberrypi3_defconfig: bump to kernel version 4.4.8Benoît Mauduit2016-04-281-1/+1
| | | | | Signed-off-by: Benoît Mauduit <bmauduit@beneth.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/raspberrypi3: sync kernel version with rpi/rpi2Peter Korsgaard2016-04-251-3/+3
| | | | | | Move to 4.4 series. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs: add Raspberry Pi 3 defconfigUbaldo Porcheddu2016-04-251-0/+36
So far identical to the rpi2 one except for the dts file as the SW runs in 32bit mode. [Peter: extend commit message] Signed-off-by: Ubaldo Porcheddu <ubaldo@eja.it> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
OpenPOWER on IntegriCloud