mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-23 22:14:54 +00:00

We are about to add a large number of new entries. Update the prefix to be a little shorter. For SMBIOS items, use SYSID_SM_ (for System Management) which is enough to distinguish it. For now at least, it seems that most items will be for SMBIOS. Signed-off-by: Simon Glass <sjg@chromium.org> Acked-by: Raymond Mao <raymond.mao@linaro.org>
19 lines
283 B
C
19 lines
283 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* (C) Copyright 2017
|
|
* Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc
|
|
*
|
|
*/
|
|
|
|
#include <sysinfo.h>
|
|
|
|
enum {
|
|
BOARD_HWVERSION = SYSID_BOARD_MODEL,
|
|
BOARD_MULTICHANNEL = SYSID_USER,
|
|
BOARD_VARIANT
|
|
};
|
|
|
|
enum {
|
|
VAR_CON,
|
|
VAR_CPU,
|
|
};
|