summaryrefslogtreecommitdiff
path: root/target/linux/patches/4.1.51/use-libgcc-for-sh.patch
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2020-01-30 09:20:16 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2020-01-30 09:20:16 +0100
commit11f569583fa14cc97566d6464635309cdc7b5e35 (patch)
tree1e1ce4cebd1f19dd98077f617ed8e79c79c7524c /target/linux/patches/4.1.51/use-libgcc-for-sh.patch
parent4d0218cb27d63b4e3d06a9e740348470c8f9e182 (diff)
linux: update 3.16.x kernel, remove unsupported
Diffstat (limited to 'target/linux/patches/4.1.51/use-libgcc-for-sh.patch')
-rw-r--r--target/linux/patches/4.1.51/use-libgcc-for-sh.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/target/linux/patches/4.1.51/use-libgcc-for-sh.patch b/target/linux/patches/4.1.51/use-libgcc-for-sh.patch
deleted file mode 100644
index 6420219b0..000000000
--- a/target/linux/patches/4.1.51/use-libgcc-for-sh.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-diff -Nur linux-4.1.13.orig/arch/sh/Makefile linux-4.1.13/arch/sh/Makefile
---- linux-4.1.13.orig/arch/sh/Makefile 2015-11-09 23:34:10.000000000 +0100
-+++ linux-4.1.13/arch/sh/Makefile 2015-12-06 19:59:31.000000000 +0100
-@@ -200,7 +206,9 @@
- KBUILD_CFLAGS += -fasynchronous-unwind-tables
- endif
-
--libs-$(CONFIG_SUPERH32) := arch/sh/lib/ $(libs-y)
-+LIBGCC = $(shell $(CC) $(KBUILD_CFLAGS) -print-file-name=libgcc.a)
-+
-+libs-$(CONFIG_SUPERH32) := arch/sh/lib/ $(libs-y) $(LIBGCC)
- libs-$(CONFIG_SUPERH64) := arch/sh/lib64/ $(libs-y)
-
- BOOT_TARGETS = uImage uImage.bz2 uImage.gz uImage.lzma uImage.xz uImage.lzo \
-diff -Nur linux-4.1.13.orig/arch/sh/lib/Makefile linux-4.1.13/arch/sh/lib/Makefile
---- linux-4.1.13.orig/arch/sh/lib/Makefile 2015-11-09 23:34:10.000000000 +0100
-+++ linux-4.1.13/arch/sh/lib/Makefile 2015-12-06 19:59:14.000000000 +0100
-@@ -5,11 +5,6 @@
- lib-y = delay.o memmove.o memchr.o \
- checksum.o strlen.o div64.o div64-generic.o
-
--# Extracted from libgcc
--obj-y += movmem.o ashldi3.o ashrdi3.o lshrdi3.o \
-- ashlsi3.o ashrsi3.o ashiftrt.o lshrsi3.o \
-- udiv_qrnnd.o
--
- udivsi3-y := udivsi3_i4i-Os.o
-
- ifneq ($(CONFIG_CC_OPTIMIZE_FOR_SIZE),y)