summaryrefslogtreecommitdiffstats
path: root/meta-yocto-bsp
Commit message (Collapse)AuthorAgeFilesLines
* meta-yocto-bsp: beaglebone-yocto.conf: support 8250 serial driverHeiko Schocher2018-11-141-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | it is possible to use the beagleboneblack with the 8250 serial driver or with the deprecated omap serial driver. Unfortunately serial console get different names (ttyS0 with 8250 driver and ttyO0 with omap driver) So set SERIAL_CONSOLES to SERIAL_CONSOLES ?= "115200;ttyS0 115200;ttyO0" (intentionally with "?=" so it is overwriteable) and activate SERIAL_CONSOLES_CHECK = "${SERIAL_CONSOLES}" with that on the first boot the correct value is picked up automatically. (From meta-yocto rev: ffd224382af6fe1f5eeae32d7b28cc975acdde05) Signed-off-by: Heiko Schocher <hs@denx.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: update genericx86* SRCREV for 4.18Anuj Mittal2018-10-201-4/+4
| | | | | | | | | Bump to kernel release v4.18.14. (From meta-yocto rev: 7cf931279918affe77330f7803e57678c33f5e51) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: update genericx86* SRCREV for 4.14Anuj Mittal2018-10-201-4/+4
| | | | | | | | | Bump to kernel release v4.14.76. (From meta-yocto rev: e864c929738fcd07e1b2a2d1e04800d82030b4a5) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-yocto-bsp: bump to the latest linux stable kernel for the non-x86 BSPsKevin Hao2018-09-252-12/+12
| | | | | | | | | Bump to the latest stable kernel for 4.14 and 4.18. (From meta-yocto rev: f7d36129adfeb0d0d5fe26675e2668c49573a32d) Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* layer.conf: Update sumo->thud in preparation for releaseRichard Purdie2018-09-241-1/+1
| | | | | | (From meta-yocto rev: 2404cddc02b428fb510574b02707f7e0b68e31e8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: update genericx86* SRCREV for 4.14Anuj Mittal2018-09-241-4/+4
| | | | | | | | | Bump to kernel release v4.14.71. (From meta-yocto rev: b08448debe424211ee721e54eff28f78469cc2a2) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: update genericx86* SRCREV for 4.18Anuj Mittal2018-09-241-4/+4
| | | | | | | | | Bump to kernel release v4.18.9. (From meta-yocto rev: c3fb4f3d469272ade1584ca8f76fa116ab09e2e4) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* genericx86-common.inc: remove eee-acpi-scriptsAlexander Kanavin2018-09-101-1/+1
| | | | | | | | | | Asus EEEpc hardware hasn't been produced for a long time; upstream repo is now gone. (From meta-yocto rev: 76cd3a475ebce4ae26fc3aae0f2b43628926f7b0) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* yocto-bsp: drop 4.12 bbappendRichard Purdie2018-09-041-28/+0
| | | | | | | | | 4.18 is replacing 4.12 as the latest kernel in the upcoming release, so we drop this dangling bbappend. (From meta-yocto rev: 6686fbad03d8de5d29d58aae149e253474336d5f) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* yocto-bsp: drop 4.15 bbappendBruce Ashfield2018-09-041-27/+0
| | | | | | | | | | 4.18 is replacing 4.15 as the latest kernel in the upcoming release, so we drop this dangling bbappend. (From meta-yocto rev: 14e89c34cc0cb9e74075cd5a86500426701b1c8d) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-yocto-bsp: Bump the kernel to v4.18Kevin Hao2018-08-284-3/+30
| | | | | | | | | Bump the kernel to v4.18 for all the boards in meta-yocto-bsp layer. (From meta-yocto rev: 1e672581cc3fc695570f1ae9f951efbe4b05733a) Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* machine configs: replace deprecated "SERIAL_CONSOLE"Maciej Pijanowski2018-08-153-4/+4
| | | | | | | | | | | | | | | | | | | | | | SERIAL_CONSOLE was already deprecated in 2013, yet still some machine configuration files were using it. This patch replaces it with SERIAL_CONSOLES, which is the successor. The default value in systemd-serialgetty.bb can also be safely transitioned from SERIAL_CONSOLE to SERIAL_CONSOLES, as this recipe already uses SERIAL_CONSOLES within do_install(). The documentation seems to be already up do date. beaglebone-yocto.conf in the bsp-guide already uses SERIAL_CONSOLES. The ref-manual redirects from SERIAL_CONSOLE to SERIAL_CONSOLES. [YOCTO #12653] (From meta-yocto rev: a0c5332aefe75cf314e78284f578b17c51b8ab27) Signed-off-by: Maciej Pijanowski <maciej.pijanowski@3mdeb.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-yocto-bsp: beaglebone: Use the uuid for the block device naming in wic ↵Kevin Hao2018-08-151-2/+2
| | | | | | | | | image (From meta-yocto rev: b713626dda68d4f03632da2ecbb1e073397e0c7a) Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-yocto-bsp: beaglebone: Add the u-boot boot config file for the wic imageKevin Hao2018-08-152-2/+2
| | | | | | | (From meta-yocto rev: 800fc3ea87add6a7205ecfa3b088701ed635082f) Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oeqa/systemdboot: Cleanup/improve the testRichard Purdie2018-08-071-43/+18
| | | | | | | | | | | | | | | | | | | | The second test is designed only to run after the first so we may as well merge these together into one. Also, use DEPLOY_DIR_IMAGE rather than constructing paths by hand. Drop the misleading comment which was likely due to the original code reading DEPLOY_DIR_IMAGE before setting MACHINE. Only read the variable once which reduces bitbake -e calls. Merge the setup/build functions into the main test as there is no other use of them. Also ensure the main second test pieces aren't masked out by a missing file without showing test failures. (From meta-yocto rev: 1b46e2c1acd2c0cd557740220bbc3ccb77dae127) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* genericx86-common.inc: add kernel-modules to RRECOMMENDSAnuj Mittal2018-08-021-1/+1
| | | | | | | | | | | Now that kernel-modules are not included in x86-base.inc because of changes done for YOCTO #12384, add them to RRECOMMENDS explicitly for genericx86*. (From meta-yocto rev: 0b78254b373c23f2c1a2bf7db0108a350266ab85) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* oeqa/selftest/systemd_boot: Never use cleansstate in QA tests without ↵Richard Purdie2018-07-151-1/+1
| | | | | | | | | | | | | | | special handling of SSTATE_DIR Removing things straight from the live sstate directory is prone to issues since other builds may be relying on the artefact presence. Also, cleansstate is very slow on the huge sstate that the autobuilder has on slow NFS drives. This may well be causing long buildtimes in oe-selftest as the time taken to remove the artefact by be long. (From meta-yocto rev: 1ed60bfb46569a8b8c29f24187390ba79686486a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-yocto-bsp: mpc8315e-rdb.conf: use mpc8315erdb.dtb without the ↵Martin Jansa2018-07-101-1/+1
| | | | | | | | | | | | | | | | | | | | | KERNEL_IMAGETYPE_FOR_MAKE as a prefix * fix the issue with newer kernel-devicetree.bbclass as reported by RP in http://lists.openembedded.org/pipermail/openembedded-core/2018-July/152594.html with changes from http://lists.openembedded.org/pipermail/openembedded-core/2018-July/152560.html the bbclass no longer creates the dtb files prefixed with KERNEL_IMAGETYPE_FOR_MAKE: deploy/images/mpc8315e-rdb/uImage-mpc8315erdb.dtb use the version less symlink: -rw-r--r-- 2 bitbake bitbake 9.3K Jul 9 13:30 deploy/images/mpc8315e-rdb/mpc8315erdb--4.15.18+git0+45c256a5ca_0b32edc46d-r0.2-mpc8315e-rdb-20180709125726.dtb lrwxrwxrwx 2 bitbake bitbake 84 Jul 9 13:30 deploy/images/mpc8315e-rdb/mpc8315erdb.dtb -> mpc8315erdb--4.15.18+git0+45c256a5ca_0b32edc46d-r0.2-mpc8315e-rdb-20180709125726.dtb lrwxrwxrwx 2 bitbake bitbake 84 Jul 9 13:30 deploy/images/mpc8315e-rdb/mpc8315erdb-mpc8315e-rdb.dtb -> mpc8315erdb--4.15.18+git0+45c256a5ca_0b32edc46d-r0.2-mpc8315e-rdb-20180709125726.dtb (From meta-yocto rev: 1f8b8d266a3e8dbe7c447d074446c9f27526991e) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-yocto-bsp: Workaround the Ethernet malfunction on edgerouter when ↵Kevin Hao2018-06-212-2/+2
| | | | | | | | | | | | building with gcc8 Update the kernel for v4.14 and v4.15 to include a workaround of the Ethernet malfunction on edgerouter board when building with gcc8. (From meta-yocto rev: a503919e72fad9556ab0f51a78b92ef3e0075e97) Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-yocto-bsp: mpc8315e-rdb: Change kernel provider assignment to a weaker oneHe Zhe2018-06-211-1/+1
| | | | | | | | | | | Currently mpc8315e-rdb.conf comes after local.conf during parsing. We should give local.conf a chance to overwrite the kernel provider assignment, like other BSPs. (From meta-yocto rev: c5c70afb0306d96ae63d7a67d658524ed6d91e88) Signed-off-by: He Zhe <zhe.he@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-yocto-bsp: Let yocto BSPs be able to build with linux-yocto-devHe Zhe2018-06-211-0/+15
| | | | | | | (From meta-yocto rev: 28f141bc0015664c05c2cd33155fefd58def3b59) Signed-off-by: He Zhe <zhe.he@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-yocto-bsp: bump to the latest linux stable kernel for edgerouter/beagleboneuninative-2.12.6_M1Richard Purdie2018-06-122-3/+3
| | | | | | | | | Bump to the latest stable kernel for 4.14 and 4.15 for edgerouter/beaglebone to fix gcc8 build issues. (From meta-yocto rev: c5e07b460cf9477181d2dcde8ea93daeeacc9a2e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-yocto-bsp: bump to the latest linux stable kernel for the non-x86 BSPsKevin Hao2018-06-123-18/+18
| | | | | | | | | Bump to the latest stable kernel for 4.12, 4.14 and 4.15. (From meta-yocto rev: eb025ae398c0042ddc7be75e4ebdeb1fb1344c03) Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: update genericx86* SRCREVs for 4.15Anuj Mittal2018-06-121-4/+4
| | | | | | | | | Bump to kernel release 4.15.18. (From meta-yocto rev: 64e3554d2bdaf037fc7ed86ace468ff2f75a698b) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: update genericx86* SRCREVs for 4.14Anuj Mittal2018-06-121-4/+4
| | | | | | | | | Bump to kernel release 4.14.48. (From meta-yocto rev: f37cf4dbcadabbbc8445b5c51187a59c2e64d3ec) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: update genericx86* SRCREVs for 4.12Anuj Mittal2018-06-121-4/+4
| | | | | | | | | Bump to kernel release 4.12.24. (From meta-yocto rev: a2960aacf413837c168e303a89b80fdbb12d3263) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* layer.conf: Update LAYERSERIES rocko -> sumoRichard Purdie2018-04-061-1/+1
| | | | | | (From meta-yocto rev: db28e5c97895d2a25098aaac7f0a65d4f2a01866) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* conf/machine: Drop pointless spaces in MACHINE_EXTRA_RRECOMMENDSRichard Purdie2018-03-313-3/+3
| | | | | | | | These spaces aren't needed and are confusing people. Remove them. (From meta-yocto rev: 36d20206b73d2efbf72353030b786483eb8749b6) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-yocto-bsp: introduce v4.14&v4.15 kernel for non-x86 BSPsKevin Hao2018-03-305-3/+29
| | | | | | | | | Also set the default kernel of these BSPs to v4.15. (From meta-yocto rev: 4c35cdf84b24104c341b986dd3e04323aca894c4) Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-yocto-bsp: bump to the latest v4.12 stable kernel for the non-x86 BSPsKevin Hao2018-03-301-6/+6
| | | | | | | (From meta-yocto rev: 08884dc6ed749da5e7f73c9045a56d2dd53827bb) Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: update genericx86* SRCREVs for 4.15Anuj Mittal2018-03-301-4/+4
| | | | | | | | | Bump to stable kernel release 4.15.13. (From meta-yocto rev: 5c9a1efdf7d563fd73660e6caf8c17db1fd6b32d) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: update genericx86* SRCREVs for 4.14Anuj Mittal2018-03-301-4/+4
| | | | | | | | | Bump to stable kernel release 4.14.30 (From meta-yocto rev: 88be67e699c4a9e4277f3977f3525b9c3b3ff101) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: update genericx86* SRCREVs for 4.12Anuj Mittal2018-03-301-4/+4
| | | | | | | | | Bump to stable kernel release 4.12.21. (From meta-yocto rev: de49fbc8dda014ab26294ff97955d545dd09123c) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: introduce 4.15 bbappend for genericx86* BSPsAnuj Mittal2018-02-201-0/+14
| | | | | | | | | Sync with stable kernel release 4.15.3 in oe-core. (From meta-yocto rev: b86dc8e9954b30202ac09ece96a2a3dc55f429b9) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: introduce 4.14 bbappend for genericx86* BSPsAnuj Mittal2018-02-201-0/+14
| | | | | | | | | Sync with stable kernel release 4.14.19 in oe-core. (From meta-yocto rev: f58ff02412b0b22e4e7cfe55f578a5e3e5b971c6) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: update genericx86* SRCREVs for v4.12Anuj Mittal2018-02-201-4/+4
| | | | | | | | | Bump to stable kernel release 4.12.20 (From meta-yocto rev: a3d67bf445f07b374ad47c2489706a3d50a7e474) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* yocto-bsp: delete bbappends for removed kernelsBruce Ashfield2018-02-153-81/+0
| | | | | | | | | | | | | | 4.4/4.9/4.10 are gone from oe-core master, so we can drop our bbappends. 4.12 will be removed in the future and 4.14/4.15 added, but all default versions should be 4.12+ now. (From meta-yocto rev: fd333864ce66ca32828b3d290ea8aae4f489de9b) Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-yocto-bsp: bump to the latest linux stable kernel for the non-x86 BSPsKevin Hao2018-02-153-18/+18
| | | | | | | | | Bump to the latest stable kernel for 4.4, 4.9 and 4.12. (From meta-yocto rev: 4e71a79346351f8026a65cfbd68ed0bc8f5eed5c) Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: update genericx86* SRCREVs for v4.9Anuj Mittal2018-01-301-4/+4
| | | | | | | | | Bump to stable kernel release 4.9.78. (From meta-yocto rev: 8a895e83a7a5c09d2f9f4069b8c8eb92d9b3b738) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: update genericx86* SRCREVs for v4.4Anuj Mittal2018-01-301-4/+4
| | | | | | | | | Bump to stable kernel release 4.4.113. (From meta-yocto rev: 0cf39e1429549a11e6487906e89c830bdf985741) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: update genericx86* SRCREVs for v4.12Anuj Mittal2018-01-301-4/+4
| | | | | | | | | Bump to stable kernel release 4.12.19. (From meta-yocto rev: 4c9ced4020f4cc3092af06889bf6ac209e15d5a6) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: update genericx86* SRCREVs for v4.12Anuj Mittal2018-01-071-4/+4
| | | | | | | | | Bump to stable kernel release v4.12.18. (From meta-yocto rev: 11245b435230808e899e475e620b25b44599cd06) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: update genericx86* SRCREVs for v4.9Anuj Mittal2018-01-071-4/+4
| | | | | | | | | Bump to stable kernel release v4.9.65. (From meta-yocto rev: 074666026257a11dc5c24b16fbd3cb732fdc32d6) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* linux-yocto: update genericx86* SRCREVs for v4.4Anuj Mittal2018-01-071-4/+4
| | | | | | | | | Bump to stable kernel release v4.4.93. (From meta-yocto rev: d34f1b28d08c3943b1b30944b4e79e193d0a8237) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-yocto-bsp: bump to the latest linux stable kernel for the non-x86 BSPsKevin Hao2018-01-073-18/+18
| | | | | | | | | Bump to the latest stable kernel for 4.4, 4.9 and 4.12. (From meta-yocto rev: f77e7b8c816742fbf5790f11997746958c593f1e) Signed-off-by: Kevin Hao <kexin.hao@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* beaglebone-yocto: rename beaglebone machine to beaglebone-yoctoJoshua Lock2017-11-1110-23/+27
| | | | | | | | | | | | | | | | | The beaglebone BSP provided in this layer is a reference implementation usingonly mainline components available in core Yocto Project layers, whereas Texas Instruments maintain a full-featured BSP in the meta-ti layer. Rename the reference machine to prevent namespace collisions with the version maintained by the SoC vendor. [YOCTO #12326] (From meta-yocto rev: e32882938eca7f50548deab84dab78b4aef31b95) Signed-off-by: Joshua Lock <joshua.g.lock@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* meta-yocto-bsp/lib/oeqa: remove yoctobsp selftestJoshua Lock2017-11-051-39/+0
| | | | | | | | | | | The yocto-bsp script has been removed, thus there's no need for this test for the script. (From meta-yocto rev: 280130bb02b550e882eb203328689b1526fa462c) Signed-off-by: Joshua Lock <joshua.g.lock@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* beaglebone: Find /boot partition on mmcblk0Drew Moseley2017-11-051-1/+1
| | | | | | | | | | | | | After commit edcf39820f94c84b29c95a0d7b16b8d36857e87b the beaglebone builds fail to mount the boot partition as it is specified in /etc/fstab with the device node /dev/mmcblkp1. With systemd in particular this is considered an error and the system drops into emergency mode. (From meta-yocto rev: 11dbb98836768b71945817881709c5437d6eec6b) Signed-off-by: Drew Moseley <drew.moseley@northern.tech> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* packagegroups: remove a bbappendSlater, Joseph2017-10-091-2/+0
| | | | | | | | | | Force items into packagegroup-core-tools-profile? I don't think so. (From meta-yocto rev: df0f331832fad818604d8696700765fb4d3ba072) Signed-off-by: Joe Slater <jslater@windriver.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
* yocto-bsp: add BBG dtbAnders Darander2017-09-261-1/+1
| | | | | | | | | | As 4.4 is the lowest kernel version in oe-core, we can add the dtb for the beaglebon green to the list of dtb's to generate. (From meta-yocto rev: dc77383ca352431cba7cb779899220db4eaa0cba) Signed-off-by: Anders Darander <anders@chargestorm.se> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>