diff options
author | Holger Freyther <zecke@selfish.org> | 2004-10-11 00:11:35 +0000 |
---|---|---|
committer | Holger Freyther <zecke@selfish.org> | 2004-10-11 00:11:35 +0000 |
commit | 4481345d535bba94139ca7d1553783dfbf923666 (patch) | |
tree | 3cc9491a93249fd5bb668adba646cbab063f4a69 /base-files/base-files_3.0.14.oe | |
parent | 1617e539cd1a902db3ff44dee9f4ea6105f27a49 (diff) |
filesystems:
-Provide filesystems to check for when mounting a filesystem of type auto.
With '*' fallback to /proc/filesystems
Beagle:
-Provide a smaller filesystems with only ext2,vfat and fallback
-Change fstab to mount the 2nd flashbank as /root
BKrev: 4169cfb7-K5WNQvYDYMu7sKuEElmGw
Diffstat (limited to 'base-files/base-files_3.0.14.oe')
-rw-r--r-- | base-files/base-files_3.0.14.oe | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/base-files/base-files_3.0.14.oe b/base-files/base-files_3.0.14.oe index 1bdc029336..12452c482b 100644 --- a/base-files/base-files_3.0.14.oe +++ b/base-files/base-files_3.0.14.oe @@ -10,6 +10,7 @@ SRC_URI = " \ file://etc/host.conf \ file://profile \ file://fstab \ + file://filesystems \ file://issue.net \ file://issue \ file://usbd \ @@ -36,7 +37,7 @@ SRC_URI = " \ file://licenses/GPL-2 \ file://licenses/LGPL-2 \ file://licenses/LGPL-2.1 \ - file://licenses/Artistic" + file://licenses/Artistic " S = "${WORKDIR}" docdir_append = "/${P}" @@ -63,6 +64,7 @@ do_install () { install -d ${D}/${sysconfdir}/default install -m 0644 ${WORKDIR}/fstab ${D}/${sysconfdir}/fstab + install -m 0644 ${WORKDIR}/filesystems ${D}${sysconfdir}/filesystems install -m 0644 ${WORKDIR}/usbd ${D}/${sysconfdir}/default/usbd [ -z "${MACHINE}" ] && echo "openembedded" >${D}/${sysconfdir}/hostname || echo ${MACHINE} >${D}/${sysconfdir}/hostname install -m 0644 ${WORKDIR}/profile ${D}/${sysconfdir}/profile @@ -131,7 +133,6 @@ do_install_append_ramses () { ln -s var/tmp ${D}/tmp } - PACKAGES = "${PN}-doc ${PN}" FILES_${PN} = "/" FILES_${PN}-doc = "/usr/share/doc /usr/share/common-licenses" |