mirror of
git://projects.qi-hardware.com/xburst-tools.git
synced 2025-04-21 12:27:27 +03:00
Add a dedicated function to query debug action to board_api
On the devices where we have only 2 physical buttons, one of those buttons (i.e. POWER) is connected directly to PMU. The other button (AUX) is connected directly to S3C pin and we can get its state immediately, it is currently used to skip a boot possibility. To allow user to debug boot problems we can use the POWER button, but we cannot poll for it too many times as it slows down the boot considerably, therefore a dedicated function is needed.
This commit is contained in:
@@ -234,8 +234,8 @@ static void do_params(unsigned initramfs_len,
|
||||
* to have the debugging options added to the commandline
|
||||
*/
|
||||
|
||||
if (this_board->commandline_board_debug && this_board->get_ui_keys)
|
||||
if ((this_board->get_ui_keys)() & UI_ACTION_SKIPKERNEL)
|
||||
if (this_board->commandline_board_debug && this_board->get_ui_debug)
|
||||
if ((this_board->get_ui_debug)())
|
||||
cmdline += strlen(strcpy(cmdline, this_board->
|
||||
commandline_board_debug));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user