I have succesfully netbooted vmlinux-initramfs.elf
for this device.
#/bin/bash
ifconfig enp0s31f6 192.168.1.10 up
dnsmasq -i enp0s31f6 --dhcp-range=192.168.1.100,192.168.1.200 \
--dhcp-boot=openwrt-ar71xx-mikrotik-vmlinux-initramfs.elf \
--enable-tftp --tftp-root=/srv/tftp/ -d -u my_unix_username -p0 -K --log-dhcp --bootp-dynamic
From here I want to install LEDE (or OpenWRT). Some questions:
This link will bring you to ~15 files. Perhaps someone could identify some files for me, as I don't know what most are for:
- What's
vmlinux-initramfs-lzma.elf
? If it is a compressed version ofvmlinux-initramfs.elf
, why is it there? - What's the difference between
vmlinux-initramfs.elf
andvmlinux-initramfs.bin
? - Why are they so many
sysupgrade.bin
's and how do I know which one I can use for my specific device? - How do I determine if I need files from the
/trunk
, from/snapshots
or from/releases
?
I tried following Common Procedures for Mikrotik RouterBoard Products but found that wget2nand
can be replaced by using sysupgrade -n *.bin
. I don't know which one I need, though:
nand-64m-squashfs-sysupgrade.bin
nand-large-ac-squashfs-sysupgrade.bin
nand-large-squashfs-sysupgrade.bin
rb-nor-flash-16M-ac-squashfs-sysupgrade.bin
rb-nor-flash-16M-squashfs-sysupgrade.bin
And finally, will this install LEDE or Openwrt? Or are they the same?
Thanks