summaryrefslogtreecommitdiff
path: root/openembedded/packages/maemo/nokia770-init_1.0.bb
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-07-21 10:10:31 +0000
committerRichard Purdie <richard@openedhand.com>2006-07-21 10:10:31 +0000
commitb2f192faabe412adce79534e22efe9fb69ee40e2 (patch)
tree7076c49d4286f8a1733650bd8fbc7161af200d57 /openembedded/packages/maemo/nokia770-init_1.0.bb
parent2cf0eadf9f730027833af802d7e6c90b44248f80 (diff)
downloadopenembedded-core-b2f192faabe412adce79534e22efe9fb69ee40e2.tar.gz
openembedded-core-b2f192faabe412adce79534e22efe9fb69ee40e2.tar.bz2
openembedded-core-b2f192faabe412adce79534e22efe9fb69ee40e2.tar.xz
openembedded-core-b2f192faabe412adce79534e22efe9fb69ee40e2.zip
Rename /openembedded/ -> /meta/
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/maemo/nokia770-init_1.0.bb')
-rw-r--r--openembedded/packages/maemo/nokia770-init_1.0.bb42
1 files changed, 0 insertions, 42 deletions
diff --git a/openembedded/packages/maemo/nokia770-init_1.0.bb b/openembedded/packages/maemo/nokia770-init_1.0.bb
deleted file mode 100644
index 84c1e3c27..000000000
--- a/openembedded/packages/maemo/nokia770-init_1.0.bb
+++ /dev/null
@@ -1,42 +0,0 @@
-LICENSE = "GPL"
-MAINTAINER = "Florian Boor <florian@kernelconcepts.de"
-PR = "r5"
-
-DEPENDS = "base-passwd"
-#RDEPENDS = "hotplug"
-
-SRC_URI = "file://fixup-770.sh"
-
-FILES_${PN} = "${sysconfdir} ${libdir}"
-
-inherit update-rc.d
-
-
-INITSCRIPT_NAME = "fixup-770.sh"
-INITSCRIPT_PARAMS = "defaults 01"
-
-
-do_install () {
- install -d ${D}${sysconfdir}/init.d
- install -m 755 ${WORKDIR}/fixup-770.sh ${D}/${sysconfdir}/init.d/fixup-770.sh
-
- install -d ${D}/lib/firmware
-}
-
-pkg_postinst () {
-#!/bin/sh
-
-# can't do adduser stuff offline
-if [ "x$D" != "x" ]; then
- exit 1
-fi
-
-# set up some links to firmware and modules in initrd
- mkdir -p /lib/firmware
- ln -sf /mnt/initfs/usr/lib/hotplug/firmware/3825.arm /lib/firmware/3825.arm
- ln -sf /mnt/initfs/usr/lib/hotplug/firmware/brf6150fw.bin /lib/firmware/brf6150fw.bin
- ln -sf /mnt/initfs/usr/lib/hotplug/firmware/mtlm3825.arm /lib/firmware/mtlm3825.arm
-
-# rm -rf /lib/modules
-# ln -s /mnt/initfs/lib/modules /lib/modules
-}