You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.6 KiB
40 lines
1.6 KiB
Index: wireless-regdb-2020.04.29/Makefile
|
|
===================================================================
|
|
--- wireless-regdb-2020.04.29.orig/Makefile
|
|
+++ wireless-regdb-2020.04.29/Makefile
|
|
@@ -41,7 +41,8 @@ REGDB_CHANGED = $(shell $(SHA1SUM) -c --
|
|
echo maintainer-clean $(REGDB_PUBKEY) $(REGDB_PUBCERT); \
|
|
fi)
|
|
|
|
-.PHONY: all clean mrproper install maintainer-clean install-distro-key
|
|
+.PHONY: all clean mrproper install maintainer-clean install-distro-key \
|
|
+ install_db install_bin
|
|
|
|
all: $(REGDB_CHANGED) regulatory.bin sha1sum.txt regulatory.db.p7s
|
|
|
|
@@ -115,15 +116,21 @@ install-distro-key: maintainer-clean $(D
|
|
# make maintainer-clean
|
|
# make
|
|
# sudo make install
|
|
-install: regulatory.bin.5.gz regulatory.db.5.gz
|
|
+install_bin: regulatory.bin.5.gz
|
|
install -m 755 -d $(DESTDIR)/$(CRDA_PATH)
|
|
install -m 755 -d $(DESTDIR)/$(CRDA_KEY_PATH)
|
|
- install -m 755 -d $(DESTDIR)/$(FIRMWARE_PATH)
|
|
if [ -f .custom ]; then \
|
|
install -m 644 -t $(DESTDIR)/$(CRDA_KEY_PATH)/ $(shell cat .custom); \
|
|
fi
|
|
install -m 644 -t $(DESTDIR)/$(CRDA_KEY_PATH)/ $(REGDB_UPSTREAM_PUBKEY)
|
|
install -m 644 -t $(DESTDIR)/$(CRDA_PATH)/ regulatory.bin
|
|
+ install -m 755 -d $(DESTDIR)/$(MANDIR)/man5/
|
|
+ install -m 644 -t $(DESTDIR)/$(MANDIR)/man5/ regulatory.bin.5.gz
|
|
+
|
|
+install_db: regulatory.db.5.gz
|
|
+ install -m 755 -d $(DESTDIR)/$(FIRMWARE_PATH)
|
|
install -m 644 -t $(DESTDIR)/$(FIRMWARE_PATH) regulatory.db regulatory.db.p7s
|
|
install -m 755 -d $(DESTDIR)/$(MANDIR)/man5/
|
|
- install -m 644 -t $(DESTDIR)/$(MANDIR)/man5/ regulatory.bin.5.gz regulatory.db.5.gz
|
|
+ install -m 644 -t $(DESTDIR)/$(MANDIR)/man5/ regulatory.db.5.gz
|
|
+
|
|
+install: install_bin install_db
|