Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-11-28 | menu.c: use puts() instead of printf() where possible | Wolfgang Denk | |
common/menu.c used printf() in a number of places to print user provided, constant strings (like the "title" string). printf() is dangerous here for example in case the user unwittingly embeds some '%' caracters that printf() would interpret as formatting and then pick up random arguments. Use puts() instead. We also omit the trailing ':' in the title line - if a user wants this, he can provide it as part of the title string. Signed-off-by: Wolfgang Denk <wd@denx.de> | |||
2011-10-17 | common, menu: use abortboot for menu timeout | Jason Hobbs | |
Signed-off-by: Jason Hobbs <jason.hobbs@calxeda.com> | |||
2011-10-17 | Add generic, reusable menu code | Jason Hobbs | |
This will be used first by the pxe code, but is intended to be generic and reusable for other jobs in U-boot. Signed-off-by: Jason Hobbs <jason.hobbs@calxeda.com> |