summaryrefslogtreecommitdiff
path: root/common/main.c
AgeCommit message (Expand)AuthorFilesLines
2014-05-30move CLI prototypes to cli.h and add commentsSimon Glass1-0/+1
2014-05-30Rename hush to cli_hushSimon Glass1-1/+1
2014-05-10Make 'run' use run_command_list() instead of run_command()Simon Glass1-1/+1
2014-04-17Start the deprecation process for generic boardSimon Glass1-0/+6
2013-11-09autoboot: add an option to override keyed autobootMark Langsdorf1-2/+2
2013-10-15Coding Style cleanup: replace leading SPACEs by TABsWolfgang Denk1-1/+1
2013-07-24Add GPL-2.0+ SPDX-License-Identifier to source filesWolfgang Denk1-17/+1
2013-06-05fdt: allow bootdelay to be specified via device treeStephen Warren1-0/+5
2013-06-05main: Add debug_bootkeys to avoid #ifdefsSimon Glass1-12/+12
2013-06-05main: Add debug_parser() to avoid #ifdefsSimon Glass1-35/+23
2013-06-05main: Correct header orderSimon Glass1-15/+4
2013-06-05main: Fix typos and checkpatch warnings in command line readingSimon Glass1-11/+11
2013-06-05main: Use get/setenv_ulong()Simon Glass1-6/+2
2013-06-05main: Move boot_delay code into its own functionSimon Glass1-67/+70
2013-06-05main: Separate out the two abortboot() functionsSimon Glass1-8/+11
2013-06-05net: Add prototype for update_tftpSimon Glass1-4/+0
2013-05-01Revert "fdt- Tell the FDT library where the device tree is"Simon Glass1-8/+0
2013-03-12CONFIG_BOOTDELAY default should not affect runtimeJoe Hershberger1-8/+6
2013-03-12common/main: move set_working_fdt_addr to enable usage of $fdtaddrBarak Wasserstrom1-4/+4
2013-02-04cmd_time: merge run_command_and_time_it with cmd_processRichard Genoud1-1/+1
2013-02-04console: USB: KBD: Fix incorrect autoboot timeoutJim Lin1-5/+5
2012-12-20Merge remote-tracking branch 'u-boot/master' into u-boot-arm-mergedAllen Martin1-3/+103
2012-12-12Add new bootstage step for the main loopSimon Glass1-0/+2
2012-11-29fdt: Correct global_data condition in mainSimon Glass1-2/+0
2012-11-19lcd: Add support for flushing LCD fb from dcache after updateSimon Glass1-2/+10
2012-11-13fdt: Set kernaddr if fdt indicates a kernel is presentSimon Glass1-0/+16
2012-11-13fdt: Allow device tree to specify secure bootingDoug Anderson1-0/+62
2012-11-13fdt: Tell the FDT library where the device tree isGabe Black1-0/+8
2012-11-13fdt: Load boot command from device treeChe-Liang Chiou1-1/+15
2012-11-04common/misc: sparse fixesKim Phillips1-5/+5
2012-10-04Allow runtime configuration of "zero-delay" checkJoe Hershberger1-2/+3
2012-08-10Consider CONFIG_ZERO_BOOTDELAY_CHECK when CONFIG_AUTOBOOT_KEYED is setDirk Eibach1-0/+5
2012-08-10Allow newlines within command environment varsSimon Glass1-3/+3
2012-08-10Add run_command_list() to run a list of commandsSimon Glass1-0/+85
2012-05-16net: cosmetic: net.c checkpatch complianceJoe Hershberger1-1/+0
2012-04-24Fix the behaviour of the 'run' commandTimo Ketola1-1/+2
2012-03-07Convert cmd_usage() calls in common to use a return valueSimon Glass1-1/+1
2012-03-07Add cmd_process() to process commands in one placeSimon Glass1-36/+1
2012-03-07Create a single cmd_call() function to handle command executionSimon Glass1-2/+1
2012-03-07Don't include standard parser if hush is usedSimon Glass1-0/+2
2012-03-07Stop using builtin_run_command()Simon Glass1-23/+26
2012-03-07Rename run_command2() to run_command()Simon Glass1-5/+5
2012-03-07Rename run_command() to builtin_run_command()Simon Glass1-4/+5
2012-03-07Remove CMD_PXE's static on run_command()Simon Glass1-3/+0
2012-02-12common, menu: show menu on startup if CONFIG_MENU_SHOW is definedHeiko Schocher1-0/+4
2012-02-12common: add possibility for readline_into_buffer timeoutHeiko Schocher1-4/+16
2011-10-18Add pxe commandJason Hobbs1-0/+2
2011-10-18Replace space and tab checks with isblankJason Hobbs1-2/+3
2011-10-18cosmetic: remove unneeded curly bracesJason Hobbs1-4/+2
2011-10-18common: add run_command2 for running simple or hush commandsJason Hobbs1-29/+27