diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2005-06-06 21:32:56 +0000 |
---|---|---|
committer | John Bowler <jbowler@nslu2-linux.org> | 2005-06-06 21:32:56 +0000 |
commit | 2e78e7c628fe78485b2f44009684abdcb6128d2c (patch) | |
tree | cd6fc43d030c4cf50ac9e2438a7cd6f7c4809c8c | |
parent | bf3b5d6d8c0556fc1f00283d4afb058ee91da1c1 (diff) |
Minor bug fix to /etc/fstab to ensure that spurious modules are
not loaded on jffs2 boot.
Add upslug-native to the default DEPENDS.
BKrev: 42a4c108qBG5ppC1ZGpnxA2_AkHgxw
-rw-r--r-- | conf/distro/openslug.conf | 2 | ||||
-rw-r--r-- | packages/base-files/base-files/openslug/fstab | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/conf/distro/openslug.conf b/conf/distro/openslug.conf index 3a94fb31d3..8c69d07b51 100644 --- a/conf/distro/openslug.conf +++ b/conf/distro/openslug.conf @@ -21,7 +21,7 @@ IMAGE_FSTYPES = "jffs2" OPENSLUG_DEVICE_TABLE = "${@bb.which(bb.data.getVar('BBPATH', d, 1), 'files/device_table-openslug.txt')}" EXTRA_IMAGECMD_jffs2 = "--pad --big-endian --eraseblock=0x20000 -D ${OPENSLUG_DEVICE_TABLE}" -OPENSLUG_EXTRA_DEPENDS ?= "e2fsprogs reiserfsprogs lrzsz" +OPENSLUG_EXTRA_DEPENDS ?= "e2fsprogs reiserfsprogs upslug-native lrzsz" # Filesystem support modules are listed in here for easy removal, # as is the lrzsz serial package and other kernel modules which are diff --git a/packages/base-files/base-files/openslug/fstab b/packages/base-files/base-files/openslug/fstab index e69de29bb2..0ac6b1460c 100644 --- a/packages/base-files/base-files/openslug/fstab +++ b/packages/base-files/base-files/openslug/fstab @@ -0,0 +1,5 @@ +rootfs / jffs2 defaults 1 1 +proc /proc proc defaults 0 0 +tmpfs /var tmpfs defaults 0 0 +tmpfs /media/ram tmpfs defaults 0 0 +usbfs /proc/bus/usb usbfs defaults 0 0 |