[3rdparty,5/5] ccimx6ulsbcexpress: Add initial board configuration
Submitted by Gonzalez, Alex on Nov. 6, 2018, 3:08 p.m.
|
Patch ID: 156122
Details
Commit Message
new file mode 100644
@@ -0,0 +1,11 @@
+#@TYPE: Machine
+#@NAME: ConnecCore 6UL SBC Express
+#@SOC: i.MX6UL
+#@DESCRIPTION: Machine configuration for ConnectCore 6UL SBC Express board.
+#@MAINTAINER: Alex Gonzalez <alex.gonzalez@digi.com>
+
+include conf/machine/include/ccimx6ul.inc
+
+SERIAL_CONSOLE = "115200 ttymxc4"
+
+KERNEL_DEVICETREE = "imx6ul-ccimx6ulsbcexpress.dtb"
Comments
The ConnectCore 6UL Single Board Computer (SBC) Express contains the ConnectCore 6UL System-On-Module. Its hardware specifications are: * 256MB DDR3 memory * 256MB NAND flash * Single Ethernet * USB Host and USB-OTG * MicroSD external storage * Groove connectors and Raspberry Pi Hat compatible expansion heade The build artifacts are: U-Boot images: u-boot.imx Linux partition image: <image name>.boot.ubifs Root filesystem image: <image name>.ubifs Root filesystem tarball (for network booting): <image name>.tar.bz2 To program a board from the U-boot prompt, copy the U-Boot, Linux and root filesystem partition images to your TFTP server root and do: env set ipaddr <target ip address> env set serverip <TFTP server ip address> update uboot tftp u-boot.imx update linux tftp <image name>.boot.ubifs update rootfs tftp <image name>.ubifs More details about the SBC can be found at: https://www.digi.com/products/embedded-systems/single-board-computers/connectcore-for-i-mx6ul-sbc-express Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com> --- conf/machine/ccimx6ulsbcexpress.conf | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 conf/machine/ccimx6ulsbcexpress.conf