aboutsummaryrefslogtreecommitdiff
path: root/examples/bootfloppy
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-02-03 17:29:14 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-02-03 17:29:14 +0000
commite8ce0626d99114a66ae48273bb1478a3454b65cf (patch)
tree7196276c295570562c620c7a36167f14c972354a /examples/bootfloppy
parent06af2165288cd6516b89001ec9e24992619230e0 (diff)
downloadbusybox-e8ce0626d99114a66ae48273bb1478a3454b65cf.tar.gz
s/PREFIX/CONFIG_PREFIX/
Diffstat (limited to 'examples/bootfloppy')
-rw-r--r--examples/bootfloppy/bootfloppy.txt2
-rwxr-xr-xexamples/bootfloppy/mkrootfs.sh2
2 files changed, 2 insertions, 2 deletions
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.
- 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:
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
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