intel_vbt.py 717 B

12345678910111213141516171819202122
  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 entry import Entry
  7. from blob import Entry_blob
  8. class Entry_intel_vbt(Entry_blob):
  9. """Entry containing an Intel Video BIOS Table (VBT) 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. See README.x86 for information about Intel binary blobs.
  15. """
  16. def __init__(self, section, etype, node):
  17. Entry_blob.__init__(self, section, etype, node)