1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 08:42:12 +02:00

cmd: tmenu: Add tmenu command for touch menu user interface

Shows a menu of items that can be controlled using touch panel.
This is useful for touch based devices like tablets to select
alternative boot options (multi-boot).

Signed-off-by: Ondrej Jirman <megous@megous.com>
This commit is contained in:
Ondrej Jirman
2018-07-09 08:04:51 +02:00
committed by Ondrej Jirman
parent c062af533e
commit e36a857b65
5 changed files with 774 additions and 1 deletions

View File

@@ -783,6 +783,11 @@ cleanup:
return 1;
}
int pxe_label_boot(struct pxe_context *ctx, struct pxe_label *label)
{
return label_boot(ctx, label);
}
/** enum token_type - Tokens for the pxe file parser */
enum token_type {
T_EOL,