freebsd-dev/release/arm64/PINEBOOK.conf
Glen Barber f61e92ca5a release: permanently remove the 'reldoc' target and associates
Following 7b1d1a1658, the structure
for the reldoc target has significantly changed as result of the
ASCIIDoctor/Hugo migration.  As the release notes related files
on the installation medium are inherently out of date, purge them
entirely.

Discussed within:	re, doceng
No objection:		re (silence), doceng (silence)
Timeout:		2 weeks
MFC after:		1 week
MFC to:			stable/13, stable/12, and stable/11 only
Sponsored by:		Rubicon Communications, LLC ("Netgate")
2021-02-17 23:00:03 -05:00

42 lines
1.1 KiB
Bash

#!/bin/sh
#
# $FreeBSD$
#
EMBEDDED_TARGET_ARCH="aarch64"
EMBEDDED_TARGET="arm64"
EMBEDDEDBUILD=1
EMBEDDEDPORTS="sysutils/u-boot-pinebook"
FAT_SIZE="54m -b 1m"
FAT_TYPE="16"
IMAGE_SIZE="3072M"
KERNEL="GENERIC"
MD_ARGS="-x 63 -y 255"
PART_SCHEME="GPT"
FDT_OVERLAYS="sun50i-a64-timer,sun50i-a64-opp"
export BOARDNAME="PINEBOOK"
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=128k seek=1 conv=sync
return 0
}
arm_do_quirk() {
echo '# Enable quirk for trackpad' \
>> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
echo 'usb_quirk_load=YES' \
>> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
echo 'ums_load=YES' \
>> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
echo 'hw.usb.quirk="0x258a 0x000c 0x0000 0xffff UQ_CFG_INDEX=1"' \
>> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
# We want EFIFB but there is no node and so we cannot know
# which regulator is used for powering lcd/hdmi
echo 'hw.regulator.disable_unused=0' \
>> ${CHROOTDIR}/${DESTDIR}/boot/loader.conf
}