intel_vga.py 773 B

123456789101112131415161718192021222324
  1. # SPDX-License-Identifier: GPL-2.0+
  2. # Copyright (c) 2016 Google, Inc
  3. # Written by Simon Glass <sjg@chromium.org>
  4. #
  5. # Entry-type module for x86 VGA ROM binary blob
  6. #
  7. from binman.etype.blob_ext import Entry_blob_ext
  8. class Entry_intel_vga(Entry_blob_ext):
  9. """Intel Video Graphics Adaptor (VGA) file
  10. Properties / Entry arguments:
  11. - filename: Filename of file to read into entry
  12. This file contains code that sets up the integrated graphics subsystem on
  13. some Intel SoCs. U-Boot executes this when the display is started up.
  14. This is similar to the VBT file but in a different format.
  15. See README.x86 for information about Intel binary blobs.
  16. """
  17. def __init__(self, section, etype, node):
  18. super().__init__(section, etype, node)