PCB文件:
链接:https://pan.baidu.com/s/173ZCxDGA0MwY03Gm839Stw?pwd=ota8
提取码:ota8
镜像文件:
链接:https://pan.baidu.com/s/115zDaqubvyQ6A6hIrlWjXw?pwd=653x
提取码:653x
ATF源码:
https://gitee.com/byleefei/arm-trusted-firmware.git
u-boot源码:
https://gitee.com/byleefei/u-boot.git
Linux源码:
https://gitee.com/byleefei/linux.git
编译方法:
编译tf-a:
$ git clone https://gitee.com/byleefei/arm-trusted-firmware.git
$ cd arm-trusted-firmware/
$ make CROSS_COMPILE=aarch64-linux-gnu- PLAT=mcore_h616 DEBUG=1 bl31
编译u-boot:
$ git clone https://gitee.com/byleefei/u-boot.git
$ cd u-boot
$ make CROSS_COMPILE=aarch64-linux-gnu- BL31=../arm-trusted-firmware/build/mcore_h616/debug/bl31.bin mcore_h616_defconfig
$ make CROSS_COMPILE=aarch64-linux-gnu- BL31=../arm-trusted-firmware/build/mcore_h616/debug/bl31.bin -j8
编译linux:
$ git clone https://gitee.com/byleefei/linux.git
$ cd linux/
$ make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- mcore_h616_defconfig
$ make ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- -j12
离线
debian12文件系统
https://releases.linaro.org/debian/images/developer-arm64/debian12/
# sudo mount debian.img /mnt
挂载到mnt目录,然后拷贝到tf卡
离线