forlinx@ubuntu20:~/openil_WHT/openil$ git checkout OpenIL-v1.9-202009 #alternatively you can choose a newer release
forlinx@ubuntu20:~/openil_WHT/openil$ make nxp_ls1028ardb-64b_defconfig
forlinx@ubuntu20:~/openil_WHT/openil$ make
四、问题排查
1.修改env_setup.sh 脚本
#!/bin/sh
#
host_packages_list="vim git make net-tools build-essential cpio autotools-dev automake dh-autoreconf binfmt-support qemu-system-common qemu-user-static u-boot-tools binutils bash patch gzip bzip2 tar wget libncurses5-dev unzip python3-pyelftools python-pyelftools python3-pycryptodome python-pycryptodome pkg-config libtool rsync file bc openssl sed libssl-dev autogen bison flex inetutils-ping"
main()
{
echo "Checking the packages required on host!"
echo "These packages will be installed if they are not exist!"
if ! dpkg-query -l debootstrap | grep ii 1>/dev/null; then
echo "Installing debootstrap-1.0.95ubuntu0.12"
wget http://ports.ubuntu.com/pool/main/d/debootstrap/debootstrap_1.0.95ubuntu0.12_all.deb
sudo dpkg -i debootstrap_1.0.95ubuntu0.12_all.deb
rm debootstrap_1.0.95ubuntu0.12_all.deb
else