mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
crda: move wireless-regdb to own package.
update crda to 1.1.1. update wireless-regdb to 2011.04.28.
This commit is contained in:
@@ -5,7 +5,5 @@ lib/udev/rules.d/85-regulatory.rules
|
||||
#root/.python-eggs/M2Crypto-0.21.1-py2.7-linux-i686.egg-tmp/M2Crypto/__m2crypto.so
|
||||
sbin/crda
|
||||
sbin/regdbdump
|
||||
#usr/lib/crda
|
||||
usr/lib/crda/regulatory.bin
|
||||
#usr/share/man/man8/crda.8.gz
|
||||
#usr/share/man/man8/regdbdump.8.gz
|
||||
|
||||
5
config/rootfiles/common/wireless-regdb
Normal file
5
config/rootfiles/common/wireless-regdb
Normal file
@@ -0,0 +1,5 @@
|
||||
#usr/lib/crda
|
||||
#usr/lib/crda/pubkeys
|
||||
usr/lib/crda/pubkeys/linville.key.pub.pem
|
||||
usr/lib/crda/regulatory.bin
|
||||
#usr/share/man/man5/regulatory.bin.5.gz
|
||||
1
config/rootfiles/core/next/filelists/crda
Symbolic link
1
config/rootfiles/core/next/filelists/crda
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/crda
|
||||
1
config/rootfiles/core/next/filelists/wireless-regdb
Symbolic link
1
config/rootfiles/core/next/filelists/wireless-regdb
Symbolic link
@@ -0,0 +1 @@
|
||||
../../../common/wireless-regdb
|
||||
16
lfs/crda
16
lfs/crda
@@ -24,12 +24,10 @@
|
||||
|
||||
include Config
|
||||
|
||||
VER = 20110202-git
|
||||
|
||||
REGDB = regulatory-20110202
|
||||
VER = 1.1.1
|
||||
|
||||
THISAPP = crda-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.xz
|
||||
DL_FILE = $(THISAPP).tar.bz2
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
|
||||
@@ -39,13 +37,11 @@ TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE) $(REGDB).tar.xz
|
||||
objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
$(REGDB).tar.xz = $(DL_FROM)/$(REGDB).tar.xz
|
||||
|
||||
$(DL_FILE)_MD5 = 1da048b854cca1f1087c1250df335ca8
|
||||
$(REGDB).tar.xz_MD5 = 620621172d18d6f8cdc2db423dcb6381
|
||||
$(DL_FILE)_MD5 = 5fc77af68b3e21736b8ef2f8b061c810
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
@@ -74,9 +70,7 @@ $(subst %,%_MD5,$(objects)) :
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
-mkdir /usr/lib/crda
|
||||
tar Jxf $(DIR_DL)/$(REGDB).tar.xz -C /usr/lib/crda/
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar Jxf $(DIR_DL)/$(DL_FILE)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && USE_OPENSSL=1 make $(MAKETUNING)
|
||||
cd $(DIR_APP) && USE_OPENSSL=1 make install
|
||||
@rm -rf $(DIR_APP)
|
||||
|
||||
76
lfs/wireless-regdb
Normal file
76
lfs/wireless-regdb
Normal file
@@ -0,0 +1,76 @@
|
||||
###############################################################################
|
||||
# #
|
||||
# IPFire.org - A linux based firewall #
|
||||
# Copyright (C) 2011 IPFire Team <info@ipfire.org> #
|
||||
# #
|
||||
# This program is free software: you can redistribute it and/or modify #
|
||||
# it under the terms of the GNU General Public License as published by #
|
||||
# the Free Software Foundation, either version 3 of the License, or #
|
||||
# (at your option) any later version. #
|
||||
# #
|
||||
# This program is distributed in the hope that it will be useful, #
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
|
||||
# GNU General Public License for more details. #
|
||||
# #
|
||||
# You should have received a copy of the GNU General Public License #
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
|
||||
# #
|
||||
###############################################################################
|
||||
|
||||
###############################################################################
|
||||
# Definitions
|
||||
###############################################################################
|
||||
|
||||
include Config
|
||||
|
||||
VER = 2011.04.28
|
||||
|
||||
THISAPP = wireless-regdb-$(VER)
|
||||
DL_FILE = $(THISAPP).tar.bz2
|
||||
DL_FROM = $(URL_IPFIRE)
|
||||
DIR_APP = $(DIR_SRC)/$(THISAPP)
|
||||
|
||||
TARGET = $(DIR_INFO)/$(THISAPP)
|
||||
|
||||
###############################################################################
|
||||
# Top-level Rules
|
||||
###############################################################################
|
||||
|
||||
objects = $(DL_FILE)
|
||||
|
||||
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
|
||||
|
||||
$(DL_FILE)_MD5 = 16b7fabd4d7761ccf206702a3f18cce9
|
||||
|
||||
install : $(TARGET)
|
||||
|
||||
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
|
||||
|
||||
download :$(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
|
||||
md5 : $(subst %,%_MD5,$(objects))
|
||||
|
||||
###############################################################################
|
||||
# Downloading, checking, md5sum
|
||||
###############################################################################
|
||||
|
||||
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
|
||||
@$(CHECK)
|
||||
|
||||
$(patsubst %,$(DIR_DL)/%,$(objects)) :
|
||||
@$(LOAD)
|
||||
|
||||
$(subst %,%_MD5,$(objects)) :
|
||||
@$(MD5)
|
||||
|
||||
###############################################################################
|
||||
# Installation Details
|
||||
###############################################################################
|
||||
|
||||
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
|
||||
@$(PREBUILD)
|
||||
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar jxf $(DIR_DL)/$(DL_FILE)
|
||||
cd $(DIR_APP) && make install
|
||||
@rm -rf $(DIR_APP)
|
||||
@$(POSTBUILD)
|
||||
Reference in New Issue
Block a user