diff options
author | Chris Lord <chris@openedhand.com> | 2005-02-11 02:12:28 +0000 |
---|---|---|
committer | Chris Lord <chris@openedhand.com> | 2005-02-11 02:12:28 +0000 |
commit | 792fc8350fd48705f2bd245299650c8aefa66450 (patch) | |
tree | 9aa24ef258388e327f15d92228d47cdfa77cf13e /packages/unionfs/unionroot_0.1.bb | |
parent | 5dadbaf0cdcd910bab780161eb56aef547bd6a64 (diff) |
Merge
2005/02/11 02:10:47+00:00 (none)!cwiiis
Rewrite of unionroot and unionroot-utils - Same functionality as before, but less errors and more efficient.
BKrev: 420c148c_dTY2QW3_z_MW-o2SF9Sag
Diffstat (limited to 'packages/unionfs/unionroot_0.1.bb')
-rw-r--r-- | packages/unionfs/unionroot_0.1.bb | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/packages/unionfs/unionroot_0.1.bb b/packages/unionfs/unionroot_0.1.bb deleted file mode 100644 index 79b79b5f94..0000000000 --- a/packages/unionfs/unionroot_0.1.bb +++ /dev/null @@ -1,40 +0,0 @@ -LICENSE = "GPL" - -DESCRIPTION = "Provides an init script that changes the root file-system to unionfs." -DEPENDS = "busybox base-files" -RDEPENDS = "busybox base-files" -SECTION = "base" -PRIORITY = "optional" -MAINTAINER = "Chris Lord <cwiiis@handhelds.org>" - -PR = "r2" - -SRC_URI = "file://init.unionroot" - -inherit update-alternatives - -ALTERNATIVE_NAME = "init" -ALTERNATIVE_LINK = "/sbin/init" -ALTERNATIVE_PATH = "/sbin/init.unionroot" -ALTERNATIVE_PRIORITY = "100" - -do_install () { - install -d ${D}/sbin - install -m 0755 ${WORKDIR}/init.unionroot ${D}/sbin/ -} - -pkg_postinst () { - # Alter /etc/fstab - mv $D/${sysconfdir}/fstab $D/${sysconfdir}/fstab.old - awk 'BEGIN { print "# Altered by unionroot" } - { if ( $2 == "/" ) - { - print $1 "\t/media/realroot\t" $3 "\t" $4 "\t" $5 "\t" $6 - } - else - { - print $0 - } - }' $D/${sysconfdir}/fstab.old > $D/${sysconfdir}/fstab -} - |