mirror of https://gitlab.com/qemu-project/qemu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
756 B
C
30 lines
756 B
C
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only
|
|
*/
|
|
|
|
#ifndef ASPEED_EEPROM_H
|
|
#define ASPEED_EEPROM_H
|
|
|
|
|
|
extern const uint8_t tiogapass_bmc_fruid[];
|
|
extern const size_t tiogapass_bmc_fruid_len;
|
|
|
|
extern const uint8_t fby35_nic_fruid[];
|
|
extern const uint8_t fby35_bb_fruid[];
|
|
extern const uint8_t fby35_bmc_fruid[];
|
|
extern const size_t fby35_nic_fruid_len;
|
|
extern const size_t fby35_bb_fruid_len;
|
|
extern const size_t fby35_bmc_fruid_len;
|
|
|
|
extern const uint8_t yosemitev2_bmc_fruid[];
|
|
extern const size_t yosemitev2_bmc_fruid_len;
|
|
|
|
extern const uint8_t rainier_bb_fruid[];
|
|
extern const size_t rainier_bb_fruid_len;
|
|
extern const uint8_t rainier_bmc_fruid[];
|
|
extern const size_t rainier_bmc_fruid_len;
|
|
|
|
#endif
|