svn commit: trunk/busybox: docs examples examples/bootfloppy

vda at busybox.net vda at busybox.net
Sat Feb 3 09:29:14 PST 2007


Author: vda
Date: 2007-02-03 09:29:14 -0800 (Sat, 03 Feb 2007)
New Revision: 17741

Log:
s/PREFIX/CONFIG_PREFIX/


Modified:
   trunk/busybox/INSTALL
   trunk/busybox/Makefile.help
   trunk/busybox/README
   trunk/busybox/docs/busybox_header.pod
   trunk/busybox/examples/bootfloppy/bootfloppy.txt
   trunk/busybox/examples/bootfloppy/mkrootfs.sh
   trunk/busybox/examples/busybox.spec


Changeset:
Modified: trunk/busybox/INSTALL
===================================================================
--- trunk/busybox/INSTALL	2007-02-03 17:28:39 UTC (rev 17740)
+++ trunk/busybox/INSTALL	2007-02-03 17:29:14 UTC (rev 17741)
@@ -5,7 +5,7 @@
 
   make menuconfig     # This creates a file called ".config"
   make                # This creates the "busybox" executable
-  make install        # or make PREFIX=/path/from/root install
+  make install        # or make CONFIG_PREFIX=/path/from/root install
 
 The full list of configuration and install options is available by typing:
 
@@ -114,7 +114,7 @@
   make O=/some/empty/directory allyesconfig
   cd /some/empty/directory
   make
-  make PREFIX=. install
+  make CONFIG_PREFIX=. install
 
 More Information:
 =================

Modified: trunk/busybox/Makefile.help
===================================================================
--- trunk/busybox/Makefile.help	2007-02-03 17:28:39 UTC (rev 17740)
+++ trunk/busybox/Makefile.help	2007-02-03 17:29:14 UTC (rev 17741)
@@ -27,7 +27,7 @@
 	@echo '			  make SED="$(objtree)/sed"'
 	@echo
 	@echo 'Installation:'
-	@echo '  install		- install busybox into $(PREFIX)'
+	@echo '  install		- install busybox into $(CONFIG_PREFIX)'
 	@echo '  uninstall'
 	@echo
 	@echo 'Development:'

Modified: trunk/busybox/README
===================================================================
--- trunk/busybox/README	2007-02-03 17:28:39 UTC (rev 17740)
+++ trunk/busybox/README	2007-02-03 17:29:14 UTC (rev 17741)
@@ -50,10 +50,10 @@
 
   The build automatically generates a file "busybox.links", which is used by
   'make install' to create symlinks to the BusyBox binary for all compiled in
-  commands.  This uses the PREFIX environment variable to specify where to
-  install, and installs hardlinks or symlinks depending on the configuration
-  preferences.  (You can also manually run the install script at
-  "applets/install.sh").
+  commands.  This uses the CONFIG_PREFIX environment variable to specify
+  where to install, and installs hardlinks or symlinks depending
+  on the configuration preferences.  (You can also manually run
+  the install script at "applets/install.sh").
 
 ----------------
 

Modified: trunk/busybox/docs/busybox_header.pod
===================================================================
--- trunk/busybox/docs/busybox_header.pod	2007-02-03 17:28:39 UTC (rev 17740)
+++ trunk/busybox/docs/busybox_header.pod	2007-02-03 17:29:14 UTC (rev 17741)
@@ -33,11 +33,11 @@
 
 After the compile has finished, you should use 'make install' to install
 BusyBox. This will install the 'bin/busybox' binary, in the target directory
-specified by PREFIX. PREFIX can be set when configuring BusyBox, or you can
-specify an alternative location at install time (i.e., with a command line
-like 'make PREFIX=/tmp/foo install'). If you enabled any applet installation
-scheme (either as symlinks or hardlinks), these will also be installed in
-the location pointed to by PREFIX.
+specified by CONFIG_PREFIX. CONFIG_PREFIX can be set when configuring BusyBox,
+or you can specify an alternative location at install time (i.e., with a
+command line like 'make CONFIG_PREFIX=/tmp/foo install'). If you enabled
+any applet installation scheme (either as symlinks or hardlinks), these will
+also be installed in the location pointed to by CONFIG_PREFIX.
 
 =head1 USAGE
 

Modified: trunk/busybox/examples/bootfloppy/bootfloppy.txt
===================================================================
--- trunk/busybox/examples/bootfloppy/bootfloppy.txt	2007-02-03 17:28:39 UTC (rev 17740)
+++ trunk/busybox/examples/bootfloppy/bootfloppy.txt	2007-02-03 17:29:14 UTC (rev 17741)
@@ -72,7 +72,7 @@
  - Install the Busybox binary and accompanying symlinks:
 
 	(chdir to busybox directory)
-	make PREFIX=(path to)loop/ install
+	make CONFIG_PREFIX=(path to)loop/ install
 
  - Make device files in /dev:
 

Modified: trunk/busybox/examples/bootfloppy/mkrootfs.sh
===================================================================
--- trunk/busybox/examples/bootfloppy/mkrootfs.sh	2007-02-03 17:28:39 UTC (rev 17740)
+++ trunk/busybox/examples/bootfloppy/mkrootfs.sh	2007-02-03 17:29:14 UTC (rev 17741)
@@ -76,7 +76,7 @@
 cd $BUSYBOX_DIR
 make distclean
 make CC=$BASE_DIR/$UCLIBC_DIR/extra/gcc-uClibc/i386-uclibc-gcc
-make PREFIX=$BASE_DIR/$TARGET_DIR install
+make CONFIG_PREFIX=$BASE_DIR/$TARGET_DIR install
 cd $BASE_DIR
 
 

Modified: trunk/busybox/examples/busybox.spec
===================================================================
--- trunk/busybox/examples/busybox.spec	2007-02-03 17:28:39 UTC (rev 17740)
+++ trunk/busybox/examples/busybox.spec	2007-02-03 17:29:14 UTC (rev 17741)
@@ -34,7 +34,7 @@
 
 %Install
 rm -rf $RPM_BUILD_ROOT
-make PREFIX=$RPM_BUILD_ROOT install
+make CONFIG_PREFIX=$RPM_BUILD_ROOT install
 
 %Clean
 rm -rf $RPM_BUILD_ROOT



More information about the busybox-cvs mailing list