mirror of
https://github.com/u-boot/u-boot.git
synced 2024-12-12 14:23:50 +08:00
binman: Don't generate an error in 'text' entry constructor
It is not good practice to raise an exception in a constructor. In this case the 'text' entry may not actually be used, if -i is used to filter out the images that get built. Move the exception to where the data is actually used. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
8d7f06bbbe
commit
5203258c6e
@ -51,10 +51,10 @@ class Entry_text(Entry):
|
||||
self.text_label, = self.GetEntryArgsOrProps(
|
||||
[EntryArg('text-label', str)])
|
||||
self.value, = self.GetEntryArgsOrProps([EntryArg(self.text_label, str)])
|
||||
|
||||
def ObtainContents(self):
|
||||
if not self.value:
|
||||
self.Raise("No value provided for text label '%s'" %
|
||||
self.text_label)
|
||||
|
||||
def ObtainContents(self):
|
||||
self.SetContents(self.value)
|
||||
return True
|
||||
|
Loading…
Reference in New Issue
Block a user