Initial commit

This commit is contained in:
Administrator
2021-03-17 20:00:17 +08:00
committed by Andy Hu
commit c47c340fa2
48 changed files with 4029 additions and 0 deletions

34
post-build.sh Executable file
View File

@@ -0,0 +1,34 @@
#!/bin/bash
##################################################################
## ##
## SPDX-License-Identifier: GPL-2.0-or-later ##
## ##
## Copyright (C) 2018-2022 Starfive Technology ##
## ##
## Author: jason zhou <jason.zhou@starfivetech.com> ##
## ##
##################################################################
COLOR_NORMAL="\033[0m"
COLOR_GREEN="\033[1;32m"
COLOR_YELLOW="\033[1;33m"
COLOR_RED="\033[1;31m"
COLOR_GREY="\033[1;30m"
printf ${COLOR_GREEN}
echo ""
echo "post build copy images to release folder!"
folder=~/release/`git describe`-`date -I`
echo "create folder:$folder"
printf ${COLOR_NORMAL}
mkdir -p $folder
cp work/image.fit $folder/
cp work/evb_fw_payload.img $folder/
cp work/u-boot-spl.bin.normal.out $folder/
cp work/initramfs.cpio.gz $folder/
cp work/linux/arch/riscv/boot/Image.gz $folder/
cp -rf work/linux/arch/riscv/boot/dts/starfive $folder/
tree $folder
echo ""