binman: Drop repetitive heading for each entry
[platform/kernel/u-boot.git] / tools / binman / etype / scp.py
1 # SPDX-License-Identifier: GPL-2.0+
2 # Copyright 2020 Samuel Holland <samuel@sholland.org>
3 #
4 # Entry-type module for System Control Processor (SCP) firmware blob
5 #
6
7 from binman.etype.blob_named_by_arg import Entry_blob_named_by_arg
8
9 class Entry_scp(Entry_blob_named_by_arg):
10     """System Control Processor (SCP) firmware blob
11
12     Properties / Entry arguments:
13         - scp-path: Filename of file to read into the entry, typically scp.bin
14
15     This entry holds firmware for an external platform-specific coprocessor.
16     """
17     def __init__(self, section, etype, node):
18         super().__init__(section, etype, node, 'scp')
19         self.external = True