added Orange pi 3b v2.1 support
This commit is contained in:
parent
15f5e71234
commit
14a5f32f47
4 changed files with 41 additions and 2 deletions
34
BUILD.bazel
34
BUILD.bazel
|
|
@ -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__"],
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue