diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2018-09-21 02:21:54 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2018-09-21 02:21:54 +0000 |
commit | 3b00c07234737077dbc8b2150d5ab32fc77e0e2f (patch) | |
tree | 5f6bb78854dd533a5ef291d8f2f41afd873e2c15 | |
parent | 3295d22656dcaae90ef9872aae20d817df23bf53 (diff) |
U-Boot 2018.05 and later will attempt to load a dtb for PocketBeagle if
the hardware is detected. Add this to the miniroot/ramdisk.
requires dtb 4.18
U-Boot 2018.09 and later will load a dtb for 'SanCloud BeagleBone
Enhanced' if required which will be in dtb 4.19 after linux 4.19 is
released and can be added then.
-rw-r--r-- | distrib/armv7/miniroot/am335x/Makefile | 1 | ||||
-rw-r--r-- | distrib/armv7/ramdisk/list | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/distrib/armv7/miniroot/am335x/Makefile b/distrib/armv7/miniroot/am335x/Makefile index 9addbfa7144..7454c21a055 100644 --- a/distrib/armv7/miniroot/am335x/Makefile +++ b/distrib/armv7/miniroot/am335x/Makefile @@ -4,6 +4,7 @@ UBOOT= am335x_boneblack DTBS=\ am335x-bone.dtb \ am335x-boneblack.dtb \ + am335x-pocketbeagle.dtb \ am335x-boneblack-wireless.dtb \ am335x-bonegreen.dtb \ am335x-bonegreen-wireless.dtb \ diff --git a/distrib/armv7/ramdisk/list b/distrib/armv7/ramdisk/list index c8c5bc99d2b..e26bf2f3d9f 100644 --- a/distrib/armv7/ramdisk/list +++ b/distrib/armv7/ramdisk/list @@ -1,4 +1,4 @@ -# $OpenBSD: list,v 1.36 2018/03/21 19:16:06 sthen Exp $ +# $OpenBSD: list,v 1.37 2018/09/21 02:21:53 jsg Exp $ SRCDIRS distrib/special @@ -124,6 +124,7 @@ COPY /usr/local/share/u-boot/am335x_boneblack/MLO usr/mdec/am335x/MLO COPY /usr/local/share/u-boot/am335x_boneblack/u-boot.img usr/mdec/am335x/u-boot.img COPY /usr/local/share/dtb/arm/am335x-bone.dtb usr/mdec/am335x/am335x-bone.dtb COPY /usr/local/share/dtb/arm/am335x-boneblack.dtb usr/mdec/am335x/am335x-boneblack.dtb +COPY /usr/local/share/dtb/arm/am335x-pocketbeagle.dtb usr/mdec/am335x/am335x-pocketbeagle.dtb COPY /usr/local/share/dtb/arm/am335x-boneblack-wireless.dtb usr/mdec/am335x/am335x-boneblack-wireless.dtb COPY /usr/local/share/dtb/arm/am335x-boneblue.dtb usr/mdec/am335x/am335x-boneblue.dtb COPY /usr/local/share/dtb/arm/am335x-bonegreen.dtb usr/mdec/am335x/am335x-bonegreen.dtb |