mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-05 05:04:44 +02:00

Some of them were introduced by mass-removal of S = WORKDIR/git assignments; rather than try to fix up (or redo) just these, I've run this sed command over the whole tree: sed -i -z -E 's/([ \t\f\v\r]*\n){3,}/\n\n/g' `find . -name *.bb -o -name *.inc` The rationale is that more than one empty line is wasting vertical screen space, and does nothing for readability. (From OE-Core rev: cedc4ff7c9bcfb22a20e43e47f9759f4007a4f1a) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
1.3 KiB
PHP
32 lines
1.3 KiB
PHP
DEFAULTTUNE ?="octeon2"
|
|
|
|
require conf/machine/include/mips/tune-mips64.inc
|
|
|
|
AVAILTUNES += "octeon2 octeon2_64 octeon3 octeon3_64"
|
|
|
|
TUNEVALID[octeon2] = "Enable optimization related to octeon2 support"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'octeon2', ' -march=octeon2 ', '',d)}"
|
|
|
|
TUNE_FEATURES:tune-octeon2 = "${TUNE_FEATURES:tune-mips64-n32} octeon2"
|
|
BASE_LIB:tune-octeon2 = "lib32"
|
|
MIPSPKGSFX_VARIANT:tune-octeon2 = "octeon2"
|
|
PACKAGE_EXTRA_ARCHS:tune-octeon2 = "mips64-n32 octeon2-n32"
|
|
|
|
TUNE_FEATURES:tune-octeon2_64 = "${TUNE_FEATURES:tune-mips64} octeon2"
|
|
BASE_LIB:tune-octeon2_64 = "lib64"
|
|
MIPSPKGSFX_VARIANT:tune-octeon2_64 = "octeon2_64"
|
|
PACKAGE_EXTRA_ARCHS:tune-octeon2_64 = "mips64 octeon2_64"
|
|
|
|
TUNEVALID[octeon3] = "Enable optimization related to octeon3 support"
|
|
TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'octeon3', ' -march=octeon3 ', '',d)}"
|
|
|
|
TUNE_FEATURES:tune-octeon3 = "${TUNE_FEATURES:tune-mips64-n32} octeon3"
|
|
BASE_LIB:tune-octeon3 = "lib32"
|
|
MIPSPKGSFX_VARIANT:tune-octeon3 = "octeon3"
|
|
PACKAGE_EXTRA_ARCHS:tune-octeon3 = "mips64-n32 octeon3-n32"
|
|
|
|
TUNE_FEATURES:tune-octeon3_64 = "${TUNE_FEATURES:tune-mips64} octeon3"
|
|
BASE_LIB:tune-octeon3_64 = "lib64"
|
|
MIPSPKGSFX_VARIANT:tune-octeon3_64 = "octeon3_64"
|
|
PACKAGE_EXTRA_ARCHS:tune-octeon3_64 = "mips64 octeon3_64"
|