blob: 90f6864ab7725b6cb6cf901ca24ee1ae11638d44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#@TYPE: Machine
#@NAME: SabreLite
#@SOC: i.MX6Q
#@DESCRIPTION: Machine configuration for Boundary Devices SabreLite
#@MAINTAINER: Manuel Traut <manut@linutronix.de>
include conf/machine/include/imx-base.inc
include conf/machine/include/tune-cortexa9.inc
SOC_FAMILY = "mx6:mx6dl:mx6q"
PREFERRED_PROVIDER_virtual/kernel = "linux-vanilla"
KERNEL_DEVICETREE = "imx6q-sabrelite.dtb"
# Ensure boot scripts will be available at rootfs time
do_rootfs[depends] += "u-boot-script:do_deploy"
# Boot scripts to install
BOOT_SCRIPTS = "6x_bootscript-${MACHINE}:6x_bootscript"
UBOOT_MACHINE ?= "nitrogen6q_config"
SERIAL_CONSOLE = "115200 ttymxc1"
IMAGE_FSTYPES += "tar.bz2 ext3"
# avoid this error
# ERROR: QA Issue: eglibc-locale: Files/directories were installed but not
# shipped
# /usr/bin
# /usr/lib
# /usr/share/i18n
# /usr/share/i18n/locales
# /usr/share/i18n/locales/POSIX
ENABLE_BINARY_LOCALE_GENERATION = "0"
# custom init process
# APPEND = "${APPEND} init=/usr/bin/hello"
|