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
23 lines
649 B
Plaintext
23 lines
649 B
Plaintext
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
PREMIRRORS:prepend = " \
|
|
cvs://.*/.* ${SOURCE_MIRROR_URL} \
|
|
svn://.*/.* ${SOURCE_MIRROR_URL} \
|
|
git://.*/.* ${SOURCE_MIRROR_URL} \
|
|
gitsm://.*/.* ${SOURCE_MIRROR_URL} \
|
|
hg://.*/.* ${SOURCE_MIRROR_URL} \
|
|
bzr://.*/.* ${SOURCE_MIRROR_URL} \
|
|
p4://.*/.* ${SOURCE_MIRROR_URL} \
|
|
osc://.*/.* ${SOURCE_MIRROR_URL} \
|
|
https?://.*/.* ${SOURCE_MIRROR_URL} \
|
|
ftp://.*/.* ${SOURCE_MIRROR_URL} \
|
|
npm://.*/?.* ${SOURCE_MIRROR_URL} \
|
|
s3://.*/.* ${SOURCE_MIRROR_URL} \
|
|
crate://.*/.* ${SOURCE_MIRROR_URL} \
|
|
gs://.*/.* ${SOURCE_MIRROR_URL} \
|
|
"
|