1164115Snyan/*-
2164115Snyan * Copyright (c) 2006 TAKAHASHI Yoshihiro <nyan@FreeBSD.org>
3164115Snyan * All rights reserved.
4164115Snyan *
5164115Snyan * Redistribution and use in source and binary forms, with or without
6164115Snyan * modification, are permitted provided that the following conditions
7164115Snyan * are met:
8164115Snyan * 1. Redistributions of source code must retain the above copyright
9164115Snyan *    notice, this list of conditions and the following disclaimer.
10164115Snyan * 2. Redistributions in binary form must reproduce the above copyright
11164115Snyan *    notice, this list of conditions and the following disclaimer in the
12164115Snyan *    documentation and/or other materials provided with the distribution.
13164115Snyan *
14164115Snyan * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15164115Snyan * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16164115Snyan * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17164115Snyan * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18164115Snyan * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19164115Snyan * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20164115Snyan * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21164115Snyan * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22164115Snyan * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23164115Snyan * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24164115Snyan * SUCH DAMAGE.
25164115Snyan */
26164115Snyan
27164115Snyan#include <sys/cdefs.h>
28164115Snyan__FBSDID("$FreeBSD$");
29164115Snyan
30164115Snyan#include <stand.h>
31164115Snyan#include <sys/param.h>
32164115Snyan#include "libi386.h"
33164115Snyan
34164115Snyanvoid
35164115Snyanbios_addsmapdata(struct preloaded_file *kfp)
36164115Snyan{
37164115Snyan
38164115Snyan}
39