diff options
author | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-05-17 18:39:51 +0000 |
---|---|---|
committer | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-05-17 18:39:51 +0000 |
commit | 2f9ad2e658e8ad53ecdb6eb82358eb858a8de5f5 (patch) | |
tree | 42c561e0b7ea349e57348c61f27faf0b3f097c7e /packages/misc-binary-only | |
parent | 9fa8c781ca71c751c09dbcb96363f66e1a455837 (diff) |
Merge bk://oe-devel.bkbits.net/openembedded
into bkbits.net:/repos/n/nslu2-linux/openembedded
2005/05/17 20:39:04+02:00 uni-frankfurt.de!mickeyl
add python-pygtk2 to task-python-everything
2005/05/17 20:32:02+02:00 uni-frankfurt.de!mickeyl
apply zecke's patches to prepare for the low memory bitbake. the repository needs bitbake r159 or better now
BKrev: 428a3a77SoUtXtfto7tXtwiSdrA1ew
Diffstat (limited to 'packages/misc-binary-only')
-rw-r--r-- | packages/misc-binary-only/tda1004x-firmware.bb | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/packages/misc-binary-only/tda1004x-firmware.bb b/packages/misc-binary-only/tda1004x-firmware.bb index e69de29bb2..bce3bac29f 100644 --- a/packages/misc-binary-only/tda1004x-firmware.bb +++ b/packages/misc-binary-only/tda1004x-firmware.bb @@ -0,0 +1,38 @@ +SECTION = "base" +DEPENDS = "unzip-native" + +SRC_URI = "http://hauppauge.lightpath.net/de/nova-pci216.exe" +FILES_${PN} = '*' + +python do_unpack() { + import re + + localdata = bb.data.createCopy(d) + overrides = bb.data.getVar('OVERRIDES', localdata, 1) + if not overrides: + raise bb.build.FuncFailed('OVERRIDES not defined') + bb.data.setVar('OVERRIDES', overrides+':'+bb.data.getVar('PN', localdata, 1), localdata) + + bb.data.update_data(localdata) + + src_uri = bb.data.getVar('SRC_URI', localdata) + if not src_uri: + return + src_uri = bb.data.expand(src_uri, localdata) + + local = bb.data.expand(bb.fetch.localpath(src_uri, localdata), localdata) + # dont need any parameters for extraction, strip them off + local = re.sub(';.*$', '', local) + bindir = bb.data.getVar('STAGING_BINDIR', localdata, 1) + cmd = '%s/unzip %s' % (bindir, local) + if not os.path.exists(bb.data.getVar('S', localdata, 1)): + os.mkdir(bb.data.getVar('S', localdata, 1)) + os.chdir(bb.data.getVar('S', localdata, 1)) + bb.note("Unpacking %s to %s/" % (local, os.getcwd())) + ret = os.system(cmd) +} + +do_install() { + install -d ${D}${prefix}/lib/hotplug/firmware + install -m 0644 software/OEM/PCI/App/ttlcdacc.dll ${D}${prefix}/lib/hotplug/firmware/tda1004x.bin +} |