199357Smarkm/*-
299357Smarkm * Copyright (c) 2002 Jonathan Belson <jon@witchspace.com>
399357Smarkm * All rights reserved.
499357Smarkm *
599357Smarkm * Redistribution and use in source and binary forms, with or without
699357Smarkm * modification, are permitted provided that the following conditions
799357Smarkm * are met:
899357Smarkm * 1. Redistributions of source code must retain the above copyright
999357Smarkm *    notice, this list of conditions and the following disclaimer.
1099357Smarkm * 2. Redistributions in binary form must reproduce the above copyright
1199357Smarkm *    notice, this list of conditions and the following disclaimer in the
1299357Smarkm *    documentation and/or other materials provided with the distribution.
1399357Smarkm *
1499357Smarkm * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1599357Smarkm * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1699357Smarkm * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1799357Smarkm * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1899357Smarkm * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1999357Smarkm * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2099357Smarkm * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2199357Smarkm * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2299357Smarkm * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2399357Smarkm * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2499357Smarkm * SUCH DAMAGE.
2599357Smarkm *
2699357Smarkm * $FreeBSD$
2799357Smarkm */
2899357Smarkm
2999357Smarkm
3099357Smarkm#define DEFAULT_LANG		"en"
3199357Smarkm#define DEFAULT_SYSCONFIG	"/etc/rc.conf"
32270309Sse
33270309Sse#define DEFAULT_SC_KEYMAP_DIR	"/usr/share/syscons/keymaps"
34270309Sse#define DEFAULT_SC_FONT_DIR	"/usr/share/syscons/fonts"
35270309Sse#define DEFAULT_SC_FONT		"cp437-8x16.fnt"
36270309Sse
37270309Sse#define DEFAULT_VT_KEYMAP_DIR	"/usr/share/vt/keymaps"
38270309Sse#define DEFAULT_VT_FONT_DIR	"/usr/share/vt/fonts"
39270309Sse#define DEFAULT_VT_FONT		"vgarom-thin-8x16.fnt"
40