Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
projects:gpio-bb:openwrt [2014/12/29 18:10]
darron created
projects:gpio-bb:openwrt [2017/01/12 22:44] (current)
Line 1: Line 1:
 ==== GPIO bit-bang driver for OpenWRT ===== ==== GPIO bit-bang driver for OpenWRT =====
  
-== Prepare to build OpenWRT ==+=== Check-out === 
 + 
 +Prepare to build OpenWRT.
 <code> <code>
 mkdir -p /embedded/openwrt/ mkdir -p /embedded/openwrt/
Line 16: Line 18:
 </code> </code>
  
-== Configure ==+=== Config === 
 + 
 +Enable kernel options.
 <code> <code>
 make menuconfig make menuconfig
-</code> 
- 
-== Enable some options == 
-<code> 
  [Target System  = Atheros AR7xxx/AR9xxx]  [Target System  = Atheros AR7xxx/AR9xxx]
  [Target Profile = TP-LINK TL-WR841N/ND]  [Target Profile = TP-LINK TL-WR841N/ND]
Line 33: Line 33:
 </code> </code>
  
-== Disable some options ==+Disable kernel options.
 <code> <code>
  [Global build settings] [IPv6 support in packages]  [Global build settings] [IPv6 support in packages]
Line 49: Line 49:
 </code> </code>
  
-== Exit configuration ==+Exit config.
 <code> <code>
  [Exit] [Yes]  [Exit] [Yes]
 </code> </code>
  
-== Build ==+=== Build ===
 <code> <code>
 make V=s make V=s
Line 60: Line 60:
 </code> </code>
  
-== Install ==+=== Install ===
 <code> <code>
 ls -1 bin/ar71xx/*factory* ls -1 bin/ar71xx/*factory*
Line 71: Line 71:
 bin/ar71xx/openwrt-ar71xx-generic-tl-wr847n-v8-squashfs-factory.bin bin/ar71xx/openwrt-ar71xx-generic-tl-wr847n-v8-squashfs-factory.bin
 </code> </code>
 +
 From the router maintenance page upgrade the firmware using the correct image.\\ From the router maintenance page upgrade the firmware using the correct image.\\
 For this example, it's openwrt-ar71xx-generic-tl-wr841n-v8-squashfs-factory.bin For this example, it's openwrt-ar71xx-generic-tl-wr841n-v8-squashfs-factory.bin
  
-== Login ==+=== Login ===
 <code> <code>
 telnet 192.168.1.1 telnet 192.168.1.1
Line 105: Line 106:
 </code> </code>
  
-== Test GPIO-BB ==+=== Test  === 
 + 
 + 
 <code> <code>
 ssh -x root@192.168.1.1 ssh -x root@192.168.1.1
Line 123: Line 126:
 </code> </code>
  
-== Update GPIO-BB ==+=== Upgrade ===
 <code> <code>
 cd /embedded/openwrt/openwrt.git cd /embedded/openwrt/openwrt.git