| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
inconsistency caused races
SVN-Revision: 35417
|
|
|
|
| |
SVN-Revision: 35368
|
|
|
|
| |
SVN-Revision: 35344
|
|
|
|
| |
SVN-Revision: 35300
|
|
|
|
| |
SVN-Revision: 35299
|
|
|
|
| |
SVN-Revision: 35204
|
|
|
|
| |
SVN-Revision: 35168
|
|
|
|
|
|
| |
hotplug2 (#12781)
SVN-Revision: 35095
|
|
|
|
| |
SVN-Revision: 34893
|
|
|
|
|
|
| |
instead of having an ubus init script
SVN-Revision: 34866
|
|
|
|
| |
SVN-Revision: 34733
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
|
|
|
|
|
|
|
|
| |
Write "delay" and "message" options to their respective files,
allowing Morse code message configuration through UCI.
The delay (dit length) defaults to 150ms (about 8 words per minute,
suitable for beginners).
Signed-off-by: Petr Viktorin <encukou@gmail.com>
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 34380
|
|
|
|
|
|
|
|
|
|
| |
Busybox built against musl-libc will choke on these otherwise, besides that
it is more natural to use the filesystem type, then options, then name, then
mountpoint.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 34308
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Without this, /etc/init.d/led will try to set the non-existing 'rssi' trigger.
This doesn't harm as the kernel will refuse this setting, but it outputs some
ugly log-lines:
Jun 24 10:15:19 OpenWrt user.info sysinit: setting up led RSSILOW
Jun 24 10:15:19 OpenWrt user.info sysinit: sh: write error: Invalid argument
...
In order to avoid this, skip LEDs with trigger = "rssi" in /etc/init.d/led
Signed-off-by: Daniel Golle <dgolle@allnet.de>
SVN-Revision: 33717
|
|
|
|
|
|
| |
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
SVN-Revision: 33477
|
|
|
|
| |
SVN-Revision: 33448
|
|
|
|
|
|
| |
wrapper for tar -C / -x(v)zf
SVN-Revision: 33147
|
|
|
|
|
|
| |
Some packages are going to need fixups based on LIB_SUFFIX
SVN-Revision: 33080
|
|
|
|
| |
SVN-Revision: 33075
|
|
|
|
| |
SVN-Revision: 33057
|
|
|
|
|
|
|
|
| |
When standalone ldd is selected in config the binary is installed in /usr/bin/ldd.
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
SVN-Revision: 32891
|
|
|
|
| |
SVN-Revision: 32503
|
|
|
|
|
|
| |
network_find_wan() and network_find_wan6() in /lib/functions/network.sh
SVN-Revision: 32397
|
|
|
|
|
|
| |
#11667)
SVN-Revision: 32339
|
|
|
|
|
|
| |
'toolchain'
SVN-Revision: 32169
|
|
|
|
|
|
| |
based on patch by Mark Mentovai <mark@moxienet.com>
SVN-Revision: 32073
|
|
|
|
|
|
| |
passwd with sed, this fixes registering of users at compile time
SVN-Revision: 32064
|
|
|
|
| |
SVN-Revision: 32063
|
|
|
|
| |
SVN-Revision: 31980
|
|
|
|
|
|
| |
common procedures to deal with network interfaces. Initially provides network_get_ipaddr(), network_get_ipaddr6(), network_get_subnet() and network_get_subnet6() to determine the primary IP addresses or subnets of a given logical interface.
SVN-Revision: 31935
|
|
|
|
|
|
| |
in a few relevant places
SVN-Revision: 31730
|
|
|
|
| |
SVN-Revision: 31504
|
|
|
|
|
|
| |
for reference: http://www.mail-archive.com/openwrt-devel@lists.openwrt.org/msg13425.html
SVN-Revision: 31503
|
|
|
|
| |
SVN-Revision: 31492
|
|
|
|
|
|
| |
lengths, do not set image options if menu is disabled (#11280)
SVN-Revision: 31289
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
embedded version info of generated images - Introduce new Kconfig symbols VERSION_DIST, VERSION_NICK, VERSION_NUMBER and VERSION_REPO to specify distribution, release name, version and repository for a given build - Introduce include/version.mk to provide common helpers for packages dealing with versions - Make opkg use version.mk to populate the opkg.conf template - Make base-files use version.mk to populate /etc/openwrt_version, /etc/openwrt_release and /etc/banner
The available placeholders are:
%D .. Replace with $(CONFIG_VERSION_DIST), default to "OpenWrt"
%d .. Like %D, but all characters made lowercase and spaces substituted with "_" (e.g. "openwrt")
%N .. Replace with $(CONFIG_VERSION_NICK), default to the build tree release (e.g. "Attitude Adjustment")
%n .. Like %N, but all characters made lowercase and spaces substituted with "_" (e.g. "attitude_adjustment")
%V .. Replace with $(CONFIG_VERSION_NUMBER), default to the build tree release (e.g. "r31262")
%v .. Like %V, but all characters made lowercase and spaces substituted with "_"
%C .. Replace with $(CONFIG_VERSION_NUMBER), default to "Bleeding Edge"
%c .. Like %C, but all characters made lowercase and spaces substituted with "_" (e.g. "bleeding_edge")
%U .. Replace with $(CONFIG_VERSION_REPO), default to "http://downloads.openwrt.org/snapshots/trunk/%T/packages"
%R .. Replace with the current build tree revision (e.g. "r31262" or "75488c4a05b8033cf69e91874a61852db7ba9c6c")
%T .. Replace with the current target (e.g. "ar71xx")
%S .. Replace with the current target/subtarget combo (e.g. "adm5120/router_le")
SVN-Revision: 31262
|
|
|
|
|
|
| |
firstboot uci-defaults To supply custom network settings, it is better to embed a complete network config file using the files/ overlay, the old image lan preconfig options are also very limited in scope and actually collide with sysupgrade and firstboot hardware detection on at least ar71xx and possibly other targets, therfore drop this facility.
SVN-Revision: 31258
|
|
|
|
|
|
| |
time option which got deprecated
SVN-Revision: 30805
|
|
|
|
|
|
| |
to /etc/shadow if needed
SVN-Revision: 29865
|
|
|
|
|
|
| |
hotplug2 anymore, its statically linked - patch by Viktar Palstsiuk <viktar.palstsiuk@promwad.com>
SVN-Revision: 29806
|
|
|
|
|
|
| |
checks, useful to upgrade old ar71xx installations to current trunk ones
SVN-Revision: 29688
|
|
|
|
| |
SVN-Revision: 29629
|
|
|
|
|
|
| |
backup .tar.gz according to the user settings. This will also be reused by LuCI.
SVN-Revision: 29587
|
|
|
|
| |
SVN-Revision: 29256
|
|
|
|
| |
SVN-Revision: 29208
|
|
|
|
|
|
| |
setting up TZ and localtime
SVN-Revision: 29204
|
|
|
|
|
|
| |
the proc filesystem only
SVN-Revision: 29187
|
|
|
|
|
|
| |
shadow record, fix /bin/login.sh password detection accordingly. Solves broken key based dropbear login with empty password after r28935.
SVN-Revision: 29130
|
|
|
|
|
|
| |
primed with "!") adjust login.sh for it to make telnetd available again
SVN-Revision: 28943
|