02 Jul, 2016

1 commit

  • As the help message of CONFIG_BOOTDELAY says, CONFIG_BOOTDELAY=-2
    means the autoboot with no delay, with no abort check even if
    CONFIG_ZERO_BOOTDELAY_CHECK is defined.

    To sum up, the autoboot behaves as follows:

    [1] CONFIG_BOOTDELAY=0 && CONFIG_ZERO_BOOTDELAY_CHECK=y
    autoboot with no delay, but you can abort it by key input

    [2] CONFIG_BOOTDELAY=0 && CONFIG_ZERO_BOOTDELAY_CHECK=n
    autoboot with no delay, with no check for abort

    [3] CONFIG_BOOTDELAY=-1
    disable autoboot

    [4] CONFIG_BOOTDELAY=-2
    autoboot with no delay, with no check for abort

    As you notice, [2] and [4] come to the same result, which means we
    do not need CONFIG_ZERO_BOOTDELAY_CHECK. We can control all the
    cases only by CONFIG_BOOTDELAY, like this:

    [1] CONFIG_BOOTDELAY=0
    autoboot with no delay, but you can abort it by key input

    [2] CONFIG_BOOTDELAY=-1
    disable autoboot

    [3] CONFIG_BOOTDELAY=-2
    autoboot with no delay, with no check for abort

    This commit converts the logic as follow:
    CONFIG_BOOTDELAY=0 && CONFIG_ZERO_BOOTDELAY_CHECK=n
    --> CONFIG_BOOTDELAY=-2

    Signed-off-by: Masahiro Yamada
    Reviewed-by: Stefan Roese
    Acked-by: Igor Grinberg
    Reviewed-by: Simon Glass
    Acked-by: Vladimir Zapolskiy
    Reviewed-by: Heiko Schocher
    Acked-by: Christian Riesch
    Acked-by: Hannes Schmelzer

    Masahiro Yamada
     

08 Jun, 2015

1 commit

  • These defines for a 2nd autoboot stop and delay string are nearly unused. Only
    sc3 defines CONFIG_AUTOBOOT_DELAY_STR2. And a patch to remove this most likely
    unmaintained board is also posted to the list.

    By removing these defines the code will become cleaner and moving the remaining
    compile options to Kconfig will get easier.

    Signed-off-by: Stefan Roese
    Reviewed-by: Tom Rini
    Reviewed-by: Simon Glass
    Cc: Wolfgang Denk
    Cc: Heiko Schocher

    Stefan Roese
     

09 Nov, 2013

1 commit


15 Oct, 2013

1 commit


24 Jul, 2013

1 commit


06 Aug, 2008

1 commit


12 Oct, 2004

1 commit


11 Oct, 2004

1 commit

  • - Add support to revA version of PQ27 and PQ27E.
    - Reverted MPC8260ADS baudrate back to original 115200

    * Patch by Hojin, 17 Sep 2004:
    Fix typo in cfi_flash.c

    * Patch by Mark Jonas, 09 September 2004:
    mtest's data line test (with CFG_ALT_MEMTEST set) returned a wrong
    error message

    * Patch by Mark Jonas, 31 August 2004:
    Added option CFG_XLB_PIPELINING to enable XLB pipelining. This
    improves FTP performance for MPC5200 systems. Enabled for IceCube
    by default.

    wdenk
     

15 Jul, 2003

1 commit

  • - Correct flash and JFFS2 support for MPC8260ADS
    - fix PVR values and clock generation for PowerQUICC II family
    (8270/8275/8280)

    * Patch by Bernhard Kuhn, 08 Jul 2003:
    - add support for M68K targets

    * Patch by Ken Chou, 3 Jul:
    - Fix PCI config table for A3000
    - Fix iobase for natsemi.c
    (PCI_BASE_ADDRESS_0 is the IO base register for DP83815)

    * Allow to enable "slow" POST routines by key press on power-on
    * Fix temperature dependend switching of LCD backlight on LWMON
    * Tweak output format for LWMON

    wdenk
     

28 Jun, 2003

1 commit

  • - remove trailing white space, trailing empty lines, C++ comments, etc.
    - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c)

    * Patches by Kenneth Johansson, 25 Jun 2003:
    - major rework of command structure
    (work done mostly by Michal Cendrowski and Joakim Kristiansen)

    wdenk
     

03 Nov, 2002

1 commit