diff options
author | Mike Westerhof <mwester@dls.net> | 2010-06-11 06:16:46 -0500 |
---|---|---|
committer | Mike Westerhof <mwester@dls.net> | 2010-06-11 06:16:46 -0500 |
commit | a7bcc78ad94a7cbce2fd5da6fc3f54ae09228f8b (patch) | |
tree | 2d313997674d9a655728489795c1d283633f7802 | |
parent | 85ea6cc539cec70d597c4a3691d68ca35627acc5 (diff) |
SlugOS: task-slugos.bb - Adjust packages to fit in available flash space.
Install only sshd and keygen, rather than the full ssh package,
and (temporarily) remove the RAID/mdadm support. Necessary to make
space in the flash filesystem until the root cause (util-linux-ng
bogus dependency issue) is located and fixed.
-rw-r--r-- | recipes/tasks/task-slugos.bb | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/recipes/tasks/task-slugos.bb b/recipes/tasks/task-slugos.bb index e36c5435cd..c0077793b3 100644 --- a/recipes/tasks/task-slugos.bb +++ b/recipes/tasks/task-slugos.bb @@ -6,7 +6,7 @@ DESCRIPTION = "Task packages for the SlugOS distribution" HOMEPAGE = "http://www.nslu2-linux.org" LICENSE = "MIT" -PR = "r26" +PR = "r27" PACKAGE_ARCH = "${MACHINE_ARCH}" COMPATIBLE_MACHINE = "(nslu2|ixp4xx|sheevaplug)" ALLOW_EMPTY = "1" @@ -74,12 +74,16 @@ kernel-module-ohci-hcd \ kernel-module-uhci-hcd \ " +## Commented out MJW - due to space considerations; +## add this back in as soon as cleanup tasks manage +## to recover sufficient flash space. # Add packages and modules required for RAID-1 support -SLUGOS_STANDARD_RRECOMMENDS += "\ -mdadm \ -kernel-module-md-mod \ -kernel-module-raid1 \ -" +#SLUGOS_STANDARD_RRECOMMENDS += "\ +#mdadm \ +#kernel-module-md-mod \ +#kernel-module-raid1 \ +#" +## End - MJW # Add the machine-specific RRECOMMENDS_${PN} stuff -- kernel modules required for # network support. @@ -139,7 +143,8 @@ RDEPENDS_${PN} += "\ DISTRO_EXTRA_RRECOMMENDS ?= "" RRECOMMENDS_${PN} += "\ - openssh \ + openssh-keygen \ + openssh-sshd \ ${SLUGOS_STANDARD_RRECOMMENDS} \ ${SLUGOS_MACHINE_RRECOMMENDS} \ ${DISTRO_EXTRA_RRECOMMENDS}" |