0516287b93
for kernel
18 lines
536 B
Python
18 lines
536 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright 2019 TUBITAK/UEKAE
|
|
# Licensed under the GNU General Public License, version 2.
|
|
# See the file http://www.gnu.org/copyleft/gpl.txt.
|
|
|
|
from pisi.actionsapi import pisitools
|
|
|
|
def install():
|
|
pisitools.insinto("/usr/lib/crda/", "regulatory.bin")
|
|
pisitools.insinto("/lib/firmware", "regulatory.db*")
|
|
pisitools.insinto("/etc/wireless-regdb/pubkeys", "sforshee.key.pub.pem")
|
|
|
|
pisitools.doman("regulatory.db.5")
|
|
|
|
pisitools.dodoc("LICENSE", "README", "CONTRIBUTING")
|