从OTP读取MAC地址
读取MAC地址之前,请先通过NuWriter_MA写入MAC地址
Yocto平台:
1.在U-Boot设备树中禁用默认MAC地址
- ~/yocto/build/tmp-glibc/work/numaker_som_ma35d16a81-poky-linux/u-boot-ma35d1/2020.07-r0/git/arch/arm/dts$ vim ma35d1.dtsi
- gmac0: ethernet@40120000 {
- // mac-address = [ 00 11 22 33 44 55 ];
- };
- gmac1: ethernet@40130000 {
- // mac-address = [ 00 11 22 33 44 66 ];
- };
复制代码 2.重新编译U-Boot,linux内核,并重新打包生成image文件
- ~/yocto/build$ bitbake u-boot-ma35d1 linux-ma35d1 –C compile && bitbake nvt-image-qt5 –c cleanall && bitbake nvt-image-qt5
复制代码 3.将image文件烧写到MA35D1
Buildroot平台:
1.在U-Boot设备树中禁用默认MAC地址
- ~/MA35D1_Buildroot$ vim ma35d1.dtsi
- gmac0: ethernet@40120000 {
- // mac-address = [ 00 11 22 33 44 55 ];
- };
- gmac1: ethernet@40130000 {
- // mac-address = [ 00 11 22 33 44 66 ];
- };
复制代码 2.重新编译U-Boot,linux内核,并重新打包生成image文件
- ~/MA35D1_Buildroot$ make uboot-rebuild linux-rebuild && make
复制代码
3.将image文件烧写到MA35D1
|