规范设备树名称,增加extlinux配置文件
This commit is contained in:
@ -736,6 +736,12 @@ function build_extboot(){
|
|||||||
|
|
||||||
cp ${TOP_DIR}/$RK_KERNEL_IMG $EXTBOOT_DIR/Image-$KERNEL_VERSION
|
cp ${TOP_DIR}/$RK_KERNEL_IMG $EXTBOOT_DIR/Image-$KERNEL_VERSION
|
||||||
|
|
||||||
|
mkdir -p $EXTBOOT_DIR/extlinux
|
||||||
|
echo -e "label kernel-$KERNEL_VERSION" >> $EXTBOOT_DIR/extlinux/extlinux.conf
|
||||||
|
echo -e "\tkernel /Image-$KERNEL_VERSION" >> $EXTBOOT_DIR/extlinux/extlinux.conf
|
||||||
|
echo -e "\tdevicetreedir /" >> $EXTBOOT_DIR/extlinux/extlinux.conf
|
||||||
|
echo -e "\tappend root=/dev/mmcblk0p3 earlyprintk console=ttyFIQ0 console=tty1 consoleblank=0 loglevel=7 rootwait rw rootfstype=ext4 cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory swapaccount=1 switolb=1 coherent_pool=1m" >> $EXTBOOT_DIR/extlinux/extlinux.conf
|
||||||
|
|
||||||
if [ "$RK_ARCH" == "arm64" ];then
|
if [ "$RK_ARCH" == "arm64" ];then
|
||||||
cp ${TOP_DIR}/kernel/arch/${RK_ARCH}/boot/dts/rockchip/*.dtb $EXTBOOT_DTB
|
cp ${TOP_DIR}/kernel/arch/${RK_ARCH}/boot/dts/rockchip/*.dtb $EXTBOOT_DTB
|
||||||
cp ${TOP_DIR}/kernel/arch/${RK_ARCH}/boot/dts/rockchip/overlay/*.dtbo $EXTBOOT_DTB/overlay
|
cp ${TOP_DIR}/kernel/arch/${RK_ARCH}/boot/dts/rockchip/overlay/*.dtbo $EXTBOOT_DTB/overlay
|
||||||
@ -764,7 +770,7 @@ function build_extboot(){
|
|||||||
# rm $EXTBOOT_DIR/lib/modules/$KERNEL_VERSION/source
|
# rm $EXTBOOT_DIR/lib/modules/$KERNEL_VERSION/source
|
||||||
|
|
||||||
rm -rf $EXTBOOT_IMG && truncate -s 128M $EXTBOOT_IMG
|
rm -rf $EXTBOOT_IMG && truncate -s 128M $EXTBOOT_IMG
|
||||||
fakeroot mkfs.ext4 -F -L "boot" -d $EXTBOOT_DIR $EXTBOOT_IMG
|
fakeroot mkfs.ext2 -F -L "boot" -d $EXTBOOT_DIR $EXTBOOT_IMG
|
||||||
# fakeroot mkfs.fat -F 16 -n "boot" $EXTBOOT_IMG
|
# fakeroot mkfs.fat -F 16 -n "boot" $EXTBOOT_IMG
|
||||||
|
|
||||||
# mkdir -p $EXTBOOT_DIR.tmp
|
# mkdir -p $EXTBOOT_DIR.tmp
|
||||||
@ -901,7 +907,7 @@ function build_ubuntu(){
|
|||||||
ARCH=arm64 ./mk-base-$RK_ROOTFS_TARGET-ubuntu.sh
|
ARCH=arm64 ./mk-base-$RK_ROOTFS_TARGET-ubuntu.sh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
VERSION=$RK_ROOTFS_DEBUG ARCH=$ARCH SOC=$RK_UBOOT_DEFCONFIG ./mk-$RK_ROOTFS_TARGET-rootfs.sh
|
VERSION=$RK_ROOTFS_DEBUG ARCH=$ARCH SOC=$RK_SOC ./mk-$RK_ROOTFS_TARGET-rootfs.sh
|
||||||
|
|
||||||
./mk-image.sh
|
./mk-image.sh
|
||||||
else
|
else
|
||||||
@ -942,7 +948,7 @@ function build_debian(){
|
|||||||
RELEASE=$RELEASE TARGET=$RK_ROOTFS_TARGET ARCH=$ARCH ./mk-base-debian.sh
|
RELEASE=$RELEASE TARGET=$RK_ROOTFS_TARGET ARCH=$ARCH ./mk-base-debian.sh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
RELEASE=$RELEASE TARGET=$RK_ROOTFS_TARGET VERSION=$RK_ROOTFS_DEBUG SOC=$RK_UBOOT_DEFCONFIG ARCH=$ARCH ./mk-rootfs.sh
|
RELEASE=$RELEASE TARGET=$RK_ROOTFS_TARGET VERSION=$RK_ROOTFS_DEBUG SOC=$RK_SOC ARCH=$ARCH ./mk-rootfs.sh
|
||||||
./mk-image.sh
|
./mk-image.sh
|
||||||
else
|
else
|
||||||
echo "[ Already Exists IMG, Skip Make Debian Scripts ]"
|
echo "[ Already Exists IMG, Skip Make Debian Scripts ]"
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
# Target arch
|
# Target arch
|
||||||
export RK_ARCH=arm64
|
export RK_ARCH=arm64
|
||||||
# Uboot defconfig
|
# Uboot defconfig
|
||||||
export RK_UBOOT_DEFCONFIG=rk3566
|
export RK_UBOOT_DEFCONFIG=lubancat-rk356x
|
||||||
# Uboot image format type: fit(flattened image tree)
|
# Uboot image format type: fit(flattened image tree)
|
||||||
export RK_UBOOT_FORMAT_TYPE=fit
|
export RK_UBOOT_FORMAT_TYPE=fit
|
||||||
# Kernel defconfig
|
# Kernel defconfig
|
||||||
|
|||||||
@ -1,9 +1,11 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# SOC
|
||||||
|
export RK_SOC=rk356x
|
||||||
# Target arch
|
# Target arch
|
||||||
export RK_ARCH=arm64
|
export RK_ARCH=arm64
|
||||||
# Uboot defconfig
|
# Uboot defconfig
|
||||||
export RK_UBOOT_DEFCONFIG=rk3566
|
export RK_UBOOT_DEFCONFIG=lubancat-rk356x
|
||||||
# Uboot image format type: fit(flattened image tree)
|
# Uboot image format type: fit(flattened image tree)
|
||||||
export RK_UBOOT_FORMAT_TYPE=fit
|
export RK_UBOOT_FORMAT_TYPE=fit
|
||||||
# Kernel defconfig
|
# Kernel defconfig
|
||||||
|
|||||||
@ -1,9 +1,11 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# SOC
|
||||||
|
export RK_SOC=rk356x
|
||||||
# Target arch
|
# Target arch
|
||||||
export RK_ARCH=arm64
|
export RK_ARCH=arm64
|
||||||
# Uboot defconfig
|
# Uboot defconfig
|
||||||
export RK_UBOOT_DEFCONFIG=rk3566
|
export RK_UBOOT_DEFCONFIG=lubancat-rk356x
|
||||||
# Uboot image format type: fit(flattened image tree)
|
# Uboot image format type: fit(flattened image tree)
|
||||||
export RK_UBOOT_FORMAT_TYPE=fit
|
export RK_UBOOT_FORMAT_TYPE=fit
|
||||||
# Kernel defconfig
|
# Kernel defconfig
|
||||||
|
|||||||
@ -1,9 +1,11 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# SOC
|
||||||
|
export RK_SOC=rk356x
|
||||||
# Target arch
|
# Target arch
|
||||||
export RK_ARCH=arm64
|
export RK_ARCH=arm64
|
||||||
# Uboot defconfig
|
# Uboot defconfig
|
||||||
export RK_UBOOT_DEFCONFIG=rk3566
|
export RK_UBOOT_DEFCONFIG=lubancat-rk356x
|
||||||
# Uboot image format type: fit(flattened image tree)
|
# Uboot image format type: fit(flattened image tree)
|
||||||
export RK_UBOOT_FORMAT_TYPE=fit
|
export RK_UBOOT_FORMAT_TYPE=fit
|
||||||
# Kernel defconfig
|
# Kernel defconfig
|
||||||
|
|||||||
@ -1,9 +1,11 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# SOC
|
||||||
|
export RK_SOC=rk356x
|
||||||
# Target arch
|
# Target arch
|
||||||
export RK_ARCH=arm64
|
export RK_ARCH=arm64
|
||||||
# Uboot defconfig
|
# Uboot defconfig
|
||||||
export RK_UBOOT_DEFCONFIG=rk3566
|
export RK_UBOOT_DEFCONFIG=lubancat-rk356x
|
||||||
# Uboot image format type: fit(flattened image tree)
|
# Uboot image format type: fit(flattened image tree)
|
||||||
export RK_UBOOT_FORMAT_TYPE=fit
|
export RK_UBOOT_FORMAT_TYPE=fit
|
||||||
# Kernel defconfig
|
# Kernel defconfig
|
||||||
|
|||||||
@ -11,7 +11,7 @@ export RK_KERNEL_DEFCONFIG=lubancat2_defconfig
|
|||||||
# Kernel defconfig fragment
|
# Kernel defconfig fragment
|
||||||
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
||||||
# Kernel dts
|
# Kernel dts
|
||||||
export RK_KERNEL_DTS=rk3566-lubancat-zero
|
export RK_KERNEL_DTS=rk3566-lubancat-0
|
||||||
# boot image type
|
# boot image type
|
||||||
export RK_BOOT_IMG=boot.img
|
export RK_BOOT_IMG=boot.img
|
||||||
# kernel image path
|
# kernel image path
|
||||||
|
|||||||
@ -11,7 +11,7 @@ export RK_KERNEL_DEFCONFIG=lubancat2_defconfig
|
|||||||
# Kernel defconfig fragment
|
# Kernel defconfig fragment
|
||||||
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
||||||
# Kernel dts
|
# Kernel dts
|
||||||
export RK_KERNEL_DTS=rk3566-lubancat-zero
|
export RK_KERNEL_DTS=rk3566-lubancat-0
|
||||||
# boot image type
|
# boot image type
|
||||||
export RK_BOOT_IMG=boot.img
|
export RK_BOOT_IMG=boot.img
|
||||||
# kernel image path
|
# kernel image path
|
||||||
|
|||||||
@ -11,7 +11,7 @@ export RK_KERNEL_DEFCONFIG=lubancat2_defconfig
|
|||||||
# Kernel defconfig fragment
|
# Kernel defconfig fragment
|
||||||
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
||||||
# Kernel dts
|
# Kernel dts
|
||||||
export RK_KERNEL_DTS=rk3566-lubancat-zero
|
export RK_KERNEL_DTS=rk3566-lubancat-0
|
||||||
# boot image type
|
# boot image type
|
||||||
export RK_BOOT_IMG=boot.img
|
export RK_BOOT_IMG=boot.img
|
||||||
# kernel image path
|
# kernel image path
|
||||||
|
|||||||
@ -11,7 +11,7 @@ export RK_KERNEL_DEFCONFIG=lubancat2_defconfig
|
|||||||
# Kernel defconfig fragment
|
# Kernel defconfig fragment
|
||||||
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
||||||
# Kernel dts
|
# Kernel dts
|
||||||
export RK_KERNEL_DTS=rk3566-lubancat1
|
export RK_KERNEL_DTS=rk3566-lubancat-1
|
||||||
# boot image type
|
# boot image type
|
||||||
export RK_BOOT_IMG=boot.img
|
export RK_BOOT_IMG=boot.img
|
||||||
# kernel image path
|
# kernel image path
|
||||||
|
|||||||
@ -11,7 +11,7 @@ export RK_KERNEL_DEFCONFIG=lubancat2_defconfig
|
|||||||
# Kernel defconfig fragment
|
# Kernel defconfig fragment
|
||||||
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
||||||
# Kernel dts
|
# Kernel dts
|
||||||
export RK_KERNEL_DTS=rk3566-lubancat1
|
export RK_KERNEL_DTS=rk3566-lubancat-1
|
||||||
# boot image type
|
# boot image type
|
||||||
export RK_BOOT_IMG=boot.img
|
export RK_BOOT_IMG=boot.img
|
||||||
# kernel image path
|
# kernel image path
|
||||||
|
|||||||
@ -11,7 +11,7 @@ export RK_KERNEL_DEFCONFIG=lubancat2_defconfig
|
|||||||
# Kernel defconfig fragment
|
# Kernel defconfig fragment
|
||||||
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
||||||
# Kernel dts
|
# Kernel dts
|
||||||
export RK_KERNEL_DTS=rk3566-lubancat1
|
export RK_KERNEL_DTS=rk3566-lubancat-1
|
||||||
# boot image type
|
# boot image type
|
||||||
export RK_BOOT_IMG=boot.img
|
export RK_BOOT_IMG=boot.img
|
||||||
# kernel image path
|
# kernel image path
|
||||||
|
|||||||
@ -11,7 +11,7 @@ export RK_KERNEL_DEFCONFIG=lubancat2_defconfig
|
|||||||
# Kernel defconfig fragment
|
# Kernel defconfig fragment
|
||||||
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
||||||
# Kernel dts
|
# Kernel dts
|
||||||
export RK_KERNEL_DTS=rk3566-lubancat1-n
|
export RK_KERNEL_DTS=rk3566-lubancat-1n
|
||||||
# boot image type
|
# boot image type
|
||||||
export RK_BOOT_IMG=boot.img
|
export RK_BOOT_IMG=boot.img
|
||||||
# kernel image path
|
# kernel image path
|
||||||
|
|||||||
@ -11,7 +11,7 @@ export RK_KERNEL_DEFCONFIG=lubancat2_defconfig
|
|||||||
# Kernel defconfig fragment
|
# Kernel defconfig fragment
|
||||||
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
||||||
# Kernel dts
|
# Kernel dts
|
||||||
export RK_KERNEL_DTS=rk3566-lubancat1-n
|
export RK_KERNEL_DTS=rk3566-lubancat-1n
|
||||||
# boot image type
|
# boot image type
|
||||||
export RK_BOOT_IMG=boot.img
|
export RK_BOOT_IMG=boot.img
|
||||||
# kernel image path
|
# kernel image path
|
||||||
|
|||||||
@ -11,7 +11,7 @@ export RK_KERNEL_DEFCONFIG=lubancat2_defconfig
|
|||||||
# Kernel defconfig fragment
|
# Kernel defconfig fragment
|
||||||
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
||||||
# Kernel dts
|
# Kernel dts
|
||||||
export RK_KERNEL_DTS=rk3566-lubancat1-n
|
export RK_KERNEL_DTS=rk3566-lubancat-1n
|
||||||
# boot image type
|
# boot image type
|
||||||
export RK_BOOT_IMG=boot.img
|
export RK_BOOT_IMG=boot.img
|
||||||
# kernel image path
|
# kernel image path
|
||||||
|
|||||||
@ -11,7 +11,7 @@ export RK_KERNEL_DEFCONFIG=lubancat2_buildroot_defconfig
|
|||||||
# Kernel defconfig fragment
|
# Kernel defconfig fragment
|
||||||
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
||||||
# Kernel dts
|
# Kernel dts
|
||||||
export RK_KERNEL_DTS=rk3568-lubancat2
|
export RK_KERNEL_DTS=rk3568-lubancat-2
|
||||||
# boot image type
|
# boot image type
|
||||||
export RK_BOOT_IMG=boot.img
|
export RK_BOOT_IMG=boot.img
|
||||||
# kernel image path
|
# kernel image path
|
||||||
|
|||||||
@ -11,7 +11,7 @@ export RK_KERNEL_DEFCONFIG=lubancat2_defconfig
|
|||||||
# Kernel defconfig fragment
|
# Kernel defconfig fragment
|
||||||
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
||||||
# Kernel dts
|
# Kernel dts
|
||||||
export RK_KERNEL_DTS=rk3568-lubancat2
|
export RK_KERNEL_DTS=rk3568-lubancat-2
|
||||||
# boot image type
|
# boot image type
|
||||||
export RK_BOOT_IMG=boot.img
|
export RK_BOOT_IMG=boot.img
|
||||||
# kernel image path
|
# kernel image path
|
||||||
|
|||||||
@ -11,7 +11,7 @@ export RK_KERNEL_DEFCONFIG=lubancat2_defconfig
|
|||||||
# Kernel defconfig fragment
|
# Kernel defconfig fragment
|
||||||
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
||||||
# Kernel dts
|
# Kernel dts
|
||||||
export RK_KERNEL_DTS=rk3568-lubancat2
|
export RK_KERNEL_DTS=rk3568-lubancat-2
|
||||||
# boot image type
|
# boot image type
|
||||||
export RK_BOOT_IMG=boot.img
|
export RK_BOOT_IMG=boot.img
|
||||||
# kernel image path
|
# kernel image path
|
||||||
|
|||||||
@ -11,7 +11,7 @@ export RK_KERNEL_DEFCONFIG=lubancat2_buildroot_defconfig
|
|||||||
# Kernel defconfig fragment
|
# Kernel defconfig fragment
|
||||||
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
||||||
# Kernel dts
|
# Kernel dts
|
||||||
export RK_KERNEL_DTS=rk3568-lubancat2-io
|
export RK_KERNEL_DTS=rk3568-lubancat-2io
|
||||||
# boot image type
|
# boot image type
|
||||||
export RK_BOOT_IMG=boot.img
|
export RK_BOOT_IMG=boot.img
|
||||||
# kernel image path
|
# kernel image path
|
||||||
|
|||||||
@ -11,7 +11,7 @@ export RK_KERNEL_DEFCONFIG=lubancat2_defconfig
|
|||||||
# Kernel defconfig fragment
|
# Kernel defconfig fragment
|
||||||
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
||||||
# Kernel dts
|
# Kernel dts
|
||||||
export RK_KERNEL_DTS=rk3568-lubancat2-io
|
export RK_KERNEL_DTS=rk3568-lubancat-2io
|
||||||
# boot image type
|
# boot image type
|
||||||
export RK_BOOT_IMG=boot.img
|
export RK_BOOT_IMG=boot.img
|
||||||
# kernel image path
|
# kernel image path
|
||||||
|
|||||||
@ -11,7 +11,7 @@ export RK_KERNEL_DEFCONFIG=lubancat2_defconfig
|
|||||||
# Kernel defconfig fragment
|
# Kernel defconfig fragment
|
||||||
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
||||||
# Kernel dts
|
# Kernel dts
|
||||||
export RK_KERNEL_DTS=rk3568-lubancat2-io
|
export RK_KERNEL_DTS=rk3568-lubancat-2io
|
||||||
# boot image type
|
# boot image type
|
||||||
export RK_BOOT_IMG=boot.img
|
export RK_BOOT_IMG=boot.img
|
||||||
# kernel image path
|
# kernel image path
|
||||||
|
|||||||
@ -11,7 +11,7 @@ export RK_KERNEL_DEFCONFIG=lubancat2_buildroot_defconfig
|
|||||||
# Kernel defconfig fragment
|
# Kernel defconfig fragment
|
||||||
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
||||||
# Kernel dts
|
# Kernel dts
|
||||||
export RK_KERNEL_DTS=rk3568-lubancat2-n
|
export RK_KERNEL_DTS=rk3568-lubancat-2n
|
||||||
# boot image type
|
# boot image type
|
||||||
export RK_BOOT_IMG=boot.img
|
export RK_BOOT_IMG=boot.img
|
||||||
# kernel image path
|
# kernel image path
|
||||||
|
|||||||
@ -11,7 +11,7 @@ export RK_KERNEL_DEFCONFIG=lubancat2_defconfig
|
|||||||
# Kernel defconfig fragment
|
# Kernel defconfig fragment
|
||||||
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
||||||
# Kernel dts
|
# Kernel dts
|
||||||
export RK_KERNEL_DTS=rk3568-lubancat2-n
|
export RK_KERNEL_DTS=rk3568-lubancat-2n
|
||||||
# boot image type
|
# boot image type
|
||||||
export RK_BOOT_IMG=boot.img
|
export RK_BOOT_IMG=boot.img
|
||||||
# kernel image path
|
# kernel image path
|
||||||
|
|||||||
@ -11,7 +11,7 @@ export RK_KERNEL_DEFCONFIG=lubancat2_openwrt_defconfig
|
|||||||
# Kernel defconfig fragment
|
# Kernel defconfig fragment
|
||||||
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
||||||
# Kernel dts
|
# Kernel dts
|
||||||
export RK_KERNEL_DTS=rk3568-lubancat2-n
|
export RK_KERNEL_DTS=rk3568-lubancat-2n
|
||||||
# boot image type
|
# boot image type
|
||||||
export RK_BOOT_IMG=boot.img
|
export RK_BOOT_IMG=boot.img
|
||||||
# kernel image path
|
# kernel image path
|
||||||
|
|||||||
@ -11,7 +11,7 @@ export RK_KERNEL_DEFCONFIG=lubancat2_defconfig
|
|||||||
# Kernel defconfig fragment
|
# Kernel defconfig fragment
|
||||||
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
export RK_KERNEL_DEFCONFIG_FRAGMENT=
|
||||||
# Kernel dts
|
# Kernel dts
|
||||||
export RK_KERNEL_DTS=rk3568-lubancat2-n
|
export RK_KERNEL_DTS=rk3568-lubancat-2n
|
||||||
# boot image type
|
# boot image type
|
||||||
export RK_BOOT_IMG=boot.img
|
export RK_BOOT_IMG=boot.img
|
||||||
# kernel image path
|
# kernel image path
|
||||||
@ -53,7 +53,7 @@ export RK_OEM_DIR=oem_normal
|
|||||||
#userdata config
|
#userdata config
|
||||||
export RK_USERDATA_DIR=userdata_normal
|
export RK_USERDATA_DIR=userdata_normal
|
||||||
#misc image
|
#misc image
|
||||||
export RK_MISC=parameter-buildroot-fit.txt
|
export RK_MISC=wipe_all-misc.img
|
||||||
#choose enable distro module
|
#choose enable distro module
|
||||||
export RK_DISTRO_MODULE=
|
export RK_DISTRO_MODULE=
|
||||||
# Define pre-build script for this board
|
# Define pre-build script for this board
|
||||||
|
|||||||
Reference in New Issue
Block a user