summaryrefslogtreecommitdiff
path: root/sys-kernel/linux-image-redcore/files/6.11-fix-bootconfig-makefile.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-10-25 11:06:33 +0100
committerV3n3RiX <venerix@koprulu.sector>2024-10-25 11:06:33 +0100
commit7ec17a7d583e4da3e5f05d2be1e8bc3bdaf3bbcb (patch)
tree1387c7f0552fb11423fb233abad61fbf5fd0d69a /sys-kernel/linux-image-redcore/files/6.11-fix-bootconfig-makefile.patch
parent7c7e4ed1860562544a49c693396d22395cb64099 (diff)
sys-kernel/linux-{image,sources}-redcore : add v6.11.x
Diffstat (limited to 'sys-kernel/linux-image-redcore/files/6.11-fix-bootconfig-makefile.patch')
-rw-r--r--sys-kernel/linux-image-redcore/files/6.11-fix-bootconfig-makefile.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/sys-kernel/linux-image-redcore/files/6.11-fix-bootconfig-makefile.patch b/sys-kernel/linux-image-redcore/files/6.11-fix-bootconfig-makefile.patch
new file mode 100644
index 00000000..4399ecda
--- /dev/null
+++ b/sys-kernel/linux-image-redcore/files/6.11-fix-bootconfig-makefile.patch
@@ -0,0 +1,30 @@
+--- 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)