diff options
author | Mykyta Dorokhin <mykyta.dorokhin@globallogic.com> | 2016-08-31 12:38:15 +0300 |
---|---|---|
committer | Mykyta Dorokhin <mykyta.dorokhin@globallogic.com> | 2016-08-31 12:38:15 +0300 |
commit | 7a512a3d0ef6ddefff5b2e54c0c715025a58bcaf (patch) | |
tree | 4a73f8d89580f61b1b2555a578871ca517723c73 /conf | |
parent | e8fef0c91691cdb00c70a6f96b85e3798c7ffc72 (diff) | |
download | meta-multitech-7a512a3d0ef6ddefff5b2e54c0c715025a58bcaf.tar.gz meta-multitech-7a512a3d0ef6ddefff5b2e54c0c715025a58bcaf.tar.bz2 meta-multitech-7a512a3d0ef6ddefff5b2e54c0c715025a58bcaf.zip |
mtp: Add initial support for the new mtp machine type.
Existing kernel/u-boot/at91bootstrap modified to support building against mtp machine type.
Diffstat (limited to 'conf')
-rw-r--r-- | conf/machine/mtp.conf | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/conf/machine/mtp.conf b/conf/machine/mtp.conf new file mode 100644 index 0000000..60ee2ff --- /dev/null +++ b/conf/machine/mtp.conf @@ -0,0 +1,39 @@ +#@TYPE: Machine +#@Name: MTP +#@DESCRIPTION: Machine configuration for the MTP hardware + +require conf/machine/include/tune-arm926ejs.inc + +MACHINE_FEATURES = "ext2 ext3 usbhost usbgadget ppp" +PREFERRED_PROVIDER_virtual/kernel = "linux" +PREFERRED_VERSION_linux = "3.12.27" +PREFERRED_VERSION_mts-io ?= "1.1.4" +PREFERRED_VERSION_mts-id-eeprom ?= "0.2.6" + +MACHINE_ESSENTIAL_EXTRA_RDEPENDS = "kernel-module-vizzini" +PREFERRED_VERSION_kernel-module-vizzini ?= "1.1" + +DEFAULTTUNE = "arm926ejs" + +# used by sysvinit_2 +SERIAL_CONSOLES = "115200;ttyS0" +#don't try to access tty1 +USE_VT = "0" + +UBOOT_MACHINE = "at91sam9x5ek_nandflash_config" +PREFERRED_VERSION_u-boot = "2012.10" + +AT91BOOTSTRAP_BOARD = "at91sam9x5eknf_uboot" +PREFERRED_VERSION_at91bootstrap = "3.5.3" + +KERNEL_IMAGETYPE = "uImage" +# remove kernel-image from rootfs by overriding kernel-base DEPS +RDEPENDS_kernel-base = "" + +EXTRA_IMAGEDEPENDS += "at91bootstrap u-boot" + +IMAGE_FSTYPES =+ "jffs2 tar.gz" +EXTRA_IMAGECMD_jffs2 = "--little-endian --eraseblock=0x20000 --pagesize=0x800 -n" + +UBOOT_ENTRYPOINT = "0x20008000" +UBOOT_LOADADDRESS = "0x20008000" |