Changes include: * switching to profiles * adding ubifs support * building image for GW54XX board Signed-off-by: Luka Perkov <luka@openwrt.org> SVN-Revision: 38441master
parent
f22196e4e9
commit
ee5b7c2859
@ -0,0 +1,13 @@ |
||||
[rootfs] |
||||
# Volume mode (other option is static) |
||||
mode=ubi |
||||
# Source image |
||||
image=root.ubifs |
||||
# Volume ID in UBI image |
||||
vol_id=0 |
||||
# Allow for dynamic resize |
||||
vol_type=dynamic |
||||
# Volume name |
||||
vol_name=rootfs |
||||
# Autoresize volume at first mount |
||||
vol_flags=autoresize |
@ -0,0 +1,15 @@ |
||||
#
|
||||
# Copyright (C) 2013 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
define Profile/IMX6DL_WANDBOARD |
||||
NAME:=Wandboard Dual
|
||||
PACKAGES:= \
|
||||
kmod-thermal-imx kmod-usb-chipidea kmod-usb-mxs-phy \
|
||||
uboot-envtools
|
||||
endef |
||||
|
||||
$(eval $(call Profile,IMX6DL_WANDBOARD)) |
@ -0,0 +1,57 @@ |
||||
#
|
||||
# Copyright (C) 2013 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
define Profile/IMX6Q_GW5400_A |
||||
NAME:=Gateworks Ventana GW5400-A
|
||||
PACKAGES:= \
|
||||
kmod-thermal-imx kmod-usb-chipidea kmod-usb-mxs-phy
|
||||
endef |
||||
|
||||
define Profile/IMX6Q_GW5400_A/Description |
||||
The Gateworks GW5400-A family of products is based on the Freescale i.MX6Q SoC
|
||||
and offers a large variety of peripherals such as:
|
||||
|
||||
* DDR3
|
||||
* SPI FLASH
|
||||
* 6x PCIe (3x with USB)
|
||||
* Optional expansion for additional USB/PCI based periperhals
|
||||
* 1x USB EHCI
|
||||
* 1x USB OTG
|
||||
* HDMI Audio/Video in/out
|
||||
* Analog Video in/out
|
||||
* Analog Audio in/out
|
||||
* Gateworks System Controller
|
||||
endef |
||||
|
||||
$(eval $(call Profile,IMX6Q_GW5400_A)) |
||||
|
||||
define Profile/IMX6Q_GW54XX |
||||
NAME:=Gateworks Ventana GW54XX
|
||||
PACKAGES:= \
|
||||
kmod-thermal-imx kmod-usb-chipidea kmod-usb-mxs-phy
|
||||
endef |
||||
|
||||
define Profile/IMX6Q_GW54XX/Description |
||||
The Gateworks GW54xx family of products is based on the Freescale i.MX6Q SoC
|
||||
and offers a large variety of peripherals such as:
|
||||
|
||||
* DDR3
|
||||
* NAND FLASH
|
||||
* 6x PCIe (3x with USB)
|
||||
* Optional expansion for additional USB/PCI based periperhals
|
||||
* 1x USB EHCI
|
||||
* 1x USB OTG
|
||||
* HDMI Audio/Video in/out
|
||||
* Analog Video in/out
|
||||
* Analog Audio in/out
|
||||
* Gateworks System Controller
|
||||
endef |
||||
|
||||
IMX6Q_GW54XX_UBIFS_OPTS:="-m 2048 -e 124KiB -c 1912"
|
||||
IMX6Q_GW54XX_UBI_OPTS:="-m 2048 -p 128KiB -s 2048"
|
||||
|
||||
$(eval $(call Profile,IMX6Q_GW54XX)) |
Loading…
Reference in new issue