diff options
| author | Alexander Kanavin <alex@linutronix.de> | 2024-05-16 13:26:33 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-05-28 09:38:23 +0100 |
| commit | b09396f08fc4b731b6e4a6cd68c7f70c75ed08e9 (patch) | |
| tree | 50a7ecc5d237a5f4f99f157fee4170f1665172df /meta/recipes-bsp/grub/files | |
| parent | e896d87b0f9f430a7b85780750defe9a2c498706 (diff) | |
| download | poky-b09396f08fc4b731b6e4a6cd68c7f70c75ed08e9.tar.gz | |
grub: remove unneeded 0001-Disable-mfpmath-sse-as-well-when-SSE-is-disabled.patch
Verified on qemux86 and qemux86-64 with grub and grub-efi.
(From OE-Core rev: d06ee594e1bbe15b3a45c9efaaddb1e869a69cb3)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/grub/files')
| -rw-r--r-- | meta/recipes-bsp/grub/files/0001-Disable-mfpmath-sse-as-well-when-SSE-is-disabled.patch | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/meta/recipes-bsp/grub/files/0001-Disable-mfpmath-sse-as-well-when-SSE-is-disabled.patch b/meta/recipes-bsp/grub/files/0001-Disable-mfpmath-sse-as-well-when-SSE-is-disabled.patch deleted file mode 100644 index 05a4697a73..0000000000 --- a/meta/recipes-bsp/grub/files/0001-Disable-mfpmath-sse-as-well-when-SSE-is-disabled.patch +++ /dev/null | |||
| @@ -1,44 +0,0 @@ | |||
| 1 | From 006799e9c4babe8a8340a24501b253e759614a2d Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Wed, 13 Jan 2016 19:17:31 +0000 | ||
| 4 | Subject: [PATCH] Disable -mfpmath=sse as well when SSE is disabled | ||
| 5 | |||
| 6 | Fixes | ||
| 7 | |||
| 8 | configure:20574: i586-poky-linux-gcc -m32 -march=core2 -msse3 | ||
| 9 | -mtune=generic -mfpmath=sse | ||
| 10 | --sysroot=/usr/local/dev/yocto/grubtest2/build/tmp/sysroots/emenlow -o | ||
| 11 | conftest -O2 -pipe -g -feliminate-unused-debug-types -Wall -W -Wshadow | ||
| 12 | -Wpointer-arith -Wmissing-prototypes -Wundef -Wstrict-prototypes -g | ||
| 13 | -falign-jumps=1 -falign-loops=1 -falign-functions=1 -mno-mmx -mno-sse | ||
| 14 | -mno-sse2 -mno-3dnow -fno-dwarf2-cfi-asm -m32 -fno-stack-protector | ||
| 15 | -mno-stack-arg-probe -Werror -nostdlib -Wl,--defsym,___main=0x8100 | ||
| 16 | -Wall -W -I$(top_srcdir)/include -I$(top_builddir)/include | ||
| 17 | -DGRUB_MACHINE_PCBIOS=1 -DGRUB_MACHINE=I386_PC -Wl,-O1 | ||
| 18 | -Wl,--hash-style=gnu -Wl,--as-needed conftest.c >&5 | ||
| 19 | conftest.c:1:0: error: SSE instruction set disabled, using 387 | ||
| 20 | arithmetics [-Werror] | ||
| 21 | cc1: all warnings being treated as errors | ||
| 22 | |||
| 23 | Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> | ||
| 24 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 25 | |||
| 26 | Upstream-Status: Pending | ||
| 27 | |||
| 28 | --- | ||
| 29 | configure.ac | 2 +- | ||
| 30 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 31 | |||
| 32 | diff --git a/configure.ac b/configure.ac | ||
| 33 | index cd667a2..8263876 100644 | ||
| 34 | --- a/configure.ac | ||
| 35 | +++ b/configure.ac | ||
| 36 | @@ -846,7 +846,7 @@ fi | ||
| 37 | if ( test "x$target_cpu" = xi386 || test "x$target_cpu" = xx86_64 ) && test "x$platform" != xemu; then | ||
| 38 | # Some toolchains enable these features by default, but they need | ||
| 39 | # registers that aren't set up properly in GRUB. | ||
| 40 | - TARGET_CFLAGS="$TARGET_CFLAGS -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-3dnow" | ||
| 41 | + TARGET_CFLAGS="$TARGET_CFLAGS -mno-mmx -mno-sse -mno-sse2 -mno-sse3 -mno-3dnow -mfpmath=387" | ||
| 42 | fi | ||
| 43 | |||
| 44 | if ( test "x$target_cpu" = xi386 || test "x$target_cpu" = xx86_64 ); then | ||
