diff options
Diffstat (limited to 'meta-yocto-bsp/conf/machine/beaglebone-yocto.conf')
-rw-r--r-- | meta-yocto-bsp/conf/machine/beaglebone-yocto.conf | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf new file mode 100644 index 0000000000..990c967416 --- /dev/null +++ b/meta-yocto-bsp/conf/machine/beaglebone-yocto.conf | |||
@@ -0,0 +1,40 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: Beaglebone-yocto machine | ||
3 | #@DESCRIPTION: Reference machine configuration for http://beagleboard.org/bone and http://beagleboard.org/black boards | ||
4 | |||
5 | PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg" | ||
6 | XSERVER ?= "xserver-xorg \ | ||
7 | xf86-video-modesetting \ | ||
8 | " | ||
9 | |||
10 | MACHINE_EXTRA_RRECOMMENDS = " kernel-modules kernel-devicetree" | ||
11 | |||
12 | EXTRA_IMAGEDEPENDS += "u-boot" | ||
13 | |||
14 | DEFAULTTUNE ?= "cortexa8hf-neon" | ||
15 | include conf/machine/include/tune-cortexa8.inc | ||
16 | |||
17 | IMAGE_FSTYPES += "tar.bz2 jffs2 wic wic.bmap" | ||
18 | EXTRA_IMAGECMD_jffs2 = "-lnp " | ||
19 | WKS_FILE ?= "beaglebone-yocto.wks" | ||
20 | IMAGE_INSTALL_append = " kernel-devicetree kernel-image-zimage" | ||
21 | do_image_wic[depends] += "mtools-native:do_populate_sysroot dosfstools-native:do_populate_sysroot" | ||
22 | |||
23 | SERIAL_CONSOLE = "115200 ttyO0" | ||
24 | |||
25 | PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto" | ||
26 | PREFERRED_VERSION_linux-yocto ?= "4.12%" | ||
27 | |||
28 | KERNEL_IMAGETYPE = "zImage" | ||
29 | KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb am335x-bonegreen.dtb" | ||
30 | KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}" | ||
31 | |||
32 | SPL_BINARY = "MLO" | ||
33 | UBOOT_SUFFIX = "img" | ||
34 | UBOOT_MACHINE = "am335x_boneblack_config" | ||
35 | UBOOT_ENTRYPOINT = "0x80008000" | ||
36 | UBOOT_LOADADDRESS = "0x80008000" | ||
37 | |||
38 | MACHINE_FEATURES = "usbgadget usbhost vfat alsa" | ||
39 | |||
40 | IMAGE_BOOT_FILES ?= "u-boot.${UBOOT_SUFFIX} MLO" | ||