]> Git Repo - J-u-boot.git/blob - tools/binman/etype/intel_cmc.py
rockchip: rk3399: Add Nanopi M4 2GB board support
[J-u-boot.git] / tools / binman / etype / intel_cmc.py
1 # SPDX-License-Identifier: GPL-2.0+
2 # Copyright (c) 2016 Google, Inc
3 # Written by Simon Glass <[email protected]>
4 #
5 # Entry-type module for Intel Chip Microcode binary blob
6 #
7
8 from entry import Entry
9 from blob import Entry_blob
10
11 class Entry_intel_cmc(Entry_blob):
12     """Entry containing an Intel Chipset Micro Code (CMC) file
13
14     Properties / Entry arguments:
15         - filename: Filename of file to read into entry
16
17     This file contains microcode for some devices in a special format. An
18     example filename is 'Microcode/C0_22211.BIN'.
19
20     See README.x86 for information about x86 binary blobs.
21     """
22     def __init__(self, section, etype, node):
23         Entry_blob.__init__(self, section, etype, node)
This page took 0.023724 seconds and 4 git commands to generate.