Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and meta-openwrt into a single repository. Components: - poky/ Yocto core framework (BitBake + OE-Core) - meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking) - meta-openwrt/ OpenWrt customization layer - setup-env.sh One-click build environment setup - README.md Project documentation
14 lines
370 B
Bash
14 lines
370 B
Bash
#!/bin/sh
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
set -e
|
|
|
|
export GDK_PIXBUF_MODULEDIR=$D${libdir}/gdk-pixbuf-2.0/2.10.0/loaders
|
|
export GDK_PIXBUF_FATAL_LOADER=1
|
|
|
|
PSEUDO_UNLOAD=1 ${binprefix}qemuwrapper -L $D $D${libdir}/gdk-pixbuf-2.0/gdk-pixbuf-query-loaders \
|
|
>$GDK_PIXBUF_MODULEDIR/../loaders.cache && \
|
|
sed -i -e "s:$D::g" $GDK_PIXBUF_MODULEDIR/../loaders.cache
|