1. 11 9月, 2008 3 次提交
  2. 09 9月, 2008 2 次提交
  3. 31 8月, 2008 1 次提交
  4. 30 8月, 2008 3 次提交
  5. 29 8月, 2008 5 次提交
  6. 27 8月, 2008 1 次提交
  7. 21 8月, 2008 1 次提交
  8. 19 8月, 2008 1 次提交
    • H
      Add 'license' command to U-Boot command line · 0a823aa2
      Harald Welte 提交于
      The 'license' command includes the U-Boot license (GPLv2) into the
      actual bootloader binary. The license text can be shown interactively
      at the U-Boot commandline.
      
      For products where the commandline can actually be accessed by the
      end user, this helps to prevent inadvertent GPL violations, since the
      GPLv2 license text can no longer be 'forgotten' to be included into
      the product.
      
      The 'license' command can be enabled by CONFIG_CMD_LICENSE.
      Signed-off-by: NHarald Welte <laforge@openmoko.org>
      0a823aa2
  9. 13 8月, 2008 2 次提交
  10. 10 6月, 2008 1 次提交
  11. 04 6月, 2008 2 次提交
  12. 14 4月, 2008 1 次提交
    • E
      Altera Stratix II support · 3c735e74
      eran liberty 提交于
      Adds Support for Altera's Stratix II.
      
      Within your board specific init file you will have to call
      
      1. fpga_init (/* relocated code offset. usually => */ gd->reloc_off);
      2. fpga_add (fpga_altera, (Altera_desc*)&altera_desc);
      
      Altera_desc* contines (for example):
      	{
      	 Altera_StratixII,	/* part type */
      	 passive_serial,	/* interface type */
      	 1,			/* bytes of data part can accept */
      	 (void *)(&funcs),	/* interface function table */
      	 0L,			/* base interface address */
      	 0			/* implementation specific cookie */
      	 }
      
      funcs is the interface. It is of type altera_board_specific_func.
      It looks like this:
      altera_board_specific_func func = {
      	pre_fn,
      	config_fn,
      	status_fn,
      	done_fn,
      	clk_fn,
      	data_fn,
      	abort_fn,
      	post_fn,
      };
      
      you will have to implement these functions, which is usually bit
      banging some gpio.
      Signed-off-by: NEran Liberty <liberty@extricom.com>
      3c735e74
  13. 08 4月, 2008 1 次提交
  14. 27 3月, 2008 3 次提交
  15. 26 3月, 2008 1 次提交
    • K
      Add setexpr command · d058698f
      Kumar Gala 提交于
      Add a simple expr style command that will set an env variable as the result
      of the command.  This allows us to do simple math in shell.  The following
      operations are supported: &, |, ^, +, -, *, /.
      Signed-off-by: NKumar Gala <galak@kernel.crashing.org>
      d058698f
  16. 16 3月, 2008 2 次提交
  17. 07 2月, 2008 3 次提交
  18. 05 2月, 2008 2 次提交
  19. 09 1月, 2008 1 次提交
  20. 08 12月, 2007 1 次提交
  21. 21 11月, 2007 1 次提交
  22. 16 11月, 2007 1 次提交
  23. 17 9月, 2007 1 次提交