global: Rename SPL_TPL_ to PHASE_
Use PHASE_ as the symbol to select a particular XPL build. This means that SPL_TPL_ is no-longer set. Update the comment in bootstage to refer to this symbol, instead of SPL_ Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -351,7 +351,7 @@ void bootstage_report(void)
|
||||
}
|
||||
if (data->rec_count > RECORD_COUNT)
|
||||
printf("Overflowed internal boot id table by %d entries\n"
|
||||
"Please increase CONFIG_(SPL_TPL_)BOOTSTAGE_RECORD_COUNT\n",
|
||||
"Please increase CONFIG_(PHASE_)BOOTSTAGE_RECORD_COUNT\n",
|
||||
data->rec_count - RECORD_COUNT);
|
||||
|
||||
puts("\nAccumulated time:\n");
|
||||
@@ -473,7 +473,7 @@ int bootstage_unstash(const void *base, int size)
|
||||
|
||||
if (data->rec_count + hdr->count > RECORD_COUNT) {
|
||||
debug("%s: Bootstage has %d records, we have space for %d\n"
|
||||
"Please increase CONFIG_(SPL_)BOOTSTAGE_RECORD_COUNT\n",
|
||||
"Please increase CONFIG_(PHASE_)BOOTSTAGE_RECORD_COUNT\n",
|
||||
__func__, hdr->count, RECORD_COUNT - data->rec_count);
|
||||
return -ENOSPC;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user