summaryrefslogtreecommitdiff
path: root/sys-kernel/linux-image-redcore/files/6.4-fix-bootconfig-makefile.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-11-30 21:35:25 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-11-30 21:35:25 +0000
commit5239d71537305eeb1fffbacc237d81a8af1d8840 (patch)
treed3c6412c9e3b106c68dd2ee6b6fc238b358c34d6 /sys-kernel/linux-image-redcore/files/6.4-fix-bootconfig-makefile.patch
parent8276f150f07a750456c7aa6748283fcb9180f10a (diff)
sys-kernel/linux-{image,sources}-redcore : drop old
Diffstat (limited to 'sys-kernel/linux-image-redcore/files/6.4-fix-bootconfig-makefile.patch')
-rw-r--r--sys-kernel/linux-image-redcore/files/6.4-fix-bootconfig-makefile.patch30
1 files changed, 0 insertions, 30 deletions
diff --git a/sys-kernel/linux-image-redcore/files/6.4-fix-bootconfig-makefile.patch b/sys-kernel/linux-image-redcore/files/6.4-fix-bootconfig-makefile.patch
deleted file mode 100644
index 4399ecda..00000000
--- a/sys-kernel/linux-image-redcore/files/6.4-fix-bootconfig-makefile.patch
+++ /dev/null
@@ -1,30 +0,0 @@
---- linux-5.7/tools/bootconfig/Makefile 2020-06-01 01:49:15.000000000 +0200
-+++ linux-5.7.new/tools/bootconfig/Makefile 2020-06-02 09:20:09.827274106 +0200
-@@ -2,7 +2,7 @@
- # Makefile for bootconfig command
- include ../scripts/Makefile.include
-
--bindir ?= /usr/bin
-+sbindir ?= /usr/sbin
-
- ifeq ($(srctree),)
- srctree := $(patsubst %/,%,$(dir $(CURDIR)))
-@@ -10,7 +10,7 @@
- endif
-
- LIBSRC = $(srctree)/lib/bootconfig.c $(srctree)/include/linux/bootconfig.h
--CFLAGS = -Wall -g -I$(CURDIR)/include
-+CFLAGS += -Wall -g -I$(CURDIR)/include
-
- ALL_TARGETS := bootconfig
- ALL_PROGRAMS := $(patsubst %,$(OUTPUT)%,$(ALL_TARGETS))
-@@ -24,7 +24,7 @@
- ./test-bootconfig.sh $(OUTPUT)
-
- install: $(ALL_PROGRAMS)
-- install $(OUTPUT)bootconfig $(DESTDIR)$(bindir)
--
-+ mkdir -p $(DESTDIR)$(sbindir)
-+ install -m 0755 bootconfig $(DESTDIR)$(sbindir)
- clean:
- $(RM) -f $(OUTPUT)*.o $(ALL_PROGRAMS)