Omit clang when building picobsd, it takes way too long.

Also note that loader.conf support is incomplete.
This commit is contained in:
Luigi Rizzo 2012-05-03 20:50:55 +00:00
parent cb4dff8563
commit 23eb7ebf94
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=234983
1 changed files with 2 additions and 1 deletions

View File

@ -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"