diff '--color=auto' -Nur a/tools/bootconfig/Makefile b/tools/bootconfig/Makefile
--- a/tools/bootconfig/Makefile	2025-08-23 15:49:42.000000000 +0100
+++ b/tools/bootconfig/Makefile	2025-08-24 14:16:54.504413550 +0100
@@ -2,7 +2,7 @@
 # Makefile for bootconfig command
 include ../scripts/Makefile.include
 
-bindir ?= /usr/bin
+sbindir ?= /usr/sbin
 
 ifeq ($(srctree),)
 srctree := $(patsubst %/,%,$(dir $(CURDIR)))
@@ -24,7 +24,8 @@
 	./test-bootconfig.sh $(OUTPUT)
 
 install: $(ALL_PROGRAMS)
-	install $(OUTPUT)bootconfig $(DESTDIR)$(bindir)
+	mkdir -p $(DESTDIR)$(sbindir)
+	install $(OUTPUT)bootconfig $(DESTDIR)$(sbindir)
 
 clean:
 	$(RM) -f $(OUTPUT)*.o $(ALL_PROGRAMS)
