1. 下载代码和编译

NXP的OpenWRT方案介绍 - NXP Community

记录一下具体做法:

git clone https://github.com/nxp-imx/imx_openwrt.git -b imx_v23.05_v5.15.114

./scripts/feeds update -a
./scripts/feeds install -a

// 使用 make menuconfig 使能 luci
// 使用 make menuconfig 使能 ext4文件系统 cp config.imx8mmini .config // config.imx8mmini文件是我配置后的 .config文件,拷贝成 config.imx8mmini.config 方便使用
make
-j4 V=s

// 使用dd命令把 openwrt/imx_openwrt/bin/targets/imx/imx8/openwrt-imx-imx8-imx8mmini-squashfs-sdcard.img 镜像烧写进SD卡,即可使用SD卡启动openwrt镜像
// openwrt-imx-imx8-imx8mmini-squashfs-sdcard.img 是只读文件系统
// sdX 是具体sd卡
sudo dd if=openwrt-imx-imx8-imx8mmini-squashfs-sdcard.img of=/dev/sdX bs=1M && sync

 

posted on 2024-09-09 17:59  f1engmin11  阅读(13)  评论(0编辑  收藏  举报

导航