Change-Id: I73178566ed559a7d158dc82c0c79b8855f2acdc3 Signed-off-by: Ziyuan Xu <xzy.xu@rock-chips.com>
47 lines
1.2 KiB
Makefile
Executable File
47 lines
1.2 KiB
Makefile
Executable File
#!/bin/bash
|
|
|
|
# Target arch
|
|
export RK_ARCH=arm64
|
|
# Uboot defconfig
|
|
export RK_UBOOT_DEFCONFIG=rk3399pro-npu
|
|
# Kernel defconfig
|
|
export RK_KERNEL_DEFCONFIG=rk3399pro_npu_defconfig
|
|
# Kernel dts
|
|
export RK_KERNEL_DTS=rk3399pro-npu-evb-v10
|
|
# boot image type
|
|
export RK_BOOT_IMG=
|
|
# kernel image path
|
|
export RK_KERNEL_IMG=kernel/arch/arm64/boot/Image
|
|
# parameter for GPT table
|
|
export RK_PARAMETER=parameter-buildroot.txt
|
|
# Buildroot config
|
|
export RK_CFG_BUILDROOT=
|
|
# Recovery config
|
|
export RK_CFG_RECOVERY=
|
|
# ramboot config
|
|
export RK_CFG_RAMBOOT=rockchip_rk3399pro-npu
|
|
# Pcba config
|
|
export RK_CFG_PCBA=
|
|
# Build jobs
|
|
export RK_JOBS=12
|
|
# target chip
|
|
export RK_TARGET_PRODUCT=rk3399pro-npu
|
|
# Set rootfs type, including ext2 ext4 squashfs
|
|
export RK_ROOTFS_TYPE=
|
|
# rootfs image path
|
|
export RK_ROOTFS_IMG=
|
|
# Set oem partition type, including ext2 squashfs
|
|
export RK_OEM_FS_TYPE=
|
|
# Set userdata partition type, including ext2, fat
|
|
export RK_USERDATA_FS_TYPE=
|
|
# Set flash type. support <emmc, nand, spi_nand, spi_nor>
|
|
export RK_STORAGE_TYPE=
|
|
#OEM config: /oem/dueros/aispeech/iflytekSDK/CaeDemo_VAD/smart_voice
|
|
export RK_OEM_DIR=
|
|
#userdata config
|
|
export RK_USERDATA_DIR=
|
|
#misc image
|
|
export RK_MISC=
|
|
#choose enable distro module
|
|
export RK_DISTRO_MODULE=
|