User Tools

Site Tools


software:openwrt

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
software:openwrt [2010/10/22 16:54] – [How-Tos] Michele Porellisoftware:openwrt [2020/07/05 06:36] (current) – [Other] Michele Porelli
Line 1: Line 1:
 ====== OpenWRT ====== ====== OpenWRT ======
 +===== Tips =====
 +  * make kernel_menuconfig -> customize kernel config
 +  * svn revert target/linux/*/config-* ; make target/linux/clean -> revert to default kernel config
 +  * make -j 3 -> Building on multicore systems (eg. 3 processes)
 ===== How-Tos ===== ===== How-Tos =====
-  * [[http://openvpn.net/beta/old/OpenWRT/|Build OpenWRT]]+==== Packages related ==== 
 +  * [[http://wiki.openwrt.org/doc/howto/build|Build OpenWRT and packages]] 
 +  * [[https://github.com/cokebar/openwrt-vlmcsd|vlmcsd]] 
 +  * Upgrade all the packages 
 +    * [[https://github.com/tavinus/opkg-upgrade|opkg-upgrade]] 
 +    * manual method:<code>#!/usr/bin/env sh 
 +opkg update 
 +for p in $(opkg list-upgradable); do 
 +  if [ "$p" != "-" ]; then 
 +    if [ "$(echo ${p:0:1} | sed -e 's/[0-9]//')" != "" ]; then 
 +      echo "upgrading $p" 
 +      opkg upgrade $p 
 +    fi 
 +  fi 
 +done</code> 
 +  * Re-install packages after upgrade: [[https://forum.openwrt.org/t/how-to-keep-packages-settings-after-upgrading/38998|1]] 
 +==== Other ====
   * [[http://arctic-things.blogspot.com/2008/01/internet-gateway-openvpn-openwrt-on.html|Internet Gateway with OpenVPN]]   * [[http://arctic-things.blogspot.com/2008/01/internet-gateway-openvpn-openwrt-on.html|Internet Gateway with OpenVPN]]
-  * [[http://wiki.openwrt.org/doc/howto/rootfsonexternalstorage|Boot from external flash/disk]] +  * [[http://wiki.openwrt.org/doc/howto/extroot|Boot from external flash/disk]] 
-  * [[https://forum.openwrt.org/viewtopic.php?id=23904|Multi-WAN Load Balancing]]+  * Multi-WAN Load Balancing - [[http://wiki.openwrt.org/doc/uci/multiwan|wiki]] and [[https://forum.openwrt.org/viewtopic.php?id=23904|forum topic]] 
 +  * [[https://forum.openwrt.org/viewtopic.php?id=29352|Announce multiple gateways via DHCP]] 
 +  * Useful [[https://github.com/richb-hanover/OpenWrtScripts|set of scripts]] 
 +===== Fixes ===== 
 +  * [[https://dev.openwrt.org/ticket/7078|Error opening terminal:]] - libncurses, terminfo and alternate install destination 
 +===== Guides ===== 
 +  * [[http://blog.philippklaus.de/2011/04/openwrt-on-a-tp-link-tl-wr1043nd-gigabit-router/|Quick dummies guide for OpenWRT by Philipp Klaus]] 
 + 
software/openwrt.1287759267.txt · Last modified: 2012/09/04 16:09 (external edit)