diff options
author | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-02-03 17:29:14 +0000 |
---|---|---|
committer | vda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2007-02-03 17:29:14 +0000 |
commit | 9951e55ab213fe3589785d3a9428c17ba755b080 (patch) | |
tree | 7196276c295570562c620c7a36167f14c972354a | |
parent | 014e12f573abe8f1c77b8206c1ea0becaf2a82f8 (diff) | |
download | busybox-w32-9951e55ab213fe3589785d3a9428c17ba755b080.tar.gz busybox-w32-9951e55ab213fe3589785d3a9428c17ba755b080.tar.bz2 busybox-w32-9951e55ab213fe3589785d3a9428c17ba755b080.zip |
s/PREFIX/CONFIG_PREFIX/
git-svn-id: svn://busybox.net/trunk/busybox@17741 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | INSTALL | 4 | ||||
-rw-r--r-- | Makefile.help | 2 | ||||
-rw-r--r-- | README | 8 | ||||
-rw-r--r-- | docs/busybox_header.pod | 10 | ||||
-rw-r--r-- | examples/bootfloppy/bootfloppy.txt | 2 | ||||
-rwxr-xr-x | examples/bootfloppy/mkrootfs.sh | 2 | ||||
-rw-r--r-- | examples/busybox.spec | 2 |
7 files changed, 15 insertions, 15 deletions
@@ -5,7 +5,7 @@ The BusyBox build process is similar to the Linux kernel build: | |||
5 | 5 | ||
6 | make menuconfig # This creates a file called ".config" | 6 | make menuconfig # This creates a file called ".config" |
7 | make # This creates the "busybox" executable | 7 | make # This creates the "busybox" executable |
8 | make install # or make PREFIX=/path/from/root install | 8 | make install # or make CONFIG_PREFIX=/path/from/root install |
9 | 9 | ||
10 | The full list of configuration and install options is available by typing: | 10 | The full list of configuration and install options is available by typing: |
11 | 11 | ||
@@ -114,7 +114,7 @@ configuration step, as in: | |||
114 | make O=/some/empty/directory allyesconfig | 114 | make O=/some/empty/directory allyesconfig |
115 | cd /some/empty/directory | 115 | cd /some/empty/directory |
116 | make | 116 | make |
117 | make PREFIX=. install | 117 | make CONFIG_PREFIX=. install |
118 | 118 | ||
119 | More Information: | 119 | More Information: |
120 | ================= | 120 | ================= |
diff --git a/Makefile.help b/Makefile.help index a1ff4fcb8..fc661b110 100644 --- a/Makefile.help +++ b/Makefile.help | |||
@@ -27,7 +27,7 @@ help: | |||
27 | @echo ' make SED="$(objtree)/sed"' | 27 | @echo ' make SED="$(objtree)/sed"' |
28 | @echo | 28 | @echo |
29 | @echo 'Installation:' | 29 | @echo 'Installation:' |
30 | @echo ' install - install busybox into $(PREFIX)' | 30 | @echo ' install - install busybox into $(CONFIG_PREFIX)' |
31 | @echo ' uninstall' | 31 | @echo ' uninstall' |
32 | @echo | 32 | @echo |
33 | @echo 'Development:' | 33 | @echo 'Development:' |
@@ -50,10 +50,10 @@ Using busybox: | |||
50 | 50 | ||
51 | The build automatically generates a file "busybox.links", which is used by | 51 | The build automatically generates a file "busybox.links", which is used by |
52 | 'make install' to create symlinks to the BusyBox binary for all compiled in | 52 | 'make install' to create symlinks to the BusyBox binary for all compiled in |
53 | commands. This uses the PREFIX environment variable to specify where to | 53 | commands. This uses the CONFIG_PREFIX environment variable to specify |
54 | install, and installs hardlinks or symlinks depending on the configuration | 54 | where to install, and installs hardlinks or symlinks depending |
55 | preferences. (You can also manually run the install script at | 55 | on the configuration preferences. (You can also manually run |
56 | "applets/install.sh"). | 56 | the install script at "applets/install.sh"). |
57 | 57 | ||
58 | ---------------- | 58 | ---------------- |
59 | 59 | ||
diff --git a/docs/busybox_header.pod b/docs/busybox_header.pod index ab1ebd501..804b83970 100644 --- a/docs/busybox_header.pod +++ b/docs/busybox_header.pod | |||
@@ -33,11 +33,11 @@ menuconfig' to select the functionality that you wish to enable. Then run | |||
33 | 33 | ||
34 | After the compile has finished, you should use 'make install' to install | 34 | After the compile has finished, you should use 'make install' to install |
35 | BusyBox. This will install the 'bin/busybox' binary, in the target directory | 35 | BusyBox. This will install the 'bin/busybox' binary, in the target directory |
36 | specified by PREFIX. PREFIX can be set when configuring BusyBox, or you can | 36 | specified by CONFIG_PREFIX. CONFIG_PREFIX can be set when configuring BusyBox, |
37 | specify an alternative location at install time (i.e., with a command line | 37 | or you can specify an alternative location at install time (i.e., with a |
38 | like 'make PREFIX=/tmp/foo install'). If you enabled any applet installation | 38 | command line like 'make CONFIG_PREFIX=/tmp/foo install'). If you enabled |
39 | scheme (either as symlinks or hardlinks), these will also be installed in | 39 | any applet installation scheme (either as symlinks or hardlinks), these will |
40 | the location pointed to by PREFIX. | 40 | also be installed in the location pointed to by CONFIG_PREFIX. |
41 | 41 | ||
42 | =head1 USAGE | 42 | =head1 USAGE |
43 | 43 | ||
diff --git a/examples/bootfloppy/bootfloppy.txt b/examples/bootfloppy/bootfloppy.txt index b514e6305..6866b724f 100644 --- a/examples/bootfloppy/bootfloppy.txt +++ b/examples/bootfloppy/bootfloppy.txt | |||
@@ -72,7 +72,7 @@ The following steps will create a root file system. | |||
72 | - Install the Busybox binary and accompanying symlinks: | 72 | - Install the Busybox binary and accompanying symlinks: |
73 | 73 | ||
74 | (chdir to busybox directory) | 74 | (chdir to busybox directory) |
75 | make PREFIX=(path to)loop/ install | 75 | make CONFIG_PREFIX=(path to)loop/ install |
76 | 76 | ||
77 | - Make device files in /dev: | 77 | - Make device files in /dev: |
78 | 78 | ||
diff --git a/examples/bootfloppy/mkrootfs.sh b/examples/bootfloppy/mkrootfs.sh index e79ed418e..5cdff21a0 100755 --- a/examples/bootfloppy/mkrootfs.sh +++ b/examples/bootfloppy/mkrootfs.sh | |||
@@ -76,7 +76,7 @@ cd $BASE_DIR | |||
76 | cd $BUSYBOX_DIR | 76 | cd $BUSYBOX_DIR |
77 | make distclean | 77 | make distclean |
78 | make CC=$BASE_DIR/$UCLIBC_DIR/extra/gcc-uClibc/i386-uclibc-gcc | 78 | make CC=$BASE_DIR/$UCLIBC_DIR/extra/gcc-uClibc/i386-uclibc-gcc |
79 | make PREFIX=$BASE_DIR/$TARGET_DIR install | 79 | make CONFIG_PREFIX=$BASE_DIR/$TARGET_DIR install |
80 | cd $BASE_DIR | 80 | cd $BASE_DIR |
81 | 81 | ||
82 | 82 | ||
diff --git a/examples/busybox.spec b/examples/busybox.spec index 3986436c1..494eed941 100644 --- a/examples/busybox.spec +++ b/examples/busybox.spec | |||
@@ -34,7 +34,7 @@ make | |||
34 | 34 | ||
35 | %Install | 35 | %Install |
36 | rm -rf $RPM_BUILD_ROOT | 36 | rm -rf $RPM_BUILD_ROOT |
37 | make PREFIX=$RPM_BUILD_ROOT install | 37 | make CONFIG_PREFIX=$RPM_BUILD_ROOT install |
38 | 38 | ||
39 | %Clean | 39 | %Clean |
40 | rm -rf $RPM_BUILD_ROOT | 40 | rm -rf $RPM_BUILD_ROOT |