mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-26 04:53:42 +00:00
d5737b3f6a
Tidy up this tool a little: - define which arguments are needed - split the enum values out into a header file - warn if no enum values are found - display the dtc error if something goes wrong - avoid a Python traceback on error Signed-off-by: Simon Glass <sjg@chromium.org>
25 lines
313 B
C
25 lines
313 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Sample expo screen layout (ID numbers)
|
|
*/
|
|
|
|
enum {
|
|
ZERO,
|
|
ID_PROMPT,
|
|
|
|
ID_SCENE1,
|
|
ID_SCENE1_TITLE,
|
|
|
|
ID_CPU_SPEED,
|
|
ID_CPU_SPEED_TITLE,
|
|
ID_CPU_SPEED_1,
|
|
ID_CPU_SPEED_2,
|
|
ID_CPU_SPEED_3,
|
|
|
|
ID_POWER_LOSS,
|
|
ID_AC_OFF,
|
|
ID_AC_ON,
|
|
ID_AC_MEMORY,
|
|
|
|
ID_DYNAMIC_START,
|
|
};
|