diff options
Diffstat (limited to 'examples/bootfloppy')
-rw-r--r-- | examples/bootfloppy/bootfloppy.txt | 2 | ||||
-rwxr-xr-x | examples/bootfloppy/mkrootfs.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/bootfloppy/bootfloppy.txt b/examples/bootfloppy/bootfloppy.txt index b514e63..6866b72 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 e79ed41..5cdff21 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 |