diff options
author | Eric Andersen <andersen@codepoet.org> | 1999-11-22 06:01:01 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 1999-11-22 06:01:01 +0000 |
commit | 5d44d1fda593248c154ec68b38ce946a69f9b0fc (patch) | |
tree | 3c9c2fe966a64b69a46897de94771fc3dde50b01 | |
parent | 0f4c0848c7057dd696d82f9a0ca5cc8749a4131a (diff) | |
download | busybox-w32-5d44d1fda593248c154ec68b38ce946a69f9b0fc.tar.gz busybox-w32-5d44d1fda593248c154ec68b38ce946a69f9b0fc.tar.bz2 busybox-w32-5d44d1fda593248c154ec68b38ce946a69f9b0fc.zip |
Stuf
-rw-r--r-- | Changelog | 6 | ||||
-rwxr-xr-x | applets/install.sh | 2 | ||||
-rw-r--r-- | busybox.def.h | 2 | ||||
-rwxr-xr-x | install.sh | 2 |
4 files changed, 7 insertions, 5 deletions
@@ -1,7 +1,9 @@ | |||
1 | 0.37 | 1 | 0.37 |
2 | * Fixed 'make install' so symlinks are installed in their proper locations. | 2 | * Fixed 'make install' so symlinks are installed in their proper locations. |
3 | * Changed the build system slightly so that features can now be enables | 3 | * Changed the build system slightly so that features can now be enabled |
4 | or disabled from the busybox.defs.h header file, which is much more sane. | 4 | or disabled from the busybox.defs.h header file, without trying to |
5 | compile in a source file named after that featue (unless that file exists). | ||
6 | * Several options are now moved into busybox.defs.h | ||
5 | * Now 'rm -R' and 'rm -r' both work. | 7 | * Now 'rm -R' and 'rm -r' both work. |
6 | * dd now properly handles input beyond 1 block from stdin. | 8 | * dd now properly handles input beyond 1 block from stdin. |
7 | 9 | ||
diff --git a/applets/install.sh b/applets/install.sh index 9721102a1..4c2a4f1b8 100755 --- a/applets/install.sh +++ b/applets/install.sh | |||
@@ -10,10 +10,10 @@ fi | |||
10 | h=`sort busybox.links | uniq` | 10 | h=`sort busybox.links | uniq` |
11 | 11 | ||
12 | for i in $h ; do | 12 | for i in $h ; do |
13 | echo "Symlinking $i to /bin/busybox" | ||
14 | mypath=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\1/g' `; | 13 | mypath=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\1/g' `; |
15 | myapp=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\2/g' `; | 14 | myapp=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\2/g' `; |
16 | mkdir -p $1$mypath | 15 | mkdir -p $1$mypath |
16 | echo " $1$mypath$myapp -> /bin/busybox" | ||
17 | (cd $1$mypath ; rm -f $1$mypath$myapp ; ln -s /bin/busybox $1$mypath$myapp ) | 17 | (cd $1$mypath ; rm -f $1$mypath$myapp ; ln -s /bin/busybox $1$mypath$myapp ) |
18 | done | 18 | done |
19 | rm -f $1/bin/busybox | 19 | rm -f $1/bin/busybox |
diff --git a/busybox.def.h b/busybox.def.h index a48deeca9..77ab4b567 100644 --- a/busybox.def.h +++ b/busybox.def.h | |||
@@ -74,7 +74,7 @@ | |||
74 | // | 74 | // |
75 | //Enable init being called as /linuxrc | 75 | //Enable init being called as /linuxrc |
76 | #define BB_FEATURE_LINUXRC | 76 | #define BB_FEATURE_LINUXRC |
77 | // Use termios to manipulate the screen (more is much pretties with this on) | 77 | // Use termios to manipulate the screen ('more' is prettier with this on) |
78 | #define BB_FEATURE_USE_TERMIOS | 78 | #define BB_FEATURE_USE_TERMIOS |
79 | // calculate terminal & column widths | 79 | // calculate terminal & column widths |
80 | #define BB_FEATURE_AUTOWIDTH | 80 | #define BB_FEATURE_AUTOWIDTH |
diff --git a/install.sh b/install.sh index 9721102a1..4c2a4f1b8 100755 --- a/install.sh +++ b/install.sh | |||
@@ -10,10 +10,10 @@ fi | |||
10 | h=`sort busybox.links | uniq` | 10 | h=`sort busybox.links | uniq` |
11 | 11 | ||
12 | for i in $h ; do | 12 | for i in $h ; do |
13 | echo "Symlinking $i to /bin/busybox" | ||
14 | mypath=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\1/g' `; | 13 | mypath=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\1/g' `; |
15 | myapp=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\2/g' `; | 14 | myapp=`echo $i | sed -e 's/\(^.*\/\)\(.*\)/\2/g' `; |
16 | mkdir -p $1$mypath | 15 | mkdir -p $1$mypath |
16 | echo " $1$mypath$myapp -> /bin/busybox" | ||
17 | (cd $1$mypath ; rm -f $1$mypath$myapp ; ln -s /bin/busybox $1$mypath$myapp ) | 17 | (cd $1$mypath ; rm -f $1$mypath$myapp ; ln -s /bin/busybox $1$mypath$myapp ) |
18 | done | 18 | done |
19 | rm -f $1/bin/busybox | 19 | rm -f $1/bin/busybox |