aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-bsp
AgeCommit message (Collapse)Author
2016-07-08firmware: Upgrade to 20160622Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2016-07-08rpi-mkimage: Remove unused recipePaul Barker
The rpi-mkimage tools are no longer used. Recent Raspberry Pi firmware can directly boot a Linux kernel image using device tree and mainline u-boot supports Raspberry Pi without the use of these tools. Signed-off-by: Paul Barker <paul@paulbarker.me.uk>
2016-07-08u-boot: Use mainline u-boot recipe from oe-corePaul Barker
The repository used by u-boot-rpi has not been updated since 2012. In the meantime, mailine u-boot has gained Raspberry Pi support. All we need to do is set UBOOT_MACHINE to an appropriate value in the machine config files. Currently configs are only provided for raspberrypi and raspberrypi2. The master branch of u-boot now also appears to have a config file for raspberrypi3 so support for this can be added in the future when u-boot is upgraded in oe-core. The mainline u-boot recipe creates the file "u-boot.bin" instead of "u-boot.img". Signed-off-by: Paul Barker <paul@paulbarker.me.uk>
2016-05-19firmware: Update to "20160512" snapshotKhem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2016-04-21rpi-config: Add UART enablerTheodor Gherzan
Signed-off-by: Theodor Gherzan <theodor@resin.io> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2016-04-21firmware.inc: Update firmware to include various serial fixesTheodor Gherzan
Signed-off-by: Theodor Gherzan <theodor@resin.io> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2016-04-13pitft: Add support for pitft28rPetter Mabäcker
The support for PiTFT 28 inch resistive touchscreen is optional and can be enabled by adding below in local.conf: MACHINE_FEATURES += "pitft pitft28r" While at it also fix a minor typo in README. Signed-off-by: Petter Mabäcker <petter@technux.se>
2016-04-01firmware: Update to 20160326Khem Raj
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2016-03-10bcm2835-bootfiles: Update LICENCE md5 due to firmware revision updateTheodor Gherzan
Signed-off-by: Theodor Gherzan <theodor@resin.io>
2016-03-10firmware.inc: Update revision to include rpi3 supportTheodor Gherzan
Signed-off-by: Theodor Gherzan <theodor@resin.io>
2016-03-01pitft: Add PiTFT22 supportPetter Mabäcker
- Add support to build overlays for PiTFT22 in the kernel. - Setup a basic configuration for the driver The PiTFT22 support is optional and can be enabled by adding below in local.conf: MACHINE_FEATURES += "pitft pitft22" This patch also includes restructuring of kernel patches per kernel version specific directories. [Support #70] Signed-off-by: Petter Mabäcker <petter@technux.se> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2016-03-01u-boot-rpi: update path to imagetool-uncompressed.pyJonathan Liu
Signed-off-by: Jonathan Liu <net147@gmail.com>
2016-03-01rpi-mkimage: install to bindir instead of libexecdirJonathan Liu
On fido and earlier branches, ${libexecdir} depends on ${BPN} so it is not a good choice as ${libexecdir} is different depending on the recipe name. For example, rpi-mkimage would install mkknlimg to: [...]/sysroots/x86_64-linux/usr/lib/rpi-mkimage but linux-raspberrypi would look for mkknlimg in the path: [...]/sysroots/x86_64-linux/usr/lib/linux-raspberrypi To resolve this, we use ${bindir} instead as it doesn't depend on ${BPN} in fido and earlier branches as well as in the master branch. Signed-off-by: Jonathan Liu <net147@gmail.com>
2016-03-01pitft: Add basic support for PiTFTPetter Mabäcker
Add basic support for PiTFT display by using device-trees. In order get it working below configurations must be active in local.conf: MACHINE_FEATURES += "pitft" - This will enable SPI bus and i2c device-trees, it will also setup framebuffer for console and x server on PiTFT. [Support #70] Signed-off-by: Petter Mabäcker <petter@technux.se> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2016-03-01rpi-config: I2C supportPetter Mabäcker
With newer kernels (>=3.18) that supports device-trees I2C should be enabled with device-trees. This is now support by adding: ENABLE_I2C = "1" in local.conf This will enable the dtparams: i2c1 i2c_arm Signed-off-by: Petter Mabäcker <petter@technux.se> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2016-02-28rpi-config: Upgrade to tip of tree to get GPU_MEM_1024Khem Raj
Document it in README Signed-off-by: Khem Raj <raj.khem@gmail.com>
2016-02-28u-boot-rpi: update path to imagetool-uncompressed.pyJonathan Liu
Signed-off-by: Jonathan Liu <net147@gmail.com>
2016-02-28rpi-mkimage: install to ${libexecdir}Jonathan Liu
It doesn't make sense to install to ${libexecdir}/rpi-mkimage as it changes the path on fido and earlier branches from: [...]/sysroots/x86_64-linux/usr/lib/rpi-mkimage to: [...]/sysroots/x86_64-linux/usr/lib/rpi-mkimage/rpi-mkimage Using ${libexecdir} instead of ${libexecdir}/rpi-mkimage preserves the path for fido and earlier. Signed-off-by: Jonathan Liu <net147@gmail.com>
2016-02-26u-boot-rpi: use STAGING_LIBEXECDIR_NATIVE for rpi-mkimage toolsMaciej Borzecki
The rpi-mkimage tools are installed ${libexecdir}/rpi-mkimage within native sysroot, where ${libexecdir} resolves to /usr/libexec. This caused the build to fail due to recipe trying to access ${libdir}/mkimage. Fix the paths to use an unambiguous STAGING_LIBEXECDIR_NATIVE so that a proper location is used. Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl>
2016-02-26rpi-mkimage: install tools under {libexecdir}/rpi-mkimageMaciej Borzecki
For consistency with other recipes that look for mkimage tools (u-boot-rpi, linux-raspberrypi) under ${libexecdir}/rpi-mkimage, make sure that the tools are installed at the proper location. Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl>
2015-12-02rpi-config: SPI bus supportGary Thomas
With the newer kernels that use device tree, the SPI bus is only enabled by a device tree setting. This is now supported by adding ENABLE_SPI_BUS = "1" in local.conf Signed-off-by: Gary Thomas <gary@mlbassoc.com>
2015-10-21rpi-mkimage: Bump revisionAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2015-10-21firmware: Bump revisionAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2015-09-24rpi-config: fix setting decode_WVC1 in config.txtJonathan Liu
Signed-off-by: Jonathan Liu <net147@gmail.com>
2015-07-19rpi-mkimage: Bump SRCREVPetter Mabäcker
Update to latest version of rpi-mkimg [Support #60] Signed-off-by: Petter Mabäcker <petter@technux.se> Acked-by: Andrei Gherzan <andrei@gherzan.ro>
2015-07-19bcm: Bump SRCREVPetter Mabäcker
Update to latest version of firmware.git [Support #60] Signed-off-by: Petter Mabäcker <petter@technux.se> Acked-by: Andrei Gherzan <andrei@gherzan.ro>
2015-03-12firmware.inc: Move to recipes-bspAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2015-03-12bootfiles: Move to recipes-bspAndrei Gherzan
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2015-02-05devicetree: Add minimal support with RPi bootloaderFrancois Muller
[RPi DT info] https://github.com/raspberrypi/documentation/blob/master/configuration/device-tree.md#part-3-using-device-trees-on-raspberry-pi RPi bootloader detects a DT-ready kernel by checking for a specific trailer in kernel.img. Using latest raspberrypi/firmware (firmware.inc) enables this check ability. Using latest raspberrypi/tools (rpi-mkimage.bb) gives access to mkknlimg for adding the required trailer to kernel image. If KERNEL_DEVICETREE is filled in, the trailer is added to the kernel image before kernel install task. While creating the SDCard image, this modified kernel is put on boot partition (as kernel.img) as well as DeviceTree blobs (.dtb files). If KERNEL_DEVICETREE is empty, this new process isn't operated, legacy one does. KERNEL_DEVICETREE for RPi is really supported only starting from linux-rapsberry 3.18+ kernels, so as for now it defaults to empty (in machine config file). Change-Id: Ifea71bbda729b8f3c47be7ba0ba03be5ad2ceeaa Signed-off-by: Francois Muller <francois@concept-embarque.fr>
2014-05-08Remove uses of PRINCPaul Barker
PRINC is now obsolete and the PR Service should be used instead to keep PR values incrementing on change. A patch has also been submitted to openembedded-core to bump the appropriate PR values so that PR doesn't move backwards. This patch should only be applied after that patch, and only to branches which include that patch (ie. if that patch doesn't go into daisy in oe-core, this patch shouldn't go into daisy in meta-raspberrypi). Change-Id: Ibac9e4e89d12dbd6e94430f47e20b82a67506625 Signed-off-by: Paul Barker <paul@paulbarker.me.uk> Acked-by: Andrei Gherzan <andrei@gherzan.ro>
2014-02-09rpi-mkimage: Integrate packageAndrei Gherzan
Tool needed to convert bootable images in kernel.img files which can be loaded by rpi bootloader. Change-Id: I0088707be5d31d77def1087f51e3f8cc886d19db Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2014-02-09u-boot-rpi: Integrate packageAndrei Gherzan
Change-Id: I61f2cd7d3b64ea3efac618aa2bb3555e9e79da2a Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-04-03formfactor: Add RaspberryPi formfactor.David-John Willis