diff options
author | Cliff Brake <cbrake@bec-systems.com> | 2007-08-21 21:57:54 +0000 |
---|---|---|
committer | Cliff Brake <cbrake@bec-systems.com> | 2007-08-21 21:57:54 +0000 |
commit | 542ba8f7e832b752bfdfe390b93b38d99e998599 (patch) | |
tree | a4ea4a3c9a4a907b1aeae8a210b2eadcea9f0665 /conf/machine/compulab-pxa270.conf | |
parent | c730ac55545f18e58f6bba42b2289bf90abd1654 (diff) |
compulab-pxa270.conf: fix serial console setup for 2.6.22 kernel,
set image types needed for NOR flash images and movement toward
jffs2 in NAND flash
Diffstat (limited to 'conf/machine/compulab-pxa270.conf')
-rw-r--r-- | conf/machine/compulab-pxa270.conf | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/conf/machine/compulab-pxa270.conf b/conf/machine/compulab-pxa270.conf index b1e7082fd7..b0f6952eba 100644 --- a/conf/machine/compulab-pxa270.conf +++ b/conf/machine/compulab-pxa270.conf @@ -12,7 +12,10 @@ PACKAGE_EXTRA_ARCHS = "armv4 armv5te" require conf/machine/include/tune-xscale.conf # used by sysvinit_2 -SERIAL_CONSOLE ?= "38400 ttySA0" +# the following is the for the cm-x270 L module +# I think the W module would use ttyS0, but has +# not been tested +SERIAL_CONSOLE ?= "38400 ttyS1" # used by opie-collections.inc ROOT_FLASH_SIZE ?= "32" @@ -29,3 +32,9 @@ EXTRA_IMAGECMD_jffs2 = "--little-endian --eraseblock=0x20000 --pad=0x20000 --no- MACHINE_FEATURES = "kernel26 pcmcia usbhost usbgadget pcmcia touchscreen alsa" +# the following is require for building tiny images that can fit in NOR flash. +# recommend using uclibc, Angstrom, and angstrom-minimal-image bitbake target +# note, if these are define in your local.conf, they will be overwritten +MACHINE_ESSENTIAL_EXTRA_RDEPENDS ?= "mtd-utils ipkg" +IMAGE_FSTYPES ?= "jffs2 tar cpio.gz" + |