diff options
author | Koen Kooi <koen@openembedded.org> | 2007-05-31 19:33:58 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-05-31 19:33:58 +0000 |
commit | 65d4849fc3a57372e262b7f6b9cf9ce633a5ce06 (patch) | |
tree | 8f94b2e5bd505427b4a0f25e10374b7f7a8075d4 | |
parent | bcc112c6a2a46860a90c96234d0756977cfeebc6 (diff) |
at32stk1000.conf, atngw100.conf: add skeleton machine descriptions for the atmel avr32 boards
* missing: kernel defconfigs and uclibc configs
-rw-r--r-- | conf/machine/at32stk1000.conf | 21 | ||||
-rw-r--r-- | conf/machine/atngw100.conf | 20 |
2 files changed, 41 insertions, 0 deletions
diff --git a/conf/machine/at32stk1000.conf b/conf/machine/at32stk1000.conf new file mode 100644 index 0000000000..faa4785fb4 --- /dev/null +++ b/conf/machine/at32stk1000.conf @@ -0,0 +1,21 @@ +#@TYPE: Machine +#@Name: Atmel STK1000 AVR32AP7000 Development Platform +#@DESCRIPTION: Atmel STK1000 AVR32AP7000 Development Platform + + +TARGET_ARCH = "avr32" + +PREFERRED_PROVIDER_virtual/kernel = "linux" +PREFERRED_PROVIDER_xserver = "xserver-kdrive" + +#don't try to access tty1 +USE_VT = "0" + +MACHINE_FEATURES = "kernel26 alsa ext2 usbhost usbgadget screen" + +# used by sysvinit_2 +SERIAL_CONSOLE = "115200" + +# used by some images +ROOT_FLASH_SIZE = "8" +EXTRA_IMAGECMD_jffs2 = " --big-endian --pagesize=4096 --eraseblock=65536" diff --git a/conf/machine/atngw100.conf b/conf/machine/atngw100.conf new file mode 100644 index 0000000000..b725831321 --- /dev/null +++ b/conf/machine/atngw100.conf @@ -0,0 +1,20 @@ +#@TYPE: Machine +#@Name: Atmel ATNGW100 Network Gateway Kit +#@DESCRIPTION: Atmel ATNGW100 Network Gateway Kit + +TARGET_ARCH = "avr32" + +PREFERRED_PROVIDER_xserver = "xserver-kdrive" + +#don't try to access tty1 +USE_VT = "0" + +MACHINE_FEATURES = "kernel26 ext2 usbhost usbgadget" + +# used by sysvinit_2 +SERIAL_CONSOLE = "115200" + +# used by some images +ROOT_FLASH_SIZE = "8" +EXTRA_IMAGECMD_jffs2 = " --big-endian --pagesize=4096 --eraseblock=65536" + |