diff options
author | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
---|---|---|
committer | Denys Dmytriyenko <denis@denix.org> | 2009-03-17 14:32:59 -0400 |
commit | 709c4d66e0b107ca606941b988bad717c0b45d9b (patch) | |
tree | 37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/pivotinit | |
parent | fa6cd5a3b993f16c27de4ff82b42684516d433ba (diff) |
rename packages/ to recipes/ per earlier agreement
See links below for more details:
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326
http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816
Signed-off-by: Denys Dmytriyenko <denis@denix.org>
Acked-by: Mike Westerhof <mwester@dls.net>
Acked-by: Philip Balister <philip@balister.org>
Acked-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Marcin Juszkiewicz <hrw@openembedded.org>
Acked-by: Koen Kooi <koen@openembedded.org>
Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'packages/pivotinit')
-rw-r--r-- | packages/pivotinit/pivotinit_1.0.0.bb | 11 | ||||
-rw-r--r-- | packages/pivotinit/spitz/init | 25 |
2 files changed, 0 insertions, 36 deletions
diff --git a/packages/pivotinit/pivotinit_1.0.0.bb b/packages/pivotinit/pivotinit_1.0.0.bb deleted file mode 100644 index 912cfeb5b9..0000000000 --- a/packages/pivotinit/pivotinit_1.0.0.bb +++ /dev/null @@ -1,11 +0,0 @@ -DESCRIPTION = "Dedicated /sbin/init for pivot root images" -SECTION = "base" -PRIORITY = "required" -LICENSE = "MIT" -PR = "r0" - -SRC_URI = "file://init" - -do_install () { - install -m 0755 -D ${WORKDIR}/init ${D}/sbin/init -} diff --git a/packages/pivotinit/spitz/init b/packages/pivotinit/spitz/init deleted file mode 100644 index 41e4aff0db..0000000000 --- a/packages/pivotinit/spitz/init +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -mount -t proc proc /proc -mount -o remount,rw / -cardmgr -o -umount /proc -echo Mounting hda1. -mount -t ext3 /dev/hda1 /media/hdd - -# For some reason the Spitz tar doesn't create the devices. -if [ ! -b /media/hdd/dev/hda1 ]; then - echo Creating non existant device files. - /media/hdd/sbin/makedevs -D /media/hdd/etc/device_table -r /media/hdd/ -fi - -if [ -e /media/hdd/sbin/init -o -L /media/hdd/sbin/init ]; then - echo "Found /sbin/init on HD; pivoting." - cd /media/hdd - pivot_root . media/realroot - cd / - exec /sbin/init -fi - -echo Dropping to a shell due to problems. -exec /bin/sh |