17 lines
519 B
Python
17 lines
519 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# Licensed under the GNU General Public License, version 3.
|
|
# See the file http://www.gnu.org/licenses/gpl.txt
|
|
|
|
from pisi.actionsapi import pisitools
|
|
from pisi.actionsapi import get
|
|
from pisi.actionsapi import shelltools
|
|
|
|
#WorkDir = "broadcom-wl-%s" % get.srcVERSION()
|
|
|
|
def install():
|
|
pisitools.dodir("/lib/firmware")
|
|
|
|
for obj in ("wl_apsta-3.130.20.0.o", "broadcom-wl-6.30.163.46.wl_apsta.o"):
|
|
shelltools.system("b43-fwcutter -w %s/lib/firmware %s" % (get.installDIR(), obj))
|