diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-11-07 13:31:53 +0000 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-11-07 13:31:53 +0000 |
| commit | 8c22ff0d8b70d9b12f0487ef696a7e915b9e3173 (patch) | |
| tree | efdc32587159d0050a69009bdf2330a531727d95 /meta/conf/machine/include/sh | |
| parent | d412d2747595c1cc4a5e3ca975e3adc31b2f7891 (diff) | |
| download | poky-8c22ff0d8b70d9b12f0487ef696a7e915b9e3173.tar.gz | |
The poky repository master branch is no longer being updated.
You can either:
a) switch to individual clones of bitbake, openembedded-core, meta-yocto and yocto-docs
b) use the new bitbake-setup
You can find information about either approach in our documentation:
https://docs.yoctoproject.org/
Note that "poky" the distro setting is still available in meta-yocto as
before and we continue to use and maintain that.
Long live Poky!
Some further information on the background of this change can be found
in: https://lists.openembedded.org/g/openembedded-architecture/message/2179
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/machine/include/sh')
| -rw-r--r-- | meta/conf/machine/include/sh/README | 11 | ||||
| -rw-r--r-- | meta/conf/machine/include/sh/arch-sh.inc | 9 | ||||
| -rw-r--r-- | meta/conf/machine/include/sh/tune-sh3.inc | 17 | ||||
| -rw-r--r-- | meta/conf/machine/include/sh/tune-sh4.inc | 34 |
4 files changed, 0 insertions, 71 deletions
diff --git a/meta/conf/machine/include/sh/README b/meta/conf/machine/include/sh/README deleted file mode 100644 index 87d48b927b..0000000000 --- a/meta/conf/machine/include/sh/README +++ /dev/null | |||
| @@ -1,11 +0,0 @@ | |||
| 1 | 2012/03/30 - Mark Hatle <mark.hatle@windriver.com> | ||
| 2 | - Initial Revision | ||
| 3 | |||
| 4 | Both big endian and little endian are defined for SH. | ||
| 5 | |||
| 6 | Experimental -- SH tunings have not been validated. | ||
| 7 | |||
| 8 | The TUNE_ARCH is defined as ${TUNE_ARCH:tune-${DEFAULTTUNE}}. | ||
| 9 | |||
| 10 | The TUNE_PKGARCH is defind as ${TUNE_PKGARCH:tune-${DEFAULTTUNE}}. | ||
| 11 | |||
diff --git a/meta/conf/machine/include/sh/arch-sh.inc b/meta/conf/machine/include/sh/arch-sh.inc deleted file mode 100644 index 9d70e8511d..0000000000 --- a/meta/conf/machine/include/sh/arch-sh.inc +++ /dev/null | |||
| @@ -1,9 +0,0 @@ | |||
| 1 | # SH Architecture definition | ||
| 2 | |||
| 3 | DEFAULTTUNE ?= "sh" | ||
| 4 | |||
| 5 | TUNE_ARCH = "${TUNE_ARCH:tune-${DEFAULTTUNE}}" | ||
| 6 | TUNE_PKGARCH = "${TUNE_PKGARCH:tune-${DEFAULTTUNE}}" | ||
| 7 | |||
| 8 | TUNEVALID[bigendian] = "Enabled big-endian mode." | ||
| 9 | TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'bigendian', ' -mb', ' -ml', d)}" | ||
diff --git a/meta/conf/machine/include/sh/tune-sh3.inc b/meta/conf/machine/include/sh/tune-sh3.inc deleted file mode 100644 index 77d0b71fc4..0000000000 --- a/meta/conf/machine/include/sh/tune-sh3.inc +++ /dev/null | |||
| @@ -1,17 +0,0 @@ | |||
| 1 | DEFAULTTUNE ?= "sh3" | ||
| 2 | |||
| 3 | require conf/machine/include/sh/arch-sh.inc | ||
| 4 | |||
| 5 | TUNEVALID[sh3] = "Enable SH3 optimizations" | ||
| 6 | TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'sh3', ' -m3', '', d)}" | ||
| 7 | |||
| 8 | AVAILTUNES += "sh3 sh3eb" | ||
| 9 | TUNE_FEATURES:tune-sh3 = "sh3" | ||
| 10 | TUNE_ARCH:tune-sh3 = "sh3" | ||
| 11 | TUNE_PKGARCH:tune-sh3 = "sh3" | ||
| 12 | PACKAGE_EXTRA_ARCHS:tune-sh3 = "sh sh3" | ||
| 13 | |||
| 14 | TUNE_FEATURES:tune-sh3eb = "sh3 bigendian" | ||
| 15 | TUNE_ARCH:tune-sh3eb = "sh3eb" | ||
| 16 | TUNE_PKGARCH:tune-sh3eb = "sh3eb" | ||
| 17 | PACKAGE_EXTRA_ARCHS:tune-sh3eb = "sheb sh3eb" | ||
diff --git a/meta/conf/machine/include/sh/tune-sh4.inc b/meta/conf/machine/include/sh/tune-sh4.inc deleted file mode 100644 index b4893a4748..0000000000 --- a/meta/conf/machine/include/sh/tune-sh4.inc +++ /dev/null | |||
| @@ -1,34 +0,0 @@ | |||
| 1 | DEFAULTTUNE ?= "sh4" | ||
| 2 | |||
| 3 | # Pull in sh4 for compatibility... | ||
| 4 | require conf/machine/include/sh/arch-sh.inc | ||
| 5 | |||
| 6 | TUNEVALID[sh4] = "Enable SH4 optimizations" | ||
| 7 | TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'sh4', ' -m4', '', d)}" | ||
| 8 | |||
| 9 | # NOTE: If you want to optimize to sh4a, conf/machine/include/sh/tune-sh4a.inc. | ||
| 10 | # But it is not compatible for sh4. | ||
| 11 | # The binary optimized by m4a doesn't operate on sh4. It works on sh4a only. | ||
| 12 | TUNEVALID[sh4a] = "Enable SH4a optimizations" | ||
| 13 | TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'sh4a', ' -m4a', '', d)}" | ||
| 14 | |||
| 15 | AVAILTUNES += "sh4 sh4eb sh4a sh4aeb" | ||
| 16 | TUNE_FEATURES:tune-sh4 = "sh4" | ||
| 17 | TUNE_ARCH:tune-sh4 = "sh4" | ||
| 18 | TUNE_PKGARCH:tune-sh4 = "sh4" | ||
| 19 | PACKAGE_EXTRA_ARCHS:tune-sh4 = "sh sh4" | ||
| 20 | |||
| 21 | TUNE_FEATURES:tune-sh4eb = "sh4 bigendian" | ||
| 22 | TUNE_ARCH:tune-sh4eb = "sh4eb" | ||
| 23 | TUNE_PKGARCH:tune-sh4eb = "sh4eb" | ||
| 24 | PACKAGE_EXTRA_ARCHS:tune-sh4eb = "sheb sh4eb" | ||
| 25 | |||
| 26 | TUNE_FEATURES:tune-sh4a = "sh4a" | ||
| 27 | TUNE_ARCH:tune-sh4a = "sh4" | ||
| 28 | TUNE_PKGARCH:tune-sh4a = "sh4a" | ||
| 29 | PACKAGE_EXTRA_ARCHS:tune-sh4a = "sh sh4 sh4a" | ||
| 30 | |||
| 31 | TUNE_FEATURES:tune-sh4aeb = "sh4a bigendian" | ||
| 32 | TUNE_ARCH:tune-sh4aeb = "sh4eb" | ||
| 33 | TUNE_PKGARCH:tune-sh4aeb = "sh4aeb" | ||
| 34 | PACKAGE_EXTRA_ARCHS:tune-sh4aeb = "sheb sh4eb sh4aeb" | ||
