summaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
* uci: update to latest version (adds list delete support), enable parallel buildFelix Fietkau2012-12-271-4/+4
| | | | SVN-Revision: 34899
* ipv6-support: Remove site-border feature * was causing routing problems * ↵Steven Barth2012-12-273-9/+1
| | | | | | will be reimplemented using firewall SVN-Revision: 34898
* Remove site-border routing filter due to problemsSteven Barth2012-12-271-2/+2
| | | | SVN-Revision: 34897
* ipv6-support: * Automatically detect and propagate MTU from upstream ↵Steven Barth2012-12-274-11/+27
| | | | | | interfaces * Add site-border feature (RFC 6204, ULA-4) * Fix a typo SVN-Revision: 34896
* 6distributed: feature update * Add feature to decrease IPv6-specific MTU ↵Steven Barth2012-12-271-2/+2
| | | | | | on-demand * Add commands to enable / disable a site-border SVN-Revision: 34895
* 6relayd: Advertise IPv6-specific MTU instead of generic * Fixes announced ↵Steven Barth2012-12-271-2/+2
| | | | | | MTU when using tunnels SVN-Revision: 34894
* base-files: Fix a typo in config_list_foreachSteven Barth2012-12-272-2/+2
| | | | SVN-Revision: 34893
* base-files: ipcalc.sh: fix broken calculations on 64bit systemsJo-Philipp Wich2012-12-231-5/+10
| | | | | | | | Calculate complements by using awk's xor() function with a mask of 0xffffffff instead of relying on the compl() function which appears to produce broken results on certain 64bit architectures. SVN-Revision: 34875
* ipv6-support: Fix default RA settings for dnsmasqSteven Barth2012-12-232-4/+4
| | | | SVN-Revision: 34873
* busybox: (vconfig) do not attempt to open /proc/net/vlan/config for no good ↵Felix Fietkau2012-12-231-0/+22
| | | | | | reason (fixes #12663) SVN-Revision: 34872
* opkg: keep package list files compressed when src/gz is used, reduces tmpfs ↵Felix Fietkau2012-12-221-0/+120
| | | | | | usage SVN-Revision: 34869
* dropbear: convert init script to procdFelix Fietkau2012-12-221-37/+21
| | | | SVN-Revision: 34867
* base-files: add basic procd integration, let procd start (and restart) ubus ↵Felix Fietkau2012-12-223-3/+33
| | | | | | instead of having an ubus init script SVN-Revision: 34866
* procd: add initial implementationFelix Fietkau2012-12-223-0/+227
| | | | | | | | procd is the new OpenWrt process management daemon. It keeps track of processes started from init scripts (via ubus calls), and can suppress redundant service start/restart requests when the config/environment has not changed. SVN-Revision: 34865
* libnl-tiny: add includedir to pkg-config cflagsFelix Fietkau2012-12-221-1/+1
| | | | SVN-Revision: 34864
* dropbear: use network_get_device instead of scan_interfaces to get the ↵Felix Fietkau2012-12-221-3/+4
| | | | | | device name SVN-Revision: 34863
* ipv6-support: Preliminary support for dnsmasq >=2.66Steven Barth2012-12-222-5/+29
| | | | SVN-Revision: 34858
* 6relayd: Fix detection of prefix changesSteven Barth2012-12-221-2/+2
| | | | SVN-Revision: 34857
* odhcp6c: Fix build on arch where char is unsignedSteven Barth2012-12-221-2/+2
| | | | SVN-Revision: 34856
* 6distributed: Improve prefix deprecation algorithmSteven Barth2012-12-221-2/+2
| | | | SVN-Revision: 34855
* package/kernel: remove obsolete CONFIG_USB_[EO]HCI_RT3883=y symbolsGabor Juhos2012-12-221-2/+0
| | | | | | Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 34844
* add OF bindingJohn Crispin2012-12-211-3/+117
| | | | SVN-Revision: 34834
* adsl firmware in wrong submenuJohn Crispin2012-12-211-0/+1
| | | | SVN-Revision: 34819
* minor cleanup for adsl firmware handlingJohn Crispin2012-12-211-12/+8
| | | | SVN-Revision: 34818
* properly symlink the adsl firmwareJohn Crispin2012-12-211-1/+1
| | | | SVN-Revision: 34817
* hot-fix nameclash in sysupgrade: rename pivot() to supivot() in sysupgradeMirko Vogt2012-12-211-2/+2
| | | | | | | | | | | | Sysupgrade defines its very own pivot() function. Prior merging boot.sh and functions.sh sysupgrade just included boot.sh, now it includes functions.sh which defines pivot() as well, however slightly different which causes sysupgrade to fail. This is a hot-fix to unbreak sysupgrade, however those two pivot() functions should actually get merged. SVN-Revision: 34815
* base-files: we don't need /etc/functions.sh symlink anymoreLuka Perkov2012-12-201-1/+0
| | | | SVN-Revision: 34802
* merge /lib/functions/boot.sh and /lib/functions.shMirko Vogt2012-12-195-149/+139
| | | | SVN-Revision: 34794
* Do not overload mount-call - trying to reduce confusionMirko Vogt2012-12-1914-41/+34
| | | | | | | | | | | The behaviour of calling 'mount' differed depending on whether it called the busybox-mount, the mount of util-linux, the mount defined in /lib/functions.sh and /lib/functions/boot.sh /etc/preinit even included /lib/functions.sh and /lib/functions/boot.sh, both re-defining 'mount'. SVN-Revision: 34792
* change prefix for util-linux binaries from / to /usrMirko Vogt2012-12-191-31/+31
| | | | | | | | | | | | The prefix / causes executables like mount, umount, etc. to be placed in /bin /sbin which therewith replace the busybox symlinks. mount and umount e.g. are linked again libmount.so. This is e.g. fatal during a sysupgrade, where /bin/mount, /bin/umount, etc. but not libmount.so get copied into a ramdisk which will result in non working executables within the ramdisk. SVN-Revision: 34791
* block-mount: add a delay between sto pand start in fstab init restart ↵Jo-Philipp Wich2012-12-192-2/+6
| | | | | | action, fixes a lock race condition observed in VirtualBox SVN-Revision: 34784
* ltq-hcd usb fix high speed hub modeJohn Crispin2012-12-181-4/+4
| | | | | | | | Simple update for USB api changes. Signed-off-by: Conor O'Gorman <i@conorogorman.net> SVN-Revision: 34770
* ipset: update to 6.16.1 to fix build with kernel 3.7Gabor Juhos2012-12-181-2/+2
| | | | | | | Signed-off-by: David Woodhouse <David.Woodhouse@intel.com> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 34752
* kernel: fix module names for crypto modules in 3.7Gabor Juhos2012-12-181-2/+5
| | | | | | | Signed-off-by: David Woodhouse <David.Woodhouse@intel.com> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 34751
* libubox: fix a jshn array sequence counter bug, fixes some network.sh issuesFelix Fietkau2012-12-181-3/+3
| | | | SVN-Revision: 34746
* netifd: update to latest version, fixes interface error reporting for shell ↵Felix Fietkau2012-12-171-2/+2
| | | | | | proto handlers SVN-Revision: 34741
* ncurses: fix build error in libncurseswFelix Fietkau2012-12-171-0/+13
| | | | SVN-Revision: 34739
* sierra-directip: delete, replaced by upstream driversFelix Fietkau2012-12-176-2610/+0
| | | | SVN-Revision: 34738
* netifd: update to latest version, no longer needs the removed jshn_append() ↵Felix Fietkau2012-12-171-2/+2
| | | | | | shell function SVN-Revision: 34734
* base-files: use json_is_a() in network.shJo-Philipp Wich2012-12-172-8/+8
| | | | SVN-Revision: 34733
* libubox: update to latest git head, introduces jshn json_is_a() helperJo-Philipp Wich2012-12-171-3/+3
| | | | SVN-Revision: 34732
* base-files: rework cache handling in network.sh to keep the entire parsed ↵Jo-Philipp Wich2012-12-161-129/+159
| | | | | | ifstatus, use jshn namespaces to support using it concurrently with other jshn users SVN-Revision: 34725
* libubox: another jshn update, fixes array handling issuesFelix Fietkau2012-12-161-3/+3
| | | | SVN-Revision: 34723
* base-files: various enhancements to network.shJo-Philipp Wich2012-12-162-31/+154
| | | | | | | | | | | - support reading inactive gateways and DNS information in network_get_gateway(), network_get_dnsserver() and network_get_dnssearch() by passing "true" as optional last argument - internally cache fetched values to speed up subsequent accesses to the same data, introduce network_flush_cache() to clear them - add some inline function documentation SVN-Revision: 34722
* libubox: fix some jshn variable handling regressionsFelix Fietkau2012-12-161-3/+3
| | | | SVN-Revision: 34720
* libubox: update to latest version, adds jshn namespace supportFelix Fietkau2012-12-161-3/+3
| | | | SVN-Revision: 34718
* wpa_supplicant.sh: always use parameters from the current sectionFelix Fietkau2012-12-161-7/+2
| | | | | | | | | | | | | | Using variables from the outer scope unnecessarily complicates the code and leads to issues. This patch fixes the bug when having an "adhoc" wifi-iface section before a "sta" section prevents wpa_supplicant from using the key specified in the corresponding section as it tries to use the "adhoc" key instead (1 by default). Signed-off-by: Paul Fertser <fercerpav@gmail.com> SVN-Revision: 34716
* fixes uapi helper defineJohn Crispin2012-12-161-1/+1
| | | | SVN-Revision: 34715
* kernel: add a module for ipv6 greFelix Fietkau2012-12-151-0/+16
| | | | SVN-Revision: 34709
* ubus: update to latest version, fixes request timeout handling issues, hangs ↵Felix Fietkau2012-12-151-3/+3
| | | | | | on lots of requests, adds object notification support SVN-Revision: 34705