mirror of
https://github.com/linux-sunxi/meta-sunxi.git
synced 2024-11-08 14:28:22 +01:00
5dcf6c40d4
This patch adds ethernet support to orange pi one plus. The patch has been submitted to the mailing list and is being added to the bbappend for u-boot. Unfortunately, is doesn't keep ethernet on after kernel boot, as the kernel dts needs to be synced with the u-boot dts. Submitted patch waiting for approval on the upstream: https://lore.kernel.org/u-boot/30debca8b31ed4d2cbd64850d48b81ac@posteo.net/T/#t
32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
FILESEXTRAPATHS:prepend:sunxi := "${THISDIR}/files:"
|
|
|
|
DEPENDS:append:sunxi = " bc-native dtc-native swig-native python3-native flex-native bison-native "
|
|
DEPENDS:append:sun50i = " trusted-firmware-a"
|
|
|
|
COMPATIBLE_MACHINE:sunxi = "(sun4i|sun5i|sun7i|sun8i|sun50i)"
|
|
|
|
DEFAULT_PREFERENCE:sun4i = "1"
|
|
DEFAULT_PREFERENCE:sun5i = "1"
|
|
DEFAULT_PREFERENCE:sun7i = "1"
|
|
DEFAULT_PREFERENCE:sun8i = "1"
|
|
DEFAULT_PREFERENCE:sun50i = "1"
|
|
|
|
SRC_URI:append:sunxi = " \
|
|
file://0001-nanopi_neo_air_defconfig-Enable-eMMC-support.patch \
|
|
file://0002-Added-nanopi-r1-board-support.patch \
|
|
file://0003-sunxi-H6-Enable-Ethernet-on-Orange-Pi-One-Plus.patch \
|
|
file://boot.cmd \
|
|
"
|
|
|
|
UBOOT_ENV_SUFFIX:sunxi = "scr"
|
|
UBOOT_ENV:sunxi = "boot"
|
|
|
|
EXTRA_OEMAKE:append:sunxi = ' HOSTLDSHARED="${BUILD_CC} -shared ${BUILD_LDFLAGS} ${BUILD_CFLAGS}" '
|
|
EXTRA_OEMAKE:append:sun50i = " BL31=${DEPLOY_DIR_IMAGE}/bl31.bin SCP=/dev/null"
|
|
|
|
do_compile:sun50i[depends] += "trusted-firmware-a:do_deploy"
|
|
|
|
do_compile:append:sunxi() {
|
|
${B}/tools/mkimage -C none -A arm -T script -d ${WORKDIR}/boot.cmd ${WORKDIR}/${UBOOT_ENV_BINARY}
|
|
}
|