summaryrefslogtreecommitdiffstats
path: root/configs/at91sam9x5ek_defconfig
Commit message (Collapse)AuthorAgeFilesLines
* 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/atmel: bump to linux4sam_5.8Joshua Henderson2018-03-301-3/+3
| | | | | | | | | | | | | Bump at91sam9x5ek, atmel_sama5d27_som1_ek, atmel_sama5d2_xplained, atmel_sama5d3_xplained, and atmel_sama5d4_xplained all variants to linux4sam_5.8. The 3 foundation components have their tags changed (AT91Bootstrap, U-Boot, Linux kernel). at91bootstrap 3.8.10 is required to support gcc7. Signed-off-by: Joshua Henderson <joshua.henderson@microchip.com> Cc: Nicolas Ferre <nicolas.ferre@microchip.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/atmel: bump to linux4sam_5.7Nicolas Ferre2017-10-061-3/+3
| | | | | | | | | Bump at91sam9x5ek, atmel_sama5d2_xplained, atmel_sama5d3_xplained and atmel_sama5d4_xplained all variants to linux4sam_5.7. The 3 foundation components have their tags changed (AT91Bootstrap, U-Boot, Linux kernel). Signed-off-by: Nicolas Ferre <nicolas.ferre@microchip.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/{at91sam9x5ek*, atmel_*_xplained*}: U-Boot needs DTCThomas Petazzoni2017-07-021-0/+1
| | | | | | | | | | | | | | | | | | | | | | Since the bump of the Atmel defconfigs to linux4sam_5.6 in commit 0f7b5d4a9f3a78be07e22c81db41f88e45e8c0cf, the new U-Boot version uses the Device Tree compiler, so we need to add BR2_TARGET_UBOOT_NEEDS_DTC in order to build dtc before u-boot and avoid build failures. Fixes: >>> uboot linux4sam_5.6 Configuring >>> uboot linux4sam_5.6 Building [...] CHK include/generated/timestamp_autogenerated.h UPD include/generated/timestamp_autogenerated.h ./scripts/dtc-version.sh: line 17: dtc: command not found ./scripts/dtc-version.sh: line 18: dtc: command not found *** Your dtc is too old, please upgrade to dtc 1.4 or newer Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/atmel: bump to linux4sam_5.6Ludovic Desroches2017-06-211-4/+4
| | | | | | | | Bump at91sam9x5ek, atmel_sama5d2_xplained, atmel_sama5d3_xplained and atmel_sama5d4_xplained to linux4sam_5.6. Signed-off-by: Ludovic Desroches <ludovic.desroches@microchip.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs: atmel: at91sam9x5ek: bump to linux4sam_5.5Ludovic Desroches2016-11-031-5/+9
| | | | | | | | Bump at91bootstrap to v3.8.7, U-Boot to linux4sam_5.5, Linux to linux4sam_5.5 (based on v4.4.x). Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs: Use HTTPS URL for Github reposPaul Cercueil2016-07-051-1/+1
| | | | | | | | This makes it possible to clone git repositories hosted on Github while behind a firewall. Signed-off-by: Paul Cercueil <paul.cercueil@analog.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* linux: use zImage by default on ARMThomas Petazzoni2016-04-051-1/+0
| | | | | | | | | | | | | | | | | | | 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>
* defconfigs: all use the headers from the kernelYann E. MORIN2016-02-061-2/+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: add defconfig for Atmel at91sam9x5ekAlexandre Belloni2015-06-301-0/+25
This supports: - at91sam9g15ek - at91sam9g25ek - at91sam9g35ek - at91sam9x25ek - at91sam9x35ek Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud