diff options
author | Richard Purdie <richard@openedhand.com> | 2006-02-23 10:47:26 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-02-23 10:47:26 +0000 |
commit | 7361a543c8d2a7c8659d3a4bcb8101ae30660ef3 (patch) | |
tree | 693a95e05df87b193bda524c348a5b24f4a6d2aa /openembedded/conf/machine | |
parent | 10ec0bc3d87900cf4c90811a7bb1959c44220c7e (diff) | |
download | poky-7361a543c8d2a7c8659d3a4bcb8101ae30660ef3.tar.gz |
Add qemuarm machine type
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@290 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/conf/machine')
-rw-r--r-- | openembedded/conf/machine/qemuarm.conf | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/openembedded/conf/machine/qemuarm.conf b/openembedded/conf/machine/qemuarm.conf new file mode 100644 index 0000000000..2238f6673e --- /dev/null +++ b/openembedded/conf/machine/qemuarm.conf | |||
@@ -0,0 +1,46 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: qemu ARM Emulator setup | ||
3 | #@DESCRIPTION: Machine configuration for running an ARM system under qemu emulation | ||
4 | |||
5 | KERNEL_VERSION ?= "2.6" | ||
6 | |||
7 | TARGET_ARCH = "arm" | ||
8 | IPKG_ARCHS = "all arm armv4 armv5te qemuarm" | ||
9 | |||
10 | PREFERRED_PROVIDER_xserver = "xserver-kdrive" | ||
11 | GUI_MACHINE_CLASS = "bigscreen" | ||
12 | GPE_EXTRA_INSTALL += "gaim sylpheed" | ||
13 | |||
14 | include conf/machine/include/handheld-common.conf | ||
15 | |||
16 | SERIAL_CONSOLE = "115200 ttyS0" | ||
17 | |||
18 | PREFERRED_PROVIDER_virtual/kernel = "linux-openzaurus" | ||
19 | |||
20 | BOOTSTRAP_EXTRA_RDEPENDS += "kernel udev sysfsutils spectrum-fw \ | ||
21 | pcmciautils apm wireless-tools irda-utils udev-utils console-tools hostap-utils prism3-firmware prism3-support \ | ||
22 | ppp ppp-dialin openswan wpa-supplicant-nossl alsa-utils-alsactl alsa-utils-alsamixer module-init-tools alsa-conf" | ||
23 | |||
24 | # Ethernet modules | ||
25 | #BOOTSTRAP_EXTRA_RDEPENDS += "kernel-module-pcnet-cs" | ||
26 | # NFS Modules | ||
27 | #BOOTSTRAP_EXTRA_RDEPENDS += "kernel-module-nfs kernel-module-lockd kernel-module-sunrpc" | ||
28 | # Crypto Modules | ||
29 | #BOOTSTRAP_EXTRA_RDEPENDS += "kernel-module-des kernel-module-md5" | ||
30 | # SMB and CRAMFS | ||
31 | #BOOTSTRAP_EXTRA_RDEPENDS += "kernel-module-smbfs kernel-module-cramfs" | ||
32 | # Serial Modules | ||
33 | #BOOTSTRAP_EXTRA_RDEPENDS += "kernel-module-8250 kernel-module-serial-cs" | ||
34 | # Bluetooth Modules | ||
35 | #BOOTSTRAP_EXTRA_RDEPENDS += "kernel-module-bluetooth kernel-module-l2cap kernel-module-rfcomm kernel-module-hci-vhci \ | ||
36 | # kernel-module-bnep kernel-module-hidp kernel-module-hci-uart kernel-module-sco \ | ||
37 | # kernel-module-bt3c-cs kernel-module-bluecard-cs kernel-module-btuart-cs kernel-module-dtl1-cs" | ||
38 | # Infrared Modules | ||
39 | #BOOTSTRAP_EXTRA_RDEPENDS += "kernel-module-irda kernel-module-ircomm \ | ||
40 | # kernel-module-ircomm-tty kernel-module-irlan kernel-module-irnet kernel-module-ir-usb" | ||
41 | |||
42 | IMAGE_FSTYPES = "ext2" | ||
43 | |||
44 | ROOT_FLASH_SIZE = "100" | ||
45 | # actually that should really read ROOTFS_SIZE = "100", because with modern kernels, | ||
46 | # we boot from the built-in harddisk in C3000. ROOT_FLASH_SIZE is really 5 MegaByte | ||