2007-05-12 19:38:18 +00:00
|
|
|
/*
|
|
|
|
* This file acts as a template for config.c that will be generated in the
|
|
|
|
* kernel build directory after config(8) has been successfully run.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*/
|
|
|
|
#include "opt_config.h"
|
|
|
|
#ifdef INCLUDE_CONFIG_FILE
|
|
|
|
|
2007-05-16 16:08:04 +00:00
|
|
|
/*
|
|
|
|
* For !INCLUDE_CONFIG_FILE case, you should look at kern_mib.c. This is
|
|
|
|
* where kernconfstring is defined then.
|
|
|
|
*/
|
2007-05-12 19:38:18 +00:00
|
|
|
const char kernconfstring[] __attribute__ ((section("kern_conf"))) =
|
|
|
|
"%%KERNCONFFILE%%";
|
|
|
|
|
|
|
|
#endif /* INCLUDE_CONFIG_FILE */
|