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