s/PREFIX/CONFIG_PREFIX/
This commit is contained in:
parent
06af216528
commit
e8ce0626d9
4
INSTALL
4
INSTALL
@ -5,7 +5,7 @@ The BusyBox build process is similar to the Linux kernel build:
|
|||||||
|
|
||||||
make menuconfig # This creates a file called ".config"
|
make menuconfig # This creates a file called ".config"
|
||||||
make # This creates the "busybox" executable
|
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:
|
The full list of configuration and install options is available by typing:
|
||||||
|
|
||||||
@ -114,7 +114,7 @@ configuration step, as in:
|
|||||||
make O=/some/empty/directory allyesconfig
|
make O=/some/empty/directory allyesconfig
|
||||||
cd /some/empty/directory
|
cd /some/empty/directory
|
||||||
make
|
make
|
||||||
make PREFIX=. install
|
make CONFIG_PREFIX=. install
|
||||||
|
|
||||||
More Information:
|
More Information:
|
||||||
=================
|
=================
|
||||||
|
@ -27,7 +27,7 @@ help:
|
|||||||
@echo ' make SED="$(objtree)/sed"'
|
@echo ' make SED="$(objtree)/sed"'
|
||||||
@echo
|
@echo
|
||||||
@echo 'Installation:'
|
@echo 'Installation:'
|
||||||
@echo ' install - install busybox into $(PREFIX)'
|
@echo ' install - install busybox into $(CONFIG_PREFIX)'
|
||||||
@echo ' uninstall'
|
@echo ' uninstall'
|
||||||
@echo
|
@echo
|
||||||
@echo 'Development:'
|
@echo 'Development:'
|
||||||
|
8
README
8
README
@ -50,10 +50,10 @@ Using busybox:
|
|||||||
|
|
||||||
The build automatically generates a file "busybox.links", which is used by
|
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
|
'make install' to create symlinks to the BusyBox binary for all compiled in
|
||||||
commands. This uses the PREFIX environment variable to specify where to
|
commands. This uses the CONFIG_PREFIX environment variable to specify
|
||||||
install, and installs hardlinks or symlinks depending on the configuration
|
where to install, and installs hardlinks or symlinks depending
|
||||||
preferences. (You can also manually run the install script at
|
on the configuration preferences. (You can also manually run
|
||||||
"applets/install.sh").
|
the install script at "applets/install.sh").
|
||||||
|
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
@ -33,11 +33,11 @@ menuconfig' to select the functionality that you wish to enable. Then run
|
|||||||
|
|
||||||
After the compile has finished, you should use 'make install' to install
|
After the compile has finished, you should use 'make install' to install
|
||||||
BusyBox. This will install the 'bin/busybox' binary, in the target directory
|
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
|
specified by CONFIG_PREFIX. CONFIG_PREFIX can be set when configuring BusyBox,
|
||||||
specify an alternative location at install time (i.e., with a command line
|
or you can specify an alternative location at install time (i.e., with a
|
||||||
like 'make PREFIX=/tmp/foo install'). If you enabled any applet installation
|
command line like 'make CONFIG_PREFIX=/tmp/foo install'). If you enabled
|
||||||
scheme (either as symlinks or hardlinks), these will also be installed in
|
any applet installation scheme (either as symlinks or hardlinks), these will
|
||||||
the location pointed to by PREFIX.
|
also be installed in the location pointed to by CONFIG_PREFIX.
|
||||||
|
|
||||||
=head1 USAGE
|
=head1 USAGE
|
||||||
|
|
||||||
|
@ -72,7 +72,7 @@ The following steps will create a root file system.
|
|||||||
- Install the Busybox binary and accompanying symlinks:
|
- Install the Busybox binary and accompanying symlinks:
|
||||||
|
|
||||||
(chdir to busybox directory)
|
(chdir to busybox directory)
|
||||||
make PREFIX=(path to)loop/ install
|
make CONFIG_PREFIX=(path to)loop/ install
|
||||||
|
|
||||||
- Make device files in /dev:
|
- Make device files in /dev:
|
||||||
|
|
||||||
|
@ -76,7 +76,7 @@ cd $BASE_DIR
|
|||||||
cd $BUSYBOX_DIR
|
cd $BUSYBOX_DIR
|
||||||
make distclean
|
make distclean
|
||||||
make CC=$BASE_DIR/$UCLIBC_DIR/extra/gcc-uClibc/i386-uclibc-gcc
|
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
|
cd $BASE_DIR
|
||||||
|
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ make
|
|||||||
|
|
||||||
%Install
|
%Install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
make PREFIX=$RPM_BUILD_ROOT install
|
make CONFIG_PREFIX=$RPM_BUILD_ROOT install
|
||||||
|
|
||||||
%Clean
|
%Clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
Loading…
Reference in New Issue
Block a user