mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
22 lines
818 B
Text
22 lines
818 B
Text
|
# After modifying, run ./mkscr
|
||
|
|
||
|
# MAC address (use spaces instead of colons)
|
||
|
setenv macaddr da 19 c8 7a 6d f4
|
||
|
|
||
|
part uuid ${devtype} ${devnum}:${bootpart} uuid
|
||
|
setenv bootargs console=ttyS2,1500000 root=PARTUUID=${uuid} rw rootwait earlycon=uart8250,mmio32,0xff130000
|
||
|
setenv fdtfile rockchip/rk3328-rock64.dtb
|
||
|
|
||
|
if load ${devtype} ${devnum}:${bootpart} ${kernel_addr_r} /boot/Image; then
|
||
|
if load ${devtype} ${devnum}:${bootpart} ${fdt_addr_r} /boot/dtbs/${fdtfile}; then
|
||
|
fdt addr ${fdt_addr_r}
|
||
|
fdt resize
|
||
|
fdt set /ethernet@ff540000 local-mac-address "[${macaddr}]"
|
||
|
if load ${devtype} ${devnum}:${bootpart} ${ramdisk_addr_r} /boot/initramfs-linux.img; then
|
||
|
booti ${kernel_addr_r} ${ramdisk_addr_r}:${filesize} ${fdt_addr_r};
|
||
|
else
|
||
|
booti ${kernel_addr_r} - ${fdt_addr_r};
|
||
|
fi;
|
||
|
fi;
|
||
|
fi
|