diff --git a/README b/README index 1883e54..f94dc1f 100644 --- a/README +++ b/README @@ -22,10 +22,10 @@ Building If you'd like to build FENIX, first, make sure to download the kernel and libc repositories into folders named "kernel" and "libc". Additionally, make sure -you've successfully built the cross-compiler and added ~/opt-test/cross (or -wherever you've install the cross-compiler to) to your PATH. From there, you -should just need to run `build.sh`. If you'd like an ISO, run `iso.sh` and if -you'd like to test it using `qemu-system-i386`, simply run `qemu.sh`. +you've successfully built the cross-compiler and added ~/opt/cross (or wherever +you've install the cross-compiler to) to your PATH. From there, you should just +need to run `build.sh`. If you'd like an ISO, run `iso.sh` and if you'd like to +test it using `qemu-system-i386`, simply run `qemu.sh`. Portability ----------- diff --git a/dev_tools/build_util_src/build_cross_compiler.sh b/dev_tools/build_util_src/build_cross_compiler.sh index c7892ff..0686592 100755 --- a/dev_tools/build_util_src/build_cross_compiler.sh +++ b/dev_tools/build_util_src/build_cross_compiler.sh @@ -10,7 +10,7 @@ tar -xvf gcc-9.2.0.tar.xz # but, for now, this is what we'll use. # Besides, we'd need patches for a custom OS target TARGET=i686-elf -PREFIX="$HOME/opt-test/cross" +PREFIX="$HOME/opt/cross" PATH="$PREFIX/bin:$PATH" # Go ahead and make sure the prefix exists