Author: manu
Date: Thu Nov 19 14:27:01 2020
New Revision: 367843
URL: https://svnweb.freebsd.org/changeset/base/367843

Log:
  release: Switch the Allwinner board to GPT
  
  Allwinner bootrom have an alternate location for u-boot at 128k.
  Work was made recently in u-boot to relocate correctly if loaded from
  there.
  The advantage of this offset is that we can now use a GPT scheme.

Modified:
  head/release/arm64/PINE64-LTS.conf
  head/release/arm64/PINE64.conf
  head/release/arm64/PINEBOOK.conf

Modified: head/release/arm64/PINE64-LTS.conf
==============================================================================
--- head/release/arm64/PINE64-LTS.conf  Thu Nov 19 10:00:48 2020        
(r367842)
+++ head/release/arm64/PINE64-LTS.conf  Thu Nov 19 14:27:01 2020        
(r367843)
@@ -13,7 +13,7 @@ IMAGE_SIZE="3072M"
 KERNEL="GENERIC"
 MD_ARGS="-x 63 -y 255"
 NODOC=1
-PART_SCHEME="MBR"
+PART_SCHEME="GPT"
 FDT_OVERLAYS="sun50i-a64-timer,sun50i-a64-opp"
 export BOARDNAME="PINE64-LTS"
 
@@ -21,7 +21,7 @@ arm_install_uboot() {
        UBOOT_DIR="/usr/local/share/u-boot/u-boot-pine64-lts"
        UBOOT_FILES="u-boot-sunxi-with-spl.bin"
        chroot ${CHROOTDIR} dd if=${UBOOT_DIR}/${UBOOT_FILES} \
-               of=/dev/${mddev} bs=1k seek=8 conv=sync
+               of=/dev/${mddev} bs=128k seek=1 conv=sync
        
        return 0
 }

Modified: head/release/arm64/PINE64.conf
==============================================================================
--- head/release/arm64/PINE64.conf      Thu Nov 19 10:00:48 2020        
(r367842)
+++ head/release/arm64/PINE64.conf      Thu Nov 19 14:27:01 2020        
(r367843)
@@ -13,7 +13,7 @@ IMAGE_SIZE="3072M"
 KERNEL="GENERIC"
 MD_ARGS="-x 63 -y 255"
 NODOC=1
-PART_SCHEME="MBR"
+PART_SCHEME="GPT"
 FDT_OVERLAYS="sun50i-a64-timer,sun50i-a64-opp"
 export BOARDNAME="PINE64"
 
@@ -21,7 +21,7 @@ arm_install_uboot() {
        UBOOT_DIR="/usr/local/share/u-boot/u-boot-pine64"
        UBOOT_FILES="u-boot-sunxi-with-spl.bin"
        chroot ${CHROOTDIR} dd if=${UBOOT_DIR}/${UBOOT_FILES} \
-               of=/dev/${mddev} bs=1k seek=8 conv=sync
+               of=/dev/${mddev} bs=128k seek=1 conv=sync
        
        return 0
 }

Modified: head/release/arm64/PINEBOOK.conf
==============================================================================
--- head/release/arm64/PINEBOOK.conf    Thu Nov 19 10:00:48 2020        
(r367842)
+++ head/release/arm64/PINEBOOK.conf    Thu Nov 19 14:27:01 2020        
(r367843)
@@ -13,7 +13,7 @@ IMAGE_SIZE="3072M"
 KERNEL="GENERIC"
 MD_ARGS="-x 63 -y 255"
 NODOC=1
-PART_SCHEME="MBR"
+PART_SCHEME="GPT"
 FDT_OVERLAYS="sun50i-a64-timer,sun50i-a64-opp"
 export BOARDNAME="PINEBOOK"
 
@@ -21,7 +21,7 @@ arm_install_uboot() {
        UBOOT_DIR="/usr/local/share/u-boot/u-boot-pinebook"
        UBOOT_FILES="u-boot-sunxi-with-spl.bin"
        chroot ${CHROOTDIR} dd if=${UBOOT_DIR}/${UBOOT_FILES} \
-               of=/dev/${mddev} bs=1k seek=8 conv=sync
+               of=/dev/${mddev} bs=128k seek=1 conv=sync
 
        return 0
 }
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to