Changeset 0f3bd17 in freewrt
- Timestamp:
- Nov 2, 2006, 9:47:40 PM (19 years ago)
- Children:
- 82c3513
- Parents:
- 0bbb1b2
- File:
-
- 1 edited
-
package/busybox/patches/340-lock_util.patch (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
package/busybox/patches/340-lock_util.patch
r0bbb1b2 r0f3bd17 1 # Copyright (C) 2006 OpenWrt.org 2 # 3 # This is free software, licensed under the GNU General Public License v2. 4 # See /LICENSE for more information. 5 # 6 diff -ruN busybox-1.2.0-old/include/applets.h busybox-1.2.0-new/include/applets.h 7 --- busybox-1.2.0-old/include/applets.h 2006-07-31 11:21:00.000000000 +0200 8 +++ busybox-1.2.0-new/include/applets.h 2006-08-01 10:21:15.000000000 +0200 9 @@ -169,6 +169,7 @@ 1 diff -Nur busybox-1.2.2.1-old/include/applets.h busybox-1.2.2.1-new/include/applets.h 2 --- busybox-1.2.2.1-old/include/applets.h 2006-07-01 00:42:10.000000000 +0200 3 +++ busybox-1.2.2.1-new/include/applets.h 2006-11-02 21:43:03.000000000 +0100 4 @@ -168,6 +168,7 @@ 10 5 USE_LN(APPLET(ln, _BB_DIR_BIN, _BB_SUID_NEVER)) 11 6 USE_LOADFONT(APPLET(loadfont, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) … … 15 10 USE_LOGIN(APPLET(login, _BB_DIR_BIN, _BB_SUID_ALWAYS)) 16 11 USE_LOGNAME(APPLET(logname, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) 17 diff - ruN busybox-1.2.0-old/miscutils/Config.in busybox-1.2.0-new/miscutils/Config.in18 --- busybox-1.2. 0-old/miscutils/Config.in 2006-07-01 00:42:09.000000000 +020019 +++ busybox-1.2. 0-new/miscutils/Config.in 2006-08-01 10:21:15.000000000 +020012 diff -Nur busybox-1.2.2.1-old/miscutils/Config.in busybox-1.2.2.1-new/miscutils/Config.in 13 --- busybox-1.2.2.1-old/miscutils/Config.in 2006-07-01 00:42:09.000000000 +0200 14 +++ busybox-1.2.2.1-new/miscutils/Config.in 2006-11-02 21:43:03.000000000 +0100 20 15 @@ -231,6 +231,12 @@ 21 16 Enables the 'hdparm -d' option to get/set using_dma flag. … … 31 26 bool "makedevs" 32 27 default n 33 diff - ruN busybox-1.2.0-old/miscutils/lock.c busybox-1.2.0-new/miscutils/lock.c34 --- busybox-1.2. 0-old/miscutils/lock.c 1970-01-01 01:00:00.000000000 +010035 +++ busybox-1.2. 0-new/miscutils/lock.c 2006-08-01 10:21:15.000000000 +020028 diff -Nur busybox-1.2.2.1-old/miscutils/lock.c busybox-1.2.2.1-new/miscutils/lock.c 29 --- busybox-1.2.2.1-old/miscutils/lock.c 1970-01-01 01:00:00.000000000 +0100 30 +++ busybox-1.2.2.1-new/miscutils/lock.c 2006-11-02 21:43:03.000000000 +0100 36 31 @@ -0,0 +1,133 @@ 37 32 +/* … … 168 163 + return do_lock(); 169 164 +} 170 diff - ruN busybox-1.2.0-old/miscutils/Makefile.in busybox-1.2.0-new/miscutils/Makefile.in171 --- busybox-1.2. 0-old/miscutils/Makefile.in 2006-07-01 00:42:09.000000000 +0200172 +++ busybox-1.2. 0-new/miscutils/Makefile.in 2006-08-01 10:21:15.000000000 +0200165 diff -Nur busybox-1.2.2.1-old/miscutils/Makefile.in busybox-1.2.2.1-new/miscutils/Makefile.in 166 --- busybox-1.2.2.1-old/miscutils/Makefile.in 2006-10-24 22:21:17.000000000 +0200 167 +++ busybox-1.2.2.1-new/miscutils/Makefile.in 2006-11-02 21:43:03.000000000 +0100 173 168 @@ -20,6 +20,7 @@ 174 169 MISCUTILS-$(CONFIG_EJECT) += eject.o … … 176 171 MISCUTILS-$(CONFIG_LAST) += last.o 177 172 +MISCUTILS-$(CONFIG_LOCK) += lock.o 178 MISCUTILS-$ {CONFIG_LESS}+= less.o173 MISCUTILS-$(CONFIG_LESS) += less.o 179 174 MISCUTILS-$(CONFIG_MAKEDEVS) += makedevs.o 180 175 MISCUTILS-$(CONFIG_MOUNTPOINT) += mountpoint.o
Note:
See TracChangeset
for help on using the changeset viewer.
