diff options
author | luigi <luigi@FreeBSD.org> | 2012-05-03 20:50:55 +0000 |
---|---|---|
committer | luigi <luigi@FreeBSD.org> | 2012-05-03 20:50:55 +0000 |
commit | 4a439608e65206db467ff579061d7ad4327a4b32 (patch) | |
tree | b912862111ad78c3eea9e074bf27f781030ed80b /release/picobsd/build | |
parent | b70edef2be0ae6f4e3e311ce6417d9c511a62c65 (diff) | |
download | FreeBSD-src-4a439608e65206db467ff579061d7ad4327a4b32.zip FreeBSD-src-4a439608e65206db467ff579061d7ad4327a4b32.tar.gz |
Omit clang when building picobsd, it takes way too long.
Also note that loader.conf support is incomplete.
Diffstat (limited to 'release/picobsd/build')
-rwxr-xr-x | release/picobsd/build/picobsd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/release/picobsd/build/picobsd b/release/picobsd/build/picobsd index 60cc1c3..a6cf4ca 100755 --- a/release/picobsd/build/picobsd +++ b/release/picobsd/build/picobsd @@ -164,6 +164,7 @@ create_includes_and_libraries2() { # opt_dir opt_target log "create_includes_and_libraries2() for ${SRC} $1" if [ ${OSVERSION} -ge 600000 ] ; then no="-DNO_CLEAN -DNO_PROFILE -DNO_GAMES -DNO_LIBC_R" # WITHOUT_CDDL=1" + no="$no -DWITHOUT_CLANG" else no="-DNOCLEAN -DNOPROFILE -DNOGAMES -DNOLIBC_R" fi @@ -882,7 +883,7 @@ fill_floppy_image() { log "Compress with kgzip and copy to floppy image" mkdir -p ${dst}/boot/kernel - # XXX update loader.conf + # XXX loader.conf does not work unless we also load the .4th files echo "hint.acpi.0.disabled=\"1\"" > ${dst}/boot/loader.conf echo "console=\"comconsole\"" >> ${dst}/boot/loader.conf cp -p /boot/loader ${dst}/boot/loader || fail $? no_space "copying bootloader" |