tree: drop last paragraph of GPL copyright header
[coreboot.git] / util / nvramtool / lbtable.h
blobea1d1411c26881adfd60b9f3a2c95242a13da1d2
1 /*****************************************************************************\
2 * lbtable.h
3 *****************************************************************************
4 * Copyright (C) 2002-2005 The Regents of the University of California.
5 * Produced at the Lawrence Livermore National Laboratory.
6 * Written by Dave Peterson <dsp@llnl.gov> <dave_peterson@pobox.com>.
7 * UCRL-CODE-2003-012
8 * All rights reserved.
10 * This file is part of nvramtool, a utility for reading/writing coreboot
11 * parameters and displaying information from the coreboot table.
12 * For details, see http://coreboot.org/nvramtool.
14 * Please also read the file DISCLAIMER which is included in this software
15 * distribution.
17 * This program is free software; you can redistribute it and/or modify it
18 * under the terms of the GNU General Public License (as published by the
19 * Free Software Foundation) version 2, dated June 1991.
21 * This program is distributed in the hope that it will be useful, but
22 * WITHOUT ANY WARRANTY; without even the IMPLIED WARRANTY OF
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the terms and
24 * conditions of the GNU General Public License for more details.
25 \*****************************************************************************/
27 #ifndef LBTABLE_H
28 #define LBTABLE_H
30 #include "common.h"
32 void get_lbtable(void);
33 void get_layout_from_cmos_table(void);
34 void get_layout_from_cbfs_file(void);
35 void dump_lbtable(void);
36 void list_lbtable_choices(void);
37 void list_lbtable_item(const char item[]);
38 const struct lb_record *find_lbrec(uint32_t tag);
40 void process_layout(void);
41 #endif /* LBTABLE_H */