Lines Matching refs:kernel

13 # world               - buildworld + installworld, no kernel.
14 # buildkernel - Rebuild the kernel and the kernel-modules.
15 # installkernel - Install the kernel and the kernel-modules.
17 # reinstallkernel - Reinstall the kernel and the kernel-modules.
19 # kernel - buildkernel + installkernel.
20 # kernel-toolchain - Builds the subset of world necessary to build a kernel
21 # kernel-toolchains - Build kernel-toolchain for all universe targets.
22 # doxygen - Build API documentation of the kernel, needs doxygen.
33 # for world and kernel targets.
34 # toolchains - Build a toolchain for all world and kernel targets.
42 # "quick" way to test all kernel builds:
76 # [steps 3. & 4. can be combined by using the "kernel" target]
89 # and once the world is built you can cross build a kernel using the
110 installworld kernel-toolchain libraries lint maninstall \
252 tinderbox toolchains kernel-toolchains: .MAKE
281 # used for upgrading an existing FreeBSD system, because the kernel is
314 @echo "kernel. This can be dangerous. Please read the handbook,"
324 # kernel
328 kernel: buildkernel installkernel
374 tinderbox toolchains kernel-toolchains: upgrade_checks
382 kernel-toolchains:
383 @cd ${.CURDIR} && ${SUB_MAKE} UNIVERSE_TARGET=kernel-toolchain universe
410 @echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets"
489 .for kernel in ${KERNCONFS}
490 TARGET_ARCH_${kernel}!= cd ${KERNSRCDIR}/${TARGET}/conf && \
491 config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \
493 .if empty(TARGET_ARCH_${kernel})
494 .error "Target architecture for ${TARGET}/conf/${kernel} unknown. config(8) likely too old."
496 universe_kernconfs: universe_kernconf_${TARGET}_${kernel}
497 universe_kernconf_${TARGET}_${kernel}: .MAKE
501 TARGET_ARCH=${TARGET_ARCH_${kernel}} \
502 KERNCONF=${kernel} \
503 > _.${TARGET}.${kernel} 2>&1 || \
504 (echo "${TARGET} ${kernel} kernel failed," \
505 "check _.${TARGET}.${kernel} for details"| ${MAKEFAIL}))