mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-31 11:01:19 +00:00
As per discussion with lawyers[tm], it's not a good idea to
shorten the license header too much - not for legal reasons
but because there are tools that look for them, and giving
them a standard pattern simplifies things.
However, we got confirmation that we don't have to update
every file ever added to coreboot whenever the FSF gets a
new lease, but can drop the address instead.
util/kconfig is excluded because that's imported code that
we may want to synchronize every now and then.
$ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *MA[, ]*02110-1301[, ]*USA:Foundation, Inc.:" {} +
$ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA:Foundation, Inc.:" {} +
$ find * -type f -exec sed -i "s:Foundation, Inc., 59 Temple Place[-, ]*Suite 330, Boston, MA *02111-1307[, ]*USA:Foundation, Inc.:" {} +
$ find * -type f -exec sed -i "s:Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.:Foundation, Inc.:" {} +
$ find * -type f
-a \! -name \*.patch \
-a \! -name \*_shipped \
-a \! -name LICENSE_GPL \
-a \! -name LGPL.txt \
-a \! -name COPYING \
-a \! -name DISCLAIMER \
-exec sed -i "/Foundation, Inc./ N;s:Foundation, Inc.* USA\.* *:Foundation, Inc. :;s:Foundation, Inc. $:Foundation, Inc.:" {} +
Change-Id: Icc968a5a5f3a5df8d32b940f9cdb35350654bef9
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: http://review.coreboot.org/9233
Tested-by: build bot (Jenkins)
Reviewed-by: Vladimir Serbinenko <phcoder@gmail.com>
58 lines
1.9 KiB
C
58 lines
1.9 KiB
C
/*
|
|
* This file is part of the coreboot project.
|
|
*
|
|
* Copyright (C) 2009 coresystems GmbH
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; version 2 of the License.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc.
|
|
*/
|
|
|
|
#ifndef __TYPES_H
|
|
#define __TYPES_H
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
/*
|
|
* This may mean something else on architectures where the bits are numbered
|
|
* from the MSB (e.g. PowerPC), but until we cross that bridge, this macro is
|
|
* perfectly fine.
|
|
*/
|
|
#define BIT(x) (1ul << (x))
|
|
|
|
/**
|
|
* Coreboot error codes
|
|
*
|
|
* When building functions that return a status or an error code, use cb_err as
|
|
* the return type. When failure reason needs to be communicated by the return
|
|
* value, define a it here. Start new enum groups with values in decrements of
|
|
* 100.
|
|
*/
|
|
enum cb_err {
|
|
CB_SUCCESS = 0, /**< Call completed succesfully */
|
|
CB_ERR = -1, /**< Generic error code */
|
|
CB_ERR_ARG = -2, /**< Invalid argument */
|
|
|
|
/* NVRAM/CMOS errors */
|
|
CB_CMOS_OTABLE_DISABLED = -100, /**< Option table disabled */
|
|
CB_CMOS_LAYOUT_NOT_FOUND = -101, /**< Layout file not found */
|
|
CB_CMOS_OPTION_NOT_FOUND = -102, /**< Option string not found */
|
|
CB_CMOS_ACCESS_ERROR = -103, /**< CMOS access error */
|
|
CB_CMOS_CHECKSUM_INVALID = -104, /**< CMOS checksum is invalid */
|
|
|
|
/* Keyboard test failures */
|
|
CB_KBD_CONTROLLER_FAILURE = -200,
|
|
CB_KBD_INTERFACE_FAILURE = -201
|
|
};
|
|
|
|
#endif /* __TYPES_H */
|