summaryrefslogtreecommitdiffstats
path: root/package/base-files
Commit message (Collapse)AuthorAgeFilesLines
* check for sysfs before bypassing normal hotplug calls for firmware events ↵Felix Fietkau2009-10-031-1/+1
| | | | | | (fixes #5200) SVN-Revision: 17839
* base-files: add hotplug rules for /dev/lpX (#863)Jo-Philipp Wich2009-09-282-1/+7
| | | | SVN-Revision: 17792
* firstboot: add support for union mountsFelix Fietkau2009-09-271-23/+60
| | | | SVN-Revision: 17778
* base-files: move firstboot to /sbinFelix Fietkau2009-09-272-1/+1
| | | | SVN-Revision: 17775
* base-files: add libgcc dependency to libc (#5262)Felix Fietkau2009-09-241-0/+1
| | | | SVN-Revision: 17714
* add external toolchain support, enhance native toolchain support (special ↵Nicolas Thill2009-09-231-31/+269
| | | | | | thanks to Luigi Mantellini for his help... and patience ;) SVN-Revision: 17682
* accommodate for 5 digits svn revisions :)Nicolas Thill2009-09-221-1/+1
| | | | SVN-Revision: 17670
* base-files: fix conffiles entry check (patch from #2425)Felix Fietkau2009-09-191-1/+1
| | | | SVN-Revision: 17618
* base-files: clear ip addresses on interfaces that are about to be added to a ↵Jo-Philipp Wich2009-09-162-1/+3
| | | | | | bridge SVN-Revision: 17596
* base-files: dispatch ifdown events for proto=none interfaces and fix a race ↵Jo-Philipp Wich2009-09-142-3/+3
| | | | | | condition between revert state and hotplug handlers SVN-Revision: 17582
* base-files: add /etc/rc.local to the default save file listJo-Philipp Wich2009-09-121-1/+1
| | | | SVN-Revision: 17572
* base-files: introduce a ready-to-use /etc/rc.local to let users run custom ↵Jo-Philipp Wich2009-09-113-1/+10
| | | | | | commands on init without creating custom init scripts SVN-Revision: 17571
* bump some revisions and update copyrightsAndy Boyett2009-09-101-1/+1
| | | | SVN-Revision: 17554
* Revert "fix nonhotpluggable networks not being brought up. Closes #2781" ↵Felix Fietkau2009-09-093-17/+0
| | | | | | (r17527) until we've solved the race conditions it creates SVN-Revision: 17544
* fix nonhotpluggable networks not being brought up. Closes #2781Travis Kemen2009-09-063-0/+17
| | | | SVN-Revision: 17527
* package/base-files: set state to 'preinit' before preinit.arch is used, and ↵Gabor Juhos2009-09-052-3/+4
| | | | | | set state to 'failsafe' when entering failsafe mode SVN-Revision: 17517
* Revert "add ifup -a to boot(), closes #4543 #2781" (r17515) Hotpluggable ↵Felix Fietkau2009-09-051-1/+0
| | | | | | interfaces are already brought up before /etc/init.d/network boot and this change can break them, if the ifup -a command runs at the wrong time, also starts many interfaces twice, which can lead to issues with PPPoE. SVN-Revision: 17516
* add ifup -a to boot(), closes #4543 #2781Travis Kemen2009-09-051-0/+1
| | | | SVN-Revision: 17515
* extend logging functionsTravis Kemen2009-09-041-7/+17
| | | | SVN-Revision: 17514
* preinit: fix failsafe mode through ctrl+c on devices that do not provide a ↵Felix Fietkau2009-09-021-1/+5
| | | | | | preinit.arch file SVN-Revision: 17470
* uclibc: to rebuild libc.so.0, mklibs.py needs access to libc_so.a which was ↵Felix Fietkau2009-08-291-0/+1
| | | | | | not exported by default. use it instead of libc_pic.a SVN-Revision: 17438
* allow mklibs.py to optimize libgcc_s.so.1Felix Fietkau2009-08-291-0/+1
| | | | SVN-Revision: 17437
* udev: Update udev package from udev-106 to udev-142Geoff Levand2009-08-241-4/+8
| | | | | | | | | | | | | | | | | | | | Update the init scripts have to use udevadm where appropriate. The udev package no longer provides separate udev utilities like udevtrigger and udevsettle. These have been incorporated into the udev admin program udevadm. Replace the udevextras sub package with config options to the udev package. Update the preinit script to check for '/lib/udev/devices', and copy it to '/dev/ if it is found, then to conditionaly setup /dev the old way with mknod etc. Udev now recommends using the directory '/lib/udev/devices' to initialize the '/dev' directory at startup. Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com> SVN-Revision: 17378
* now that each target has its own package directory, remove the base-files ↵Felix Fietkau2009-08-201-7/+5
| | | | | | package renaming hack SVN-Revision: 17330
* base-files: fix sysupgrade get_magic_word() function to return proper values ↵Jo-Philipp Wich2009-08-191-1/+1
| | | | | | if the first two bytes are identical SVN-Revision: 17319
* base-files: move ipv6 module loading from setup_interface() to addif() in ↵Jo-Philipp Wich2009-08-103-10/+7
| | | | | | the hotplug call, this ensures that ipv6 is loaded before any interfaces or aliases with ip6addr option are configured (#5356) SVN-Revision: 17217
* install static libraries from uclibc to the rootfs staging dirFelix Fietkau2009-08-081-0/+4
| | | | SVN-Revision: 17169
* base-files: some /lib/network/config.sh refactoringFelix Fietkau2009-08-071-25/+38
| | | | | | | | | | | * Localize a lot more variables than before. * Do stuff or localize variables at later points or inner blocks so less commands are executed in some cases. * Use the default option of config_get where it makes sense. Signed-off-by: Malte S. Stretz <mss@apache.org> SVN-Revision: 17160
* base-files: clean up init.d/fstab and port it to the new config_getFelix Fietkau2009-08-071-18/+14
| | | | | | | | ... also remove the unused noauto variable in swapon. Signed-off-by: Malte S. Stretz <mss@apache.org> SVN-Revision: 17159
* base-files: port init.d/led to new config_getFelix Fietkau2009-08-071-8/+6
| | | | | | | | ... and don't call logger directly, rcS takes care of the correct redirection Signed-off-by: Malte S. Stretz <mss@apache.org> SVN-Revision: 17158
* base-files: port init.d/boot to new config_getFelix Fietkau2009-08-071-9/+10
| | | | | | | | ... and localize some variables. Signed-off-by: Malte S. Stretz <mss@apache.org> SVN-Revision: 17157
* base-files: port functions.sh to new config_getFelix Fietkau2009-08-071-2/+2
| | | | | | Signed-off-by: Malte S. Stretz <mss@apache.org> SVN-Revision: 17156
* base-files: allow default value for config_getFelix Fietkau2009-08-071-6/+9
| | | | | | | Signed-off-by: Malte S. Stretz <mss@apache.org> Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 17155
* base-files: ensure that ipv6 is loaded if interfaces have an ip6addr ↵Jo-Philipp Wich2009-08-042-13/+22
| | | | | | defined, clean trailing whitespace, bump pkg revision (#5356) SVN-Revision: 17118
* prevent rebuild issues on creation of lib64 with 64-bits targetsFlorian Fainelli2009-08-011-2/+2
| | | | SVN-Revision: 17072
* simplify action handling in rc.common (#5558)Florian Fainelli2009-07-261-23/+9
| | | | SVN-Revision: 17012
* udhcpc: Pass all events to udhcpc.userVasilis Tsiligiannis2009-07-121-3/+3
| | | | | | | | | | Petitboot and maybe other apps need to know when the dhcp lease is lost. Move the udhcpc.user call to send it all udhcpc events. Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com> SVN-Revision: 16815
* allow udhcpc to work properly for interfaces that are not configured through uciFelix Fietkau2009-07-031-23/+38
| | | | SVN-Revision: 16664
* base-files: explicitly create /etc/rc.d/, fixes ImageBuilder when using git ↵Andy Boyett2009-07-021-1/+2
| | | | | | instead of svn SVN-Revision: 16652
* base-files: Fix sysupgrade .tar.gz configuration restoringVasilis Tsiligiannis2009-06-292-13/+13
| | | | SVN-Revision: 16626
* base-files: ipcalc.sh: fix off-by-one in range-calculationJo-Philipp Wich2009-06-291-1/+1
| | | | SVN-Revision: 16619
* add preliminary coldfire v4e supportImre Kaloz2009-06-211-1/+1
| | | | SVN-Revision: 16538
* change sysctl.conf to disable tcp ecn by default (based on discussion with ↵Felix Fietkau2009-06-171-1/+1
| | | | | | marek who stumbled upon this, it creates hard-to-debug connectivity issues with providers/servers that still use buggy equipment) SVN-Revision: 16499
* sysupgrade: sync *before* mtd write, only fallback to sysrq-trigger if ↵Jo-Philipp Wich2009-06-172-4/+5
| | | | | | standard reboot fails SVN-Revision: 16488
* udhcpc: add cidr routes support (patch from #5299)Felix Fietkau2009-06-131-0/+74
| | | | SVN-Revision: 16433
* base-files: Add support for bzipped images in sysupgradeVasilis Tsiligiannis2009-06-101-1/+2
| | | | SVN-Revision: 16408
* base-files: Detect and decompressed gzipped images automatically when ↵Vasilis Tsiligiannis2009-06-102-11/+15
| | | | | | flashing with sysupgrade SVN-Revision: 16407
* base-files: format hexdump output instead of using awk for sysupgradeVasilis Tsiligiannis2009-06-101-1/+1
| | | | SVN-Revision: 16405
* base-files: fix test experession for sysupgradeVasilis Tsiligiannis2009-06-031-1/+1
| | | | SVN-Revision: 16310
* network: prevent unnecessary interface down/up cycles if no mac address ↵Felix Fietkau2009-06-011-2/+3
| | | | | | change is requested SVN-Revision: 16269