...
. | Links | |
---|---|---|
📦 RZ/G2 Linux Package (Common for all MPU ▲ ▲ ▲ ) ZIP file containing Yocto BSP and all documentation
| RZ/G2, RZ/G3 (all)
| |
🎨 Graphics (PowerVR) and 🎦 Video Codec Libraries
| RZ/G2H, RZ/G2M, RZ/G2N, RZ/G2E | |
🎨 Graphics (Mali) Libraries
| RZ/G2L, RZ/G2LC, RZ/G2UL
| |
🎦 Video Codec Libraries
| RZ/G2L 💾Download Page RZ/V2L 💾 Download Page | |
🌐 HTML5 Browser (Gecko/Firefox)
| 💾 Download Page | |
📄 BSP Manual Set Detailed information about Device Drivers and Device Tree Settings | 📄 RZ/G2H, RZ/G2M, RZ/G2N, and RZ/G2E (link) |
...
Files were removed from the the Debian server which causes a build error when building the BSP v3.0.6.
...
This effects BSP v3.0.6, v3.0.6-update1, v3.0.6-update2
This issue has been fixed for v3.0.6-update3.
Below are instructions to download and apply patches to fix those issues for update1 or update 2.
cd meta-renesas
# Change deb10u2 to dev10u3
wget https://github.com/renesas-rz/meta-renesas/commit/a56169f6642d.patch
patch -p1 -i a56169f6642d.patch
# Change deb10u3 to dev10u4
wget https://github.com/renesas-rz/meta-renesas/commit/6c11ae542069.patch
patch -p1 -i 6c11ae542069.patch
The Multimedia Package for RZ/G2 on renesas.com is V1.0.2
When building, the follow error will occur.
ERROR: gstreamer1.0-omx-1.16.3-r0 do_fetch: Bitbake Fetcher Error: FetchError('Unable to fetch URL from any source.', 'git://anongit.freedesktop.org/gstreamer/common;destsuffix=git/common;name=common')
The reason is that the server name has change from anongit.freedesktop.org to gitlab.freedesktop.org
The easiest way to fix this issue is to run the command below from the base of your BSP directory.
sed -i 's/anongit/gitlab/' meta-rz-features/meta-rz-codecs/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.16.3.bbappend
...