summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2019-10-08 14:01:25 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2019-10-08 14:03:09 +0200
commitd812e398b72377c561bda5e6669c30b5e00419d8 (patch)
treef94f3eb7938fc938522376dd01e850f879107d56 /package
parent8a62863e1b3c4d1849a23307551fb3b71b7220ba (diff)
u-boot: update to 2019.10
Diffstat (limited to 'package')
-rw-r--r--package/u-boot/Makefile8
-rw-r--r--package/u-boot/files/boot.script.phytec4
2 files changed, 10 insertions, 2 deletions
diff --git a/package/u-boot/Makefile b/package/u-boot/Makefile
index 8ef85c739..b793e8540 100644
--- a/package/u-boot/Makefile
+++ b/package/u-boot/Makefile
@@ -4,9 +4,9 @@
include $(ADK_TOPDIR)/rules.mk
PKG_NAME:= u-boot
-PKG_VERSION:= 2018.03
+PKG_VERSION:= 2019.10
PKG_RELEASE:= 1
-PKG_HASH:= 7e7477534409d5368eb1371ffde6820f0f79780a1a1f676161c48442cb303dfd
+PKG_HASH:= 8d6d6070739522dd236cba7055b8736bfe92b4fac0ea18ad809829ca79667014
PKG_DESCR:= portable bootloader
PKG_SECTION:= base/boot
HOST_BUILDDEP:= libressl-host dtc-host
@@ -122,6 +122,10 @@ ifeq ($(ADK_TARGET_SYSTEM_SOLIDRUN_IMX6),y)
$(INSTALL_BIN) $(WRKBUILD)/SPL $(FW_DIR)
$(INSTALL_BIN) ./files/boot.script.imx6 $(FW_DIR)
endif
+ifeq ($(ADK_TARGET_SYSTEM_PHYTEC_IMX6),y)
+ $(INSTALL_BIN) $(WRKBUILD)/SPL $(FW_DIR)
+ $(INSTALL_BIN) ./files/boot.script.phytec $(FW_DIR)
+endif
ifeq ($(ADK_TARGET_SYSTEM_BEAGLEBONE_BLACK),y)
$(CP) ./files/uEnv.txt.bbb $(FW_DIR)/uEnv.txt
$(INSTALL_BIN) $(WRKBUILD)/MLO $(FW_DIR)
diff --git a/package/u-boot/files/boot.script.phytec b/package/u-boot/files/boot.script.phytec
new file mode 100644
index 000000000..5075ab855
--- /dev/null
+++ b/package/u-boot/files/boot.script.phytec
@@ -0,0 +1,4 @@
+setenv bootargs 'console=ttymxc1,115200 video=mxcfb0:dev=hdmi,1920x1080M@60,if=RGB24,bpp=32 root=/dev/mmcblk0p1'
+ext4load mmc 0:1 0x18000000 boot/imx6q-phytec-pbab01.dtb
+ext4load mmc 0:1 0x12000000 boot/kernel
+bootz 0x12000000 - 0x18000000