1294765Simp/*-
2294765Simp * Copyright (c) 2016 M. Warner Losh <imp@freebsd.org>
3294765Simp * All rights reserved.
4294765Simp *
5294765Simp * Redistribution and use in source and binary forms, with or without
6294765Simp * modification, are permitted provided that the following conditions
7294765Simp * are met:
8294765Simp * 1. Redistributions of source code must retain the above copyright
9294765Simp *    notice, this list of conditions and the following disclaimer.
10294765Simp * 2. Redistributions in binary form must reproduce the above copyright
11294765Simp *    notice, this list of conditions and the following disclaimer in the
12294765Simp *    documentation and/or other materials provided with the distribution.
13294765Simp *
14294765Simp * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
15294765Simp * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16294765Simp * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17294765Simp * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
18294765Simp * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19294765Simp * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20294765Simp * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21294765Simp * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22294765Simp * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23294765Simp * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24294765Simp * SUCH DAMAGE.
25294765Simp *
26294765Simp * $FreeBSD: releng/10.3/sys/boot/common/paths.h 295453 2016-02-09 22:32:24Z emaste $
27294765Simp */
28294765Simp
29294765Simp#ifndef _PATHS_H_
30294765Simp#define	_PATHS_H_
31294765Simp
32294765Simp#define PATH_DOTCONFIG	"/boot.config"
33294765Simp#define PATH_CONFIG	"/boot/config"
34294765Simp#define PATH_LOADER	"/boot/loader"
35294765Simp#define PATH_LOADER_EFI	"/boot/loader.efi"
36295453Semaste#define PATH_LOADER_ZFS	"/boot/zfsloader"
37294765Simp#define PATH_KERNEL	"/boot/kernel/kernel"
38294765Simp
39294765Simp#endif /* _PATHS_H_ */
40