summaryrefslogtreecommitdiffstats
path: root/board
Commit message (Collapse)AuthorAgeFilesLines
* m68k: flat one memory region works with small kernel patchWaldemar Brodkorb2016-08-231-0/+45
| | | | | | | | | | | Greg Ungerer fixed recently a bug in the Linux kernel, which allows to use one memory region again. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> [Thomas: cherry-picked from next to master, in order to be able to use BR2_BINFMT_FLAT_ONE by default on m68k, since BR2_BINFMT_FLAT_SEP_DATA causes too much problems.] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/pc_x86_64_efi_defconfig: enable kernel EFI supportErico Nunes2016-08-221-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | The pc_x86_64_efi reference defconfig is targeted towards an EFI environment but the kernel which comes with it does not enable EFI support by default. Booting this defconfig without kernel EFI support on a qemu virtual machine with EFI firmware resulted in no output to tty1 or ttyS0. Enabling EFI support in the kernel fixed this and seems saner for an EFI reference Buildroot defconfig. Adding CONFIG_EFI to board/pc/linux-extras.config also affects pc_x86_64_bios_defconfig which doesn't require it, however it was observed that the extra overhead is small and so this is preferred rather than having a separate config file. This was tested with qemu 2.6.0 running with kvm enabled and firmware EFI v2.60 by EDK II. Also built and verified bios defconfig on the same setup but with BIOS firmware instead. Signed-off-by: Erico Nunes <nunes.erico@gmail.com> Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* board/beaglebone: add details on how to use the resulting sdcard.imgguillaume william brs2016-08-221-0/+10
| | | | | | Signed-off-by: Guillaume W. Bres <guillaume.bressaix@gmail.com> [Thomas: rework commit log.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* board/pc/readme.txt: fix output image nameErico Nunes2016-08-221-1/+1
| | | | | | | | The instructions listed sdcard.img as output image name but board/pc/genimage-*.cfg generate it named as disk.img instead. Signed-off-by: Erico Nunes <nunes.erico@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/odroidc2: enable console displayDagg Stompler2016-08-071-1/+1
| | | | | | | | Redirect the console output to the screen and not only to the serial port. Signed-off-by: Dagg Stompler <daggs@gmx.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* imx6ulpico: linux.fragment: Disable CONFIG_SMPFabio Estevam2016-08-051-0/+1
| | | | | | | | | | | | | | imx6ul has currently an issue on kernel 4.7 that causes a stall when running the "reboot" command. This issue has been reported in the linux-arm-kernel mailing list, but we don't have a proper fix at the moment. This problem is not seen when SMP is disabled, so let's disable it for now until a proper fix becomes available. Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs: imx6ulpico: Add Wifi supportFabio Estevam2016-08-014-0/+180
| | | | | | | | | | | | imx6ulpico has a BCM4339 Wifi chip. Add Wifi support by default to allow a better customer experience. The dts patch has already been sent to the linux-arm-kernel list and we can remove it once it reaches a mainline kernel (in version 4.9 probably). Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs: warpboard: Select wireless related packagesFabio Estevam2016-08-011-2/+0
| | | | | | | | | Let the wireless packages be selected by default to make the usage of Wifi a bit simpler. Suggested-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/freescale: drop unneeded exit statement in post-image scriptsFabio Estevam2016-08-016-12/+0
| | | | | | | | There is no need for the 'exit' statement in the post-image scripts, so just remove it. Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* warpboard: README: Improve instructions about using wifiFabio Estevam2016-07-311-1/+11
| | | | | | | | Provide a more complete set of instructions on how to get Wifi working on the warpboard. Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* zynq: unify readme.txt for all Zynq boardsMasahiro Yamada2016-07-304-90/+52
| | | | | | | | | The readme.txt for the three boards are almost the same, so merge them into board/zynq/readme.txt. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* zynq_zc706: bump U-Boot to xilinx-v2016.2Masahiro Yamada2016-07-301-48/+21
| | | | | | | | | | | | | | | | | This is the latest release tag in the Xilinx repository, based on U-Boot v2016.01 in the mainline. It includes proper ps7_init_gpl.c/h in it, so builds working SPL without any manual intervention. BR2_TARGET_UBOOT_BOARD_NAME should be changed to zynq_zc706 since U-Boot now has separate defconfig files for ZC702 and ZC706 boards. BR2_TARGET_UBOOT_SPL_NAME should be changed to spl/boot.bin since the Zynq image support for the mkimage tool was upstreamed and it now generates boot.bin under spl/ directory. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* zynq_microzed: bump U-Boot to xilinx-v2016.2Masahiro Yamada2016-07-302-85/+9
| | | | | | | | | | This is the latest release tag in the Xilinx repository, based on U-Boot v2016.01 in the mainline. To sync with the Zedboard updates, switch over to the Xilinx GitHub repository. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* zynq_zed: bump U-Boot to xilinx-v2016.2Masahiro Yamada2016-07-302-89/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is the latest release tag in the Xilinx repository, based on U-Boot v2016.01 in the mainline. Commit 46d6a561be41 ("zedboard: Generate BOOT.BIN automatically") switched from the Xilinx GitHub repository to the U-Boot mainline, but this commit gets it back to the Xilinx GitHub repository for the following reasons: - This defconfig still relies on the Xilinx's local repository for the kernel. The vendor does the best test for the combination of U-Boot and the kernel with the same release tag (xilinx-v2016.2 in this case). - At the time of commit 46d6a561be41, the u-boot-xlnx still needed manual copy of ps7_init(_gpl).c/h in order to build a working SPL image. So, the mainline U-Boot had advantage in that point of time. However, the improvement in the mainline U-Boot was merged into the u-boot-xlnx at the xilinx-v2015.3 release. Now, the mainline and the u-boot-xlnx are even in this point of view. - The mainline U-Boot defaults to boot FIT, so something must be done; either patch environments around with a local patch to switch to uImage booting (current solution), or build an FIT with a post build script (chromebook snow does this). On the other hand, the Xilinx repository defaults to uImage booting, so it is straightforward, and needs no addition care. This commit does: - Switch to the Xilinx custom git repository, and stick to the xilinx-v2016.2 tag. - Delete the local patch board/avnet/zedboard/uboot/0001... since the Xilinx custom repository can boot uImage by default. - Enable BR2_TARGET_UBOOT_FORMAT_IMG instead of ..._FORMAT_DTB_IMG since all the Zynq boards in U-Boot enable CONFIG_OF_EMBED. - Replace BR2_TARGET_UBOOT_ZYNQ_IMAGE with BR2_TARGET_UBOOT_SPL_NAME since U-Boot can natively generate the Zynq boot image now. The Zynq image support for mkimage tool was upstreamed at v2016.01 (so xilinx-v2016.1 as well), so no additional tool is needed any more. - Update readme.txt Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* warpboard: linux.fragment: Do not use CONFIG_BRCMFMAC as built-inFabio Estevam2016-07-301-1/+0
| | | | | | | | | | | | | Selecting the driver CONFIG_BRCMFMAC as built-in causes some probe issues as we cannot guarantee that the brcmfmac driver will be probed after the rootfs has been mounted. The brcmfmac driver retrieves the firmware and nvram file from the rootfs, so the rootfs should be mounted first. To avoid such issues let the CONFIG_BRCMFMAC be built as module, which is the original option in imx_v6_v7_defconfig. Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/qemu: bump to latest versionGustavo Zacarias2016-07-2726-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also bump the pc samples since they're tied to the (base) qemu config. Results table: Defconfig Kernel Qemu Network Status -------------------------------------------------------------- aarch64_virt 4.7 2.6.0 YES OK (3) arm_versatile 4.7 2.5.0 YES OK arm_vexpress 4.7 2.5.0 YES OK m68k_mcf5208 4.7 2.5.0 YES OK m68k_q800 4.7 q800-v2.4.0 NO (2) OK microblazebe 4.7 2.5.0 YES OK microblazeel 4.7 2.5.0 YES OK mips32r2el_malta 4.7 2.5.0 YES OK mips32r2_malta 4.7 2.5.0 YES OK mips32r6el_malta 4.7 2.6.0 YES OK (3) mips32r6_malta 4.7 2.6.0 YES OK (3) mips64el_malta 4.7 2.5.0 YES OK mips64_malta 4.7 2.5.0 YES OK mips64r6el_malta 4.7 2.6.0 YES OK (3) mips64r6_malta 4.7 2.6.0 YES OK (3) ppc_g3beige 4.7 2.5.0 YES OK ppc_mpc8544ds 4.7 2.5.0 YES OK ppc_virtex_ml507 4.7 2.5.0 NO OK ppc64_pseries 4.7 2.5.0 YES OK sh4 4.7 2.5.0 YES OK sh4eb 4.7 2.5.0 NO (1) OK sparc_ss10 4.7 2.5.0 YES OK sparc64_sun4u 4.7 2.5.0 YES OK sparc_sun4u 4.7 2.5.0 YES OK x86 4.7 2.5.0 YES OK x86_64 4.7 2.5.0 YES OK xtensa_lx60 4.7 2.6.0 YES OK xtensa_lx60_nommu 4.7 2.6.0 YES OK (1) - Probably an endian issue with 8139 emulation/driver (2) - There's a network interface, but enabling it in qemu fails (3) - Known to fail with qemu versions lower than 2.6.0 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs: warpboard: Move to kernel version 4.4.15Fabio Estevam2016-07-273-137/+2
| | | | | | | | | | | | | | Currently warpboard uses a 4.0.5 kernel version from github. Move to version 4.4.15, which is a long term supported kernel version. With 4.4.15 we no longer need the extra two kernel patches as they have already been upstreamed. Use a linux fragment file, so that wireless can be functional by default. Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/warpboard: Generate an sdcard imageFabio Estevam2016-07-273-5/+64
| | | | | | | | | Generate an sdcard.img image to make it easier the deployment of a Buildroot image. [Peter: drop unneeded exit statement in post-image script] Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs: Add new configuration for i.MX6UL Pico boardFabio Estevam2016-07-253-0/+116
| | | | | | | | | | | Add support for Technexion's i.MX6UL Pico board running U-boot 2016.07 and kernel 4.7. For information about this board, please visit: http://www.wandboard.org/images/hobbit/hobbitboard-imx6ul-reva1.pdf Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* board: add blackfin gdb simulator supportWaldemar Brodkorb2016-07-243-0/+102
| | | | | | | | | With this config you can bootup a Linux kernel in GDB simulator and test Blackfin kernel and userland. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* board/avnet: swap ramdisk and DT load addresses in U-Boot environmentThomas Petazzoni2016-07-242-7/+7
| | | | | | | | | | | | As reported in bug #9091, the U-Boot environment we provide for the Microzed and Zedboard platforms loads the ramdisk at 0x2000000 and the DT at 0x3000000. This means that a large enough ramdisk overwrites the DT. It makes more sense to load the DT at 0x2000000 and the ramdisk at 0x3000000. Reported-by: Michael Monaghan <michaellmonaghan@gmail.com> Tested-by: Michael Monaghan <michaellmonaghan@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs: add Arcturus uCP1020 BSP supportOleksandr G Zhadan2016-07-244-0/+832
| | | | | | | | | | | The uCP1020 product family (ucp1020) is an Arcturus Networks Inc. System on Modules product featuring a Freescale P1020 CPU, optionally populated with 1 or 2 Gig-Ethernet PHYs, DDR3, NOR Flash, eMMC NAND Flash and/or SPI Flash. Signed-off-by: Oleksandr G Zhadan <oleks@arcturusnetworks.com> Signed-off-by: Michael Durrant <mdurrant@arcturusnetworks.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/odroidc2: update boot.iniDagg Stompler2016-07-241-2/+30
| | | | | | | | | | | - fix disablehpd bug (thanks to Thomas for spotting it.) - change default HDMI mode to 1080p60hz. - add support for HDMI HotPlug Detection control. - add support for mason timer. - add support for headless boot Signed-off-by: Dagg Stompler <daggs@gmx.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs: add defconfig for TS-4800Patrick Keroulas2016-07-204-0/+109
| | | | | | | | | | | | | | | | | The TS-4800 is supported by mainline Linux as of 4.5 and by U-boot as of v2016-07. The package requires the custom ts4800-mbrboot routine. A post-image script is provided to generate an image that can be directly written to an SD card. More details on the board here: http://wiki.embeddedarm.com/wiki/TS-4800 Signed-off-by: Damien Riegel <damien.riegel@savoirfairelinux.com> Signed-off-by: Patrick Keroulas <patrick.keroulas@savoirfairelinux.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs: mx53loco: Bump U-Boot version to 2016.07Fabio Estevam2016-07-121-47/+0
| | | | | | | | Bump U-Boot version to 2016.07 and also remove the extra patch as it is already part of U-Boot mainline now. Signed-off-by: Fabio Estevam <festevam@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs: mx51evk: Bump U-Boot version to 2016.07Fabio Estevam2016-07-121-47/+0
| | | | | | | | Bump U-Boot version to 2016.07 and also remove the extra patch as it is already part of U-Boot mainline now. Signed-off-by: Fabio Estevam <festevam@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* minnowboard-max: Start X on boot and run a few demosEzequiel Garcia2016-07-043-7/+7
| | | | | | | | | Now that we've merged nodm, the autologin display manager, we can get rid of xinit, and startx hack and use nodm to start X on boot. While here, let's start xterm and glmark2, just as demos. Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs: chromebook snow: bump to linux 4.6.3Alex Suykov2016-07-042-3/+4
| | | | | | | | | No significant changes but 4.6.3 moved parts of the device tree into a different file, so dts patch must be updated. [Peter: explicitly configure kernel headers for 4.6] Signed-off-by: Alex Suykov <alex.suykov@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* board: add support for Chromebook SnowAlex Suykov2016-07-037-0/+313
| | | | | | | | | | | | | | | | | | | | | | | Chromebook Snow (Samsung XE303C12) is an Exynos 5 board with a keyboard, an 11 inch screen and a battery attached. It is relatively developer-friendly and can run mainline Linux kernels with little to no effort. There is barely anything special about this target as far as toolchain is concerned, but its bootloader only accepts signed kernel images in a Chromium OS specific format, and is not controllable otherwise. This config provides a script for building the proper kernel blobs, and a short manual for booting Buildroot images on this device. In-tree exynos_defconfig is used for the kernel, with a fragment to change mwifiex into a module. When built statically, mwifiex attempts to load its firmware before rootfs is mounted and fails. [Peter: use BR2_KERNEL_HEADERS_AS_KERNEL=y, lock kernel version, enable fit support in u-boot mkimage] Signed-off-by: Alex Suykov <alex.suykov@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/qemu: update aarch64 to linux 4.6.3Gustavo Zacarias2016-07-022-1/+1
| | | | | | | | The console problem goes away with qemu 2.6.0 so it seems it's now a requirement, update readme.txt accordingly. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* a20_ollinuxino: Accommodate U-Boot environment on SD-cardPeter Korsgaard2016-07-021-0/+1
| | | | | | | | | As described by http://linux-sunxi.org/Bootable_SD_card#SD_Card_Layout The space betweem 544KB..1MB is reserved / used for the u-boot environment, so mark it as such to make sure genimage doesn't put other partitions here. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* pcduino: Accommodate U-Boot environment on SD-cardPeter Korsgaard2016-07-021-0/+1
| | | | | | | | | As described by http://linux-sunxi.org/Bootable_SD_card#SD_Card_Layout The space betweem 544KB..1MB is reserved / used for the u-boot environment, so mark it as such to make sure genimage doesn't put other partitions here. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* orangepipc: Accommodate U-Boot environment on SD-cardPeter Korsgaard2016-07-021-0/+1
| | | | | | | | | As described by http://linux-sunxi.org/Bootable_SD_card#SD_Card_Layout The space betweem 544KB..1MB is reserved / used for the u-boot environment, so mark it as such to make sure genimage doesn't put other partitions here. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* cubieboard2: Accommodate U-Boot environment on SD-cardAlexey Brodkin2016-07-021-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | According to current "include/configs/sunxi-common.h" U-Boot environment is stored on SD-card with offset 544 kB and its size is limited as 128 kB. Given memory layout of sunxi boards: 1. SPL 2. U-Boot 3. U-Boot environment 4. Partitions (see http://linux-sunxi.org/Bootable_SD_card#SD_Card_Layout for details) we need to make sure the first real partition starts at least with 544+128 kB offset. Adding a small safety gap let's put the first partition with offset 1MB from the beginning of SD-card. Otherwise current setup gets broken as soon as one saves U-Boot environment with "saveenv" which basically overwrites FAT partition with zImage and board no longer boots into Linux kernel. [Peter: extend description, add padding to u-boot partition instead] Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Cc: Erico Nunes <nunes.erico@gmail.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Peter Korsgaard <peter@korsgaard.com> Cc: Carlos Quijano <carlos@crqgestion.es> Cc: Andi Shyti <andi@etezian.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/qemu_mips64r6el_malta_defconfig: new configurationVicente Olivert Riera2016-07-012-0/+41
| | | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Tested-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/qemu_mips64r6_malta_defconfig: new configurationVicente Olivert Riera2016-07-012-0/+41
| | | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Tested-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/qemu_mips32r6el_malta_defconfig: new configurationVicente Olivert Riera2016-07-012-0/+37
| | | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Tested-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/qemu_mips32r6_malta_defconfig: new configurationVicente Olivert Riera2016-07-012-0/+37
| | | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Tested-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/qemu_mipsel_malta_defconfig: rename to qemu_mips32r2el_malta_defconfigVicente Olivert Riera2016-07-012-0/+0
| | | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Tested-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/qemu_mips_malta_defconfig: rename to qemu_mips32r2_malta_defconfigVicente Olivert Riera2016-07-012-0/+0
| | | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Tested-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* minnowboard-max: Enable serial and HDMI consolesEzequiel Garcia2016-06-282-0/+8
| | | | | | | | | | Following what's done in Raspberry Pi's defconfigs, let's unify the consoles in Minnowboard Max defconfigs, providing consoles on HDMI and serial port. [Peter: use tty1 like on rpi] Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/toradex_apalis_imx6_defconfig: new boardSergio Prado2016-06-154-0/+94
| | | | | Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* board/atmel: update documentation with development defconfigsLudovic Desroches2016-06-121-0/+15
| | | | | | | Add a description of the development defconfig files. Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs: add support for LinkSprite pcDuinoSergey Matyukevich2016-06-126-0/+134
| | | | | | | | | Add basic support for LinkSprite pcDuino board series including pcDuino, pcDuino-Lite, pcDuino-Lite-WiFi. Tested on pcDuino-Lite-WiFi. Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/arm_juno: add support for Juno r2Joao Pinto2016-06-091-1/+16
| | | | | Signed-off-by: Joao Pinto <jpinto@synopsys.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs: new configuration for i.MX25 PDKFabio Estevam2016-06-083-0/+111
| | | | | | | | Add support for i.MX25 PDK board using U-boot 2016.05 and kernel 4.6.1. Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs: new configuration for NXP i.MX51 EVKFabio Estevam2016-06-084-0/+158
| | | | | | | | | | | | | Add a new configuration for NXP i.MX51 EVK based on U-boot 2016.05 and kernel 4.6.1. U-boot 2016.05 needs the patch c510f2e436008 ("video: ipu_common: fix build error") that is already in mainline to fix an IPU build error. We can remove this patch in the future when we switch to U-boot 2016.07. Signed-off-by: Fabio Estevam <festevam@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/qemu: bump to latest versionGustavo Zacarias2016-06-0823-102/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also bump the pc samples since they're tied to the (base) qemu config. Results table: Defconfig Kernel Qemu Network Status -------------------------------------------------------------- aarch64_virt 4.5.6 2.5.0 YES OK (4) arm_versatile 4.6.1 2.5.0 YES OK arm_vexpress 4.6.1 2.5.0 YES OK m68k_mcf5208 4.6.1 2.5.0 YES OK m68k_q800 4.6.1 q800-v2.4.0 NO (3) OK microblazebe 4.6.1 2.5.0 YES OK microblazeel 4.6.1 2.5.0 YES OK mips64el_malta 4.6.1 2.5.0 YES OK mips64_malta 4.6.1 2.5.0 YES OK mipsel_malta 4.6.1 2.5.0 YES OK mips_malta 4.6.1 2.5.0 YES OK ppc_g3beige 4.6.1 2.5.0 YES OK ppc_mpc8544ds 4.6.1 2.5.0 YES OK ppc_virtex_ml507 4.6.1 2.5.0 NO OK ppc64_pseries 4.6.1 2.5.0 YES OK sh4 4.6.1 2.5.0 YES OK sh4eb 4.6.1 2.5.0 NO (1) OK sparc_ss10 4.6.1 2.5.0 YES OK sparc64_sun4u 4.6.1 2.5.0 YES OK sparc_sun4u 4.6.1 2.5.0 YES OK x86 4.6.1 2.5.0 YES OK x86_64 4.6.1 2.5.0 YES OK xtensa_lx60 4.6.1 2.6.0 YES OK (2) xtensa_lx60_nommu 4.6.1 2.6.0 YES OK (2) (1) - Probably an endian issue with 8139 emulation/driver (2) - Linux 4.5/4.6 doesn't work with older Qemu versions (3) - There's a network interface, but enabling it in qemu fails (4) - Console looks dead in 4.6 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/beaglebone: Add missing genimage.cfg fileEzequiel Garcia2016-06-071-0/+30
| | | | | | | | | Commit 7d0b7d3c27a6 ("configs/beaglebone: Use genimage to produce the SD card image") introduce genimage usage, but forgot to add the genimage config file. Fix it. Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/beaglebone: Use genimage to produce the SD card imageEzequiel Garcia2016-06-062-29/+15
| | | | | | | | Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> [Thomas: added host dosfstools to the defconfig, needed to build a SD card image with genimage when a FAT partition is listed in the genimage configuration.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud