diff options
author | Oyvind Repvik <nail@nslu2-linux.org> | 2006-03-29 11:25:41 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-03-29 11:25:41 +0000 |
commit | 9fa59723d6e972949572078ab24a8de9d0d3af11 (patch) | |
tree | 698d648f9354b3f78e7788fa6f6515945ea8cef7 | |
parent | 4c2325e5291acea9530852ca38486c6e9970796e (diff) |
slugos: Add required usb/scsi modules to rootfs
-rw-r--r-- | conf/distro/debianslug.conf | 9 | ||||
-rw-r--r-- | conf/distro/openslug.conf | 9 | ||||
-rw-r--r-- | conf/distro/ucslugc.conf | 10 |
3 files changed, 28 insertions, 0 deletions
diff --git a/conf/distro/debianslug.conf b/conf/distro/debianslug.conf index c5c9f6868c..1063356217 100644 --- a/conf/distro/debianslug.conf +++ b/conf/distro/debianslug.conf @@ -87,6 +87,15 @@ kernel-module-nls-cp437 \ kernel-module-nls-utf8 \ " +DEBIANSLUG_STANDARD_RDEPENDS += "\ +kernel-module-ehci-hcd \ +kernel-module-ohci-hcd \ +kernel-module-uhci-hcd \ +kernel-module-sd-mod \ +kernel-module-usb-storage \ +kernel-module-scsi-mod \ +" + # This documents other file systems which are built but not installed # by default in the flash image. # diff --git a/conf/distro/openslug.conf b/conf/distro/openslug.conf index 304cd6dcfa..09f3691b65 100644 --- a/conf/distro/openslug.conf +++ b/conf/distro/openslug.conf @@ -87,6 +87,15 @@ kernel-module-nls-cp437 \ kernel-module-nls-utf8 \ " +OPENSLUG_STANDARD_RDEPENDS += "\ +kernel-module-ehci-hcd \ +kernel-module-ohci-hcd \ +kernel-module-uhci-hcd \ +kernel-module-sd-mod \ +kernel-module-usb-storage \ +kernel-module-scsi-mod \ +" + # This documents other file systems which are built but not installed # by default in the flash image. # diff --git a/conf/distro/ucslugc.conf b/conf/distro/ucslugc.conf index 24ef6e6c33..bb6c6efa6a 100644 --- a/conf/distro/ucslugc.conf +++ b/conf/distro/ucslugc.conf @@ -19,6 +19,16 @@ UCSLUGC_EXTRA_BBFILES ?= "" # prefix UCSLUGC_ are used here to default the values of the corresponding NSLU2_ # setting - either may be set in local.conf to override these values. UCSLUGC_EXTRA_RDEPENDS ?= "" + +UCSLUGC_STANDARD_RDEPENDS += "\ +kernel-module-ehci-hcd \ +kernel-module-ohci-hcd \ +kernel-module-uhci-hcd \ +kernel-module-sd-mod \ +kernel-module-usb-storage \ +kernel-module-scsi-mod \ +" + # SLUGOS_EXTRA_RDEPENDS ?= "${UCSLUGC_EXTRA_RDEPENDS}" |