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
18 lines
819 B
PHP
18 lines
819 B
PHP
#
|
|
# Tune Settings for Neoverse-E1
|
|
#
|
|
DEFAULTTUNE ?= "neoversee1"
|
|
|
|
TUNEVALID[neoversee1] = "Enable Neoverse-E1 specific processor optimizations"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'neoversee1', ' -mcpu=neoverse-e1', '', d)}"
|
|
|
|
require conf/machine/include/arm/arch-armv8-2a.inc
|
|
|
|
# Little Endian base configs
|
|
AVAILTUNES += "neoversee1"
|
|
ARMPKGARCH:tune-neoversee1 = "neoversee1"
|
|
# We do not want -march since -mcpu is added above to cover for it
|
|
TUNE_FEATURES:tune-neoversee1 = "aarch64 crypto neoversee1"
|
|
PACKAGE_EXTRA_ARCHS:tune-neoversee1 = "${PACKAGE_EXTRA_ARCHS:tune-armv8-2a-crypto} neoversee1"
|
|
BASE_LIB:tune-neoversee1 = "lib64"
|