summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTing Liu <ting.liu@nxp.com>2016-06-15 18:10:45 +0800
committerZhenhua Luo <zhenhua.luo@nxp.com>2016-06-23 10:58:13 +0800
commit44a7cbbf07dce23fdd80b7c80733937f14f06b47 (patch)
tree91febad592fee5f58cb7a3782d91a70a2273d4fc
parent38ec99d4f07a59966ba6808787322f58d5b4411a (diff)
downloadmeta-fsl-ppc-44a7cbbf07dce23fdd80b7c80733937f14f06b47.tar.gz
qoriq-ppc.inc: abstract common bit to qoriq.inc
Signed-off-by: Ting Liu <ting.liu@nxp.com>
-rw-r--r--conf/machine/include/qoriq-ppc.inc25
-rw-r--r--conf/machine/include/qoriq.inc21
2 files changed, 24 insertions, 22 deletions
diff --git a/conf/machine/include/qoriq-ppc.inc b/conf/machine/include/qoriq-ppc.inc
index 404a2d5..f21f6d3 100644
--- a/conf/machine/include/qoriq-ppc.inc
+++ b/conf/machine/include/qoriq-ppc.inc
@@ -1,29 +1,10 @@
1# Provides the QorIQ common settings 1# Provides the QorIQ common settings for PPC
2require conf/machine/include/soc-family.inc
3
4# providers
5PREFERRED_PROVIDER_virtual/kernel ?= "linux-qoriq"
6PREFERRED_PROVIDER_u-boot ?= "u-boot-qoriq"
7
8# versions
9PREFERRED_VERSION_qemu = "2.2.0+fsl"
10PREFERRED_VERSION_openssl = "1.0.1i"
11PREFERRED_VERSION_cryptodev-linux = "1.7"
12PREFERRED_VERSION_cryptodev-module = "1.7"
13PREFERRED_VERSION_cryptodev-tests = "1.7"
14
15# settings
16MACHINE_FEATURES = "keyboard pci ext2 ext3 serial"
17MACHINE_EXTRA_RRECOMMENDS += "udev-rules-qoriq kernel-modules"
18MACHINEOVERRIDES =. "qoriq-ppc:"
19
20IMAGE_CLASSES += "image_types_uboot"
21EXTRA_IMAGEDEPENDS += "u-boot"
22 2
23KERNEL_IMAGETYPE ?= "uImage" 3KERNEL_IMAGETYPE ?= "uImage"
24 4
25SERIAL_CONSOLES ?= "115200;ttyS0 115200;ttyS1 115200;ttyEHV0" 5SERIAL_CONSOLES ?= "115200;ttyS0 115200;ttyS1 115200;ttyEHV0"
26SERIAL_CONSOLES_CHECK ?= "${SERIAL_CONSOLES}" 6SERIAL_CONSOLES_CHECK ?= "${SERIAL_CONSOLES}"
27 7
28USE_VT = "0" 8MACHINEOVERRIDES =. "qoriq-ppc:"
29 9
10require conf/machine/include/qoriq.inc
diff --git a/conf/machine/include/qoriq.inc b/conf/machine/include/qoriq.inc
new file mode 100644
index 0000000..cfcb5fa
--- /dev/null
+++ b/conf/machine/include/qoriq.inc
@@ -0,0 +1,21 @@
1# Provides the QorIQ common settings
2
3require conf/machine/include/soc-family.inc
4
5PREFERRED_PROVIDER_virtual/kernel ?= "linux-qoriq"
6PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot-qoriq"
7PREFERRED_PROVIDER_u-boot ?= "u-boot-qoriq"
8
9PREFERRED_VERSION_qemu = "2.2.0+fsl"
10PREFERRED_VERSION_openssl = "1.0.1i"
11PREFERRED_VERSION_cryptodev-linux = "1.7"
12PREFERRED_VERSION_cryptodev-module = "1.7"
13PREFERRED_VERSION_cryptodev-tests = "1.7"
14
15MACHINE_FEATURES = "keyboard pci ext2 ext3 serial"
16MACHINE_EXTRA_RRECOMMENDS += "udev-rules-qoriq kernel-modules"
17
18IMAGE_CLASSES += "image_types_uboot"
19EXTRA_IMAGEDEPENDS += "u-boot"
20
21MACHINEOVERRIDES =. "qoriq:"