uboot-mt623x/board/siemens/common
Wolfgang Denk a89c33db96 General help message cleanup
Many of the help messages were not really helpful; for example, many
commands that take no arguments would not print a correct synopsis
line, but "No additional help available." which is not exactly wrong,
but not helpful either.

Commit ``Make "usage" messages more helpful.'' changed this
partially. But it also became clear that lots of "Usage" and "Help"
messages (fields "usage" and "help" in struct cmd_tbl_s respective)
were actually redundant.

This patch cleans this up - for example:

Before:
	=> help dtt
	dtt - Digital Thermometer and Thermostat

	Usage:
	dtt         - Read temperature from digital thermometer and thermostat.

After:
	=> help dtt
	dtt - Read temperature from Digital Thermometer and Thermostat

	Usage:
	dtt

Signed-off-by: Wolfgang Denk <wd@denx.de>
2009-06-12 20:47:16 +02:00
..
README Change all '$(...)' variable references into '${...}' 2005-11-20 21:40:11 +01:00
fpga.c General help message cleanup 2009-06-12 20:47:16 +02:00
fpga.h Initial revision 2002-06-10 16:09:10 +00:00

README

CCM/SCM-Ergaenzungen fuer U-Boot und Linux:
-------------------------------------------

Es gibt nun ein gemeinsames Kommando zum Laden der FPGAs:

  => help fpga
  fpga fpga status [name] - print FPGA status
  fpga reset  [name] - reset FPGA
  fpga load [name] addr - load FPGA configuration data

Der Name kann beim CCM-Module auch weggelassen werden.
Die Laengenangabe und damit "puma_len" ist nicht mehr
noetig:

  => fpga load puma 40600000
  FPGA load PUMA: addr 40600000: (00000005)... done

Die MTD-Partitionierung kann nun mittels "bootargs" ueber-
geben werden:

  => printenv addmtd
  addmtd=setenv bootargs ${bootargs}
    mtdparts=0:256k(U-Boot)ro,768k(Kernel),-(Rest)\;1:-(myJFFS2)

Die Portierung auf SMC ist natuerlich noch nicht getestet.

Wolfgang Grandegger (04.06.2002)