Fonera: Difference between revisions
From fakedWiki
(Created page with "=== Flashing via RedBoot === <pre> ip_address -h 192.168.0.1 -l 192.168.0.254/24 load -r -b %{FREEMEMLO} http://192.168.0.1/openwrt/atheros/openwrt-atheros-vmlinux.lzma -m HTTP f…") |
m (5 revisions imported) |
||
(6 intermediate revisions by the same user not shown) | |||
Line 7: | Line 7: | ||
load -r -b %{FREEMEMLO} http://192.168.0.1/openwrt/atheros/openwrt-atheros-root.squashfs -m HTTP | load -r -b %{FREEMEMLO} http://192.168.0.1/openwrt/atheros/openwrt-atheros-root.squashfs -m HTTP | ||
fis create rootfs | fis create rootfs | ||
</pre> | |||
=== Flashing via OpenWRT === | |||
<pre> | |||
cd /tmp | |||
wget http://192.168.0.1/openwrt/atheros/openwrt-atheros-vmlinux.lzma | |||
mtd -e vmlinux.bin.l7 write openwrt-atheros-vmlinux.lzma vmlinux.bin.l7 | |||
wget http://192.168.0.1/openwrt/atheros/openwrt-atheros-root.squashfs | |||
mtd -e rootfs write openwrt-atheros-root.squashfs rootfs | |||
reboot | |||
</pre> | </pre> |
Latest revision as of 20:10, 26 August 2016
Flashing via RedBoot
ip_address -h 192.168.0.1 -l 192.168.0.254/24 load -r -b %{FREEMEMLO} http://192.168.0.1/openwrt/atheros/openwrt-atheros-vmlinux.lzma -m HTTP fis init fis create -e 0x80041000 -r 0x80041000 vmlinux.bin.l7 load -r -b %{FREEMEMLO} http://192.168.0.1/openwrt/atheros/openwrt-atheros-root.squashfs -m HTTP fis create rootfs
Flashing via OpenWRT
cd /tmp wget http://192.168.0.1/openwrt/atheros/openwrt-atheros-vmlinux.lzma mtd -e vmlinux.bin.l7 write openwrt-atheros-vmlinux.lzma vmlinux.bin.l7 wget http://192.168.0.1/openwrt/atheros/openwrt-atheros-root.squashfs mtd -e rootfs write openwrt-atheros-root.squashfs rootfs reboot