Commit e3ca079d authored by Oleg Dzhimiev's avatar Oleg Dzhimiev

1. added MACHINES: microzed,zedboard,zc706 2. updated recipes

parent 32724a09
......@@ -9,7 +9,7 @@ require conf/machine/include/tune-zynq.inc
PREFERRED_VERSION_ezynq-u-boot ?= "v2013.01%"
PREFERRED_VERSION_linux-xlnx ?= "3.8%"
# Zedboard machine definition known by Xilinx UBOOT
# Zedboard machine definition known by ezynq and xilinx u-boot
UBOOT_MACHINE = "elphel393_config"
SERIAL_CONSOLE = "115200 ttyPS0"
\ No newline at end of file
#@TYPE: Machine
#@NAME: microzed
#@DESCRIPTION: Machine support for microzed.
# http://www.elphel.com/
require conf/machine/include/tune-zynq.inc
# Corresponding from linux-xlnx and ezynq-u-boot
PREFERRED_VERSION_ezynq-u-boot ?= "v2013.01%"
PREFERRED_VERSION_linux-xlnx ?= "3.8%"
# microzed machine definition known by ezynq and xilinx u-boot
UBOOT_MACHINE = "zynq_microzed_config"
SERIAL_CONSOLE = "115200 ttyPS0"
\ No newline at end of file
#@TYPE: Machine
#@NAME: zc706
#@DESCRIPTION: Machine support for zc706.
# http://www.elphel.com/
require conf/machine/include/tune-zynq.inc
# Corresponding from linux-xlnx and ezynq-u-boot
PREFERRED_VERSION_ezynq-u-boot ?= "v2013.01%"
PREFERRED_VERSION_linux-xlnx ?= "3.8%"
# ZC706 machine definition known by ezynq and xilinx u-boot
UBOOT_MACHINE = "zynq_zc706_config"
SERIAL_CONSOLE = "115200 ttyPS0"
\ No newline at end of file
#@TYPE: Machine
#@NAME: zedboard
#@DESCRIPTION: Machine support for zedboard.
# http://www.elphel.com/
require conf/machine/include/tune-zynq.inc
# Corresponding from linux-xlnx and ezynq-u-boot
PREFERRED_VERSION_ezynq-u-boot ?= "v2013.01%"
PREFERRED_VERSION_linux-xlnx ?= "3.8%"
# Zedboard machine definition known by ezynq and xilinx u-boot
UBOOT_MACHINE = "zynq_zed_config"
SERIAL_CONSOLE = "115200 ttyPS0"
\ No newline at end of file
......@@ -9,6 +9,7 @@ IMAGE_INSTALL_append = " python-core \
ethtool \
openssh \
net-tools \
lighttpd \
modphp \
apache2 \
php-cli"
......
......@@ -11,12 +11,27 @@ SRC_URI = "git://github.com/Xilinx/linux-xlnx;protocol=git;nocheckout=1"
PR = "r1"
PV = "${LINUX_VERSION}${LINUX_VERSION_EXTENSION}+git${SRCPV}"
# Override COMPATIBLE_MACHINE to include your machine in a bbappend file.
COMPATIBLE_MACHINE = "elphel393"
SRC_URI_append += "file://xilinx_nandps.patch"
# MACHINE=elphel393
SRC_URI_append_elphel393 += "file://elphel393_defconfig_${LINUX_VERSION}.cfg \
file://elphel393.dts"
KERNEL_DEVICETREE_elphel393 = "${WORKDIR}/elphel393.dts"
#MACHINE=microzed
#Copy of zedboard's defconfig
SRC_URI_append_microzed += "file://microzed_defconfig_${LINUX_VERSION}.cfg"
#zedboard's dts more or less works with microzed
KERNEL_DEVICETREE_microzed = "${S}/arch/arm/boot/dts/zynq-zed.dts"
#MACHINE=zedboard
#Copy of zedboard's defconfig
SRC_URI_append_zedboard += "file://microzed_defconfig_${LINUX_VERSION}.cfg"
KERNEL_DEVICETREE_zedboard = "${S}/arch/arm/boot/dts/zynq-zed.dts"
KERNEL_DEVICETREE_elphel393 = "${WORKDIR}/elphel393.dts"
\ No newline at end of file
#MACHINE=zc706
#Copy of zedboard's defconfig
SRC_URI_append_zedboard += "file://microzed_defconfig_${LINUX_VERSION}.cfg"
KERNEL_DEVICETREE_zedboard = "${S}/arch/arm/boot/dts/zynq-zc706.dts"
\ No newline at end of file
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment