diff options
author | Rod Whitby <rod@whitby.id.au> | 2007-12-01 14:14:33 +0000 |
---|---|---|
committer | Rod Whitby <rod@whitby.id.au> | 2007-12-01 14:14:33 +0000 |
commit | a5fb224426c234fa7d6e1e8821b4efeb53c1add3 (patch) | |
tree | 609f9cd2c11aa6909b82d5b6bebed55eb9c04549 /conf/machine | |
parent | 79c1f93833224c1e81d2d94f9687dddc732a6e96 (diff) |
ixp4xx.conf: set the correct working kernel version and essential modules for networking on ixp4xx machines
Diffstat (limited to 'conf/machine')
-rw-r--r-- | conf/machine/include/ixp4xx.inc | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/conf/machine/include/ixp4xx.inc b/conf/machine/include/ixp4xx.inc index 04b6542470..bc3b49c7c1 100644 --- a/conf/machine/include/ixp4xx.inc +++ b/conf/machine/include/ixp4xx.inc @@ -5,9 +5,21 @@ # Set default for nslu2 - can be overridden for machines with other features. MACHINE_FEATURES ?= "kernel26 usbhost ext2" -# Set defaults for nslu2 - can be overridden for machines with other requirements. -MACHINE_ESSENTIAL_EXTRA_RDEPENDS ?= "ixp4xx-npe" -MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS ?= "" +PREFERRED_PROVIDER_virtual/kernel ?= "linux-ixp4xx" +PREFERRED_VERSION_linux-ixp4xx ?= "2.6.21.6+svnr${SRCREV}" + +# Add modules required for basic networking support + +MACHINE_ESSENTIAL_EXTRA_RDEPENDS ?= " \ + ixp4xx-npe \ + " + +MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS ?= " \ + kernel-module-mii \ + kernel-module-ixp4xx-mac \ + kernel-module-ixp4xx-qmgr \ + kernel-module-via-velocity \ + " # Set default for nslu2 - can be overridden for machines with more flash. ROOT_FLASH_SIZE ?= "12" @@ -15,8 +27,6 @@ ROOT_FLASH_SIZE ?= "12" # Set default for nslu2, nas100d, dsmg600 EXTRA_IMAGECMD_jffs2 = "--pad --eraseblock=0x20000 -n" -PREFERRED_PROVIDER_virtual/kernel ?= "linux-ixp4xx" - require conf/machine/include/tune-xscale.inc require conf/machine/include/tune-thumb.inc |