1
0
Fork 0

added Orange pi 3b v2.1 support

This commit is contained in:
dvab-sarma 2025-08-06 14:13:44 -05:00
parent 15f5e71234
commit 14a5f32f47
4 changed files with 41 additions and 2 deletions

View file

@ -1081,12 +1081,12 @@ kernel_build(
"dtbs",
],
makefile = "//common:Makefile",
kcflags = ["-D__ANDROID_COMMON_KERNEL__"],
)
# Orangepi 5_pro support-
# Orangepi 5 support-
kernel_build(
name = "opi5_defconfig",
outs = [
@ -1111,8 +1111,38 @@ kernel_build(
"dtbs",
],
makefile = "//common:Makefile",
kcflags = ["-D__ANDROID_COMMON_KERNEL__"],
)
# Orangepi 3b support-
kernel_build(
name = "opi3b_defconfig",
outs = [
".config",
],
build_config = "build.config.opi3b",
make_goals = [
"android_orangepi5_defconfig",
],
)
kernel_build(
name = "opi3b",
outs = [
"arch/arm64/boot/Image",
"arch/arm64/boot/dts/rockchip/rk3566-orangepi-3b-v2.1.dtb",
],
build_config = "build.config.opi3b",
make_goals = [
"Image",
"dtbs",
],
makefile = "//common:Makefile",
kcflags = ["-D__ANDROID_COMMON_KERNEL__"],
)