summaryrefslogtreecommitdiffstats
path: root/package/base-files/files/sbin
Commit message (Collapse)AuthorAgeFilesLines
...
* [package]jow2009-03-251-1/+2
| | | | | | | | | - fix mac assignment for broadcom vifs in bridging mode - thanks abramoff1 for spotting this - fix possible regression with different interface protocols - bump PKG_RELEASE git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15042 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] sync macs with vif bssids in broadcom.sh, fixes multi-ssid with wpajow2009-03-241-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15028 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Use block events for the mounting/unmounting of external storage devices.matein42009-01-301-25/+0
| | | | | | | | | | This handles both USB and IEEE1394 devices. It removes /sbin/usb-storage in favor of using the block hotplug event. There are dummy scripts to handle the plug in/out of USB and IEEE1394 devices for updating LEDs. Storage devices are mount as a sub-directory under /mnt. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14289 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix ifup (no longer use the to-be-reverted state of the previous config)nbd2008-11-281-3/+15
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13398 3c298f89-4303-0410-b956-a3cf2f4a3e73
* remove /tmp/resolv.conf.auto when ifup -a is called so that any old dns ↵thepeople2008-10-291-0/+1
| | | | | | servers no longer in the config get cleared git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13082 3c298f89-4303-0410-b956-a3cf2f4a3e73
* use pidfiles for hostapd/wpa_supplicant instead of killing all processes ↵nbd2008-10-291-0/+2
| | | | | | when bringing an interface down - fixes an issue with random hostapd death git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13078 3c298f89-4303-0410-b956-a3cf2f4a3e73
* make sure that the dhcp client (or other processes necessary to get a ↵nbd2008-10-231-0/+1
| | | | | | connection) gets restarted when the wifi is restarted git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13026 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add option in sysupgrade to restore config from file or URL (patch from #4043)nbd2008-09-281-1/+15
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12772 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix typo from last sysupgrade commitnbd2008-09-261-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12715 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add switch to not save configuration over the reflash in noninteractive modethepeople2008-09-261-0/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12714 3c298f89-4303-0410-b956-a3cf2f4a3e73
* make option name optionalthepeople2008-09-131-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12585 3c298f89-4303-0410-b956-a3cf2f4a3e73
* sysupgrade: add optional delay before rebootingnbd2008-09-121-3/+6
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12572 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Prevent unwanted shell expansioncyrus2008-09-111-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12568 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fixes script that mounts usd storage when it gets attachedblogic2008-09-081-14/+11
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12548 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fixes usb storage mountingblogic2008-09-011-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12465 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add /etc/firewall.user to be backed up becuase it is an example in ↵thepeople2008-08-161-1/+1
| | | | | | /etc/config/firewall git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12326 3c298f89-4303-0410-b956-a3cf2f4a3e73
* remove /etc/firewall.* from being kept as they no longer are used in trunkthepeople2008-08-161-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12320 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add basic interface alias support.nbd2008-08-071-1/+5
| | | | | | | | | | | | | | for now (since we don't use ip in our network scripts yet), it adds :1, :2, ... alias interfaces this will change when we add support for the ip utility, but the config format will remain the same. example: config alias test option interface lan option ipaddr 192.168.1.1 option netmask 255.255.0.0 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12241 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add uci led supportblogic2008-08-041-0/+25
| | | | | | | | | - /etc/config/system can hold led info which is applied at boot - adds /sbin/led.sh to set/clear leds via a name defined in /etc/config/system git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12104 3c298f89-4303-0410-b956-a3cf2f4a3e73
* network scripts: revert the network state after running ifdown, not beforenbd2008-08-031-3/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12081 3c298f89-4303-0410-b956-a3cf2f4a3e73
* keep /etc/group over reflash as wellthepeople2008-07-241-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11919 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add dropbear keys, passwd and firewall configuration to be saved during reflashthepeople2008-07-241-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11912 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Here comes the new UCI. Enjoy :)nbd2008-02-032-12/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10367 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [packages] base-files: suppress error messages in usb-storage scriptjuhosg2007-11-041-8/+8
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@9498 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix a few issues with dynamically assigned interfacesnbd2007-09-121-0/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8765 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add sysupgrade script for config preserving system upgrades. only ↵nbd2007-08-211-0/+92
| | | | | | implemented for x86-2.6 at the moment, but can be ported to other platforms easily git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8456 3c298f89-4303-0410-b956-a3cf2f4a3e73
* tab/whitespace fixnbd2007-08-041-5/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8338 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix an error messagenbd2007-07-221-0/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8109 3c298f89-4303-0410-b956-a3cf2f4a3e73
* keep track of the wifi interface state in /var/state/wirelessnbd2007-07-221-0/+19
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8108 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add a workaround for the hostapd killed issue when using more than one wifi ↵nbd2007-07-201-0/+1
| | | | | | card (#1928, #2040) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8077 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix usb-storage permissionsmbm2007-07-081-0/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7889 3c298f89-4303-0410-b956-a3cf2f4a3e73
* added usb-storage hotplugingblogic2007-06-201-0/+28
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7684 3c298f89-4303-0410-b956-a3cf2f4a3e73
* keep track of the network interface states (stored in uci format in ↵nbd2007-06-161-0/+6
| | | | | | /var/state/network, overlay over /etc/config/network) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7643 3c298f89-4303-0410-b956-a3cf2f4a3e73
* more fixesnbd2007-06-153-4/+4
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7639 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mount_root should only mount the rootmbm2007-05-311-43/+12
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7418 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Fix set_state preinit stuffflorian2007-05-131-3/+0
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7200 3c298f89-4303-0410-b956-a3cf2f4a3e73
* clean up the mtd unlockingmbm2007-05-131-12/+13
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7199 3c298f89-4303-0410-b956-a3cf2f4a3e73
* tweaks for 2M devicesmbm2007-05-101-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7179 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix bug in mount scriptmbm2007-05-101-2/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7177 3c298f89-4303-0410-b956-a3cf2f4a3e73
* cleanup the broadcom preinit.archmbm2007-05-101-14/+17
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7176 3c298f89-4303-0410-b956-a3cf2f4a3e73
* unified preinit environmentmbm2007-05-101-4/+18
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7173 3c298f89-4303-0410-b956-a3cf2f4a3e73
* use hotplug2 for serializing hotplug events on 2.6nbd2007-05-051-4/+13
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7097 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix ifdown hotplug event (#1576)nbd2007-04-151-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6950 3c298f89-4303-0410-b956-a3cf2f4a3e73
* fix bogus "interface not found" errors in ifup -a (#1580)nbd2007-04-151-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6949 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Limit the number of hotplug childrensflorian2007-04-011-1/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6804 3c298f89-4303-0410-b956-a3cf2f4a3e73
* /sbin/hotplug-call: export the hotplug event type through the environment ↵nbd2007-03-312-2/+4
| | | | | | for hotplug scripts git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6768 3c298f89-4303-0410-b956-a3cf2f4a3e73
* small cleanupnbd2007-03-241-14/+18
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6663 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add a new 'option disabled' to wifi-devicembm2007-03-161-17/+10
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6576 3c298f89-4303-0410-b956-a3cf2f4a3e73
* add vga console support for x86-2.6 images (fixes #1342, #840)nbd2007-03-061-0/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6530 3c298f89-4303-0410-b956-a3cf2f4a3e73
* nuke mdev and replace it with hotplug2 :)nbd2007-03-043-4/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6512 3c298f89-4303-0410-b956-a3cf2f4a3e73