intel_vbt.py 689 B

123456789101112131415161718192021
  1. # SPDX-License-Identifier: GPL-2.0+
  2. # Copyright (C) 2017, Bin Meng <bmeng.cn@gmail.com>
  3. #
  4. # Entry-type module for Intel Video BIOS Table binary blob
  5. #
  6. from binman.etype.blob_ext import Entry_blob_ext
  7. class Entry_intel_vbt(Entry_blob_ext):
  8. """Intel Video BIOS Table (VBT) file
  9. Properties / Entry arguments:
  10. - filename: Filename of file to read into entry
  11. This file contains code that sets up the integrated graphics subsystem on
  12. some Intel SoCs. U-Boot executes this when the display is started up.
  13. See README.x86 for information about Intel binary blobs.
  14. """
  15. def __init__(self, section, etype, node):
  16. super().__init__(section, etype, node)