9
0
Fork 0
Commit Graph

3381 Commits

Author SHA1 Message Date
Sascha Hauer 187847b2b4 add globbing support 2008-03-09 22:35:38 +01:00
Sascha Hauer 2209ae02ba readline: Fix wrong screen reprinting. Try:
abcde<BACKSPACE><HOME><DEL>
2008-03-02 17:24:05 +01:00
Sascha Hauer 23d1cead89 readline: Fix a bug when tab completion is used in the middle
of the line.
2008-03-02 17:23:10 +01:00
Sascha Hauer 1a8e0f589f add armlinux.h 2008-03-01 22:47:46 +01:00
Sascha Hauer c0770312bc remove traces of old tab completion 2008-03-01 22:47:06 +01:00
Sascha Hauer 73ced4a143 add missing include 2008-03-01 22:46:46 +01:00
Sascha Hauer df31bb46be implement TAB completion 2008-03-01 21:08:14 +01:00
Sascha Hauer a1a747af7f fix typo 2008-03-01 21:06:14 +01:00
Sascha Hauer e77ed305e6 add missing null pointer check in unlink() 2008-03-01 21:05:23 +01:00
Sascha Hauer 6e08f55368 memory_display() used to show the ascii output on the
last line not exactly under the other lines. fix it.
2008-03-01 21:03:35 +01:00
Sascha Hauer ca558b9097 make dirname/basename behave more standard conform 2008-03-01 21:03:01 +01:00
Sascha Hauer 8d8f900366 [ARM] Remove CONFIG_ARCH_NUMBER from Kconfig system. Putting too many
values into kconfig which are not user configurable at all only
      encourages people to put even more stuff in there. This is not
      good because people tend to have board patches lying around and
      these patches won't apply regularly if they all change the same
      file (arch/arm/Kconfig)
      Instead, introduce a function armlinux_set_architecture() which
      everyone can call during board setup.
      Similarly introduce armlinux_set_bootparams() for the boot
      parameter pointer.
2008-02-26 15:38:37 +01:00
Sascha Hauer 066ac7abdb [CFI driver] add missing flash protection for new driver 2008-02-26 11:55:41 +01:00
Sascha Hauer be041ab8f4 fix compile bug introduced with last commit 2008-02-26 11:30:06 +01:00
Sascha Hauer 3d3c13d8f8 [CFI Driver] - Update Kconfig help texts
- Turn switch/case into if/else to be able to optimize out
	       unused code when not all bankwidths are needed
2008-02-26 11:28:55 +01:00
Sascha Hauer 51c840cd18 [CFI driver] For some Spansion flashes we have to write the
AMD_CMD_WRITE_TO_BUFFER command to the destination
	     address of the buffer write and not to the sector
	     beginning. Linux mtd does this as default, so I
	     assume this should work for other flashes aswell.
	     Reorder functions so that this change fits in nicely.
2008-02-26 10:32:25 +01:00
Sascha Hauer d99f33eb25 [CFI Driver] Remove empty comments 2008-02-26 08:16:07 +01:00
Sascha Hauer e3ac372bdf [CFI Driver] Removed flash_find_sector(). It turned out to be a duplicate
of find_sector.
	     For rellocing the protect field, multiply with sizeof(uchar) instead
	     of sizeof(ulong).
2008-02-26 08:10:34 +01:00
Sascha Hauer 7f88a7844c [CFI FLASH] Make the 'new' driver compile again and reorder functions to
get rid of static function declarations.
2008-02-25 18:41:25 +01:00
Sascha Hauer ef4ddb0ec0 [i.MX27ads]: change uimage and rootfs name in environment 2008-02-22 16:15:20 +01:00
Sascha Hauer 6a14b28cfa [i.MX27ads]: Move some not-so-important initialisations from assembler
to C-code
2008-02-22 16:13:23 +01:00
Sascha Hauer 27330d6cad Merge branch 'master' of ssh://sha@octopus/home/git/projects/u-boot-v2 2008-02-22 09:25:14 +01:00
Marc Kleine-Budde 5616897c74 [ipe337] fix ageing handling
With this path the script "_alternate" isn't used anymore,
because the return values somehow get lost.

We use alternate directly for now.

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
2008-02-21 19:32:44 +01:00
Carsten Schlote 1fd9c5a05c [ppc] Fixed orphaned CONFIG_INTERRUPTS
Changed CONFIG to CONFIG_USE_IRQ

Signed-off-by: Carsten Schlote <c.schlote@konzeptpark.de>
2008-02-21 15:07:49 +01:00
Sascha Hauer a28726cf51 [blackfin]: register handler for booting linux images 2008-02-21 13:18:53 +01:00
Sascha Hauer 28ab141867 [MPC5200]: call early_init() after we've setup our timing. Otherwise
the console gets messed up afterwards.
2008-02-21 13:06:38 +01:00
Sascha Hauer a26eca758e Make the early console device/baudrate configurable instead of using
hardcoded values
2008-02-21 13:05:19 +01:00
Sascha Hauer 39050a4c66 [MPC5200] Make MPC5XXX_EARLY_CONSOLE dependent on ARCH_MPC5200 2008-02-21 13:04:03 +01:00
Sascha Hauer 05326c3110 Merge branch 'master' of ssh://sha@octopus/home/git/projects/u-boot-v2 2008-02-21 12:28:37 +01:00
Sascha Hauer 2329dac139 [pcm030]: Remove SIZEOF_HEADERS from linker script 2008-02-21 12:28:29 +01:00
Carsten Schlote 7538c06300 [general] Fixed crash in memory allocator
Fixed a bug in sbrk(). When the new mem_brk value returned by
sbrk_no_zero() returns NULL to indicate 'out of memory', sbrk()
still memset()s innocent memory at address NULL.

For some architectures this memory might be empty, so this never
causes a problem. Anyway on Coldfire I still have my vector table
there. Nuking them isn't really a good idea :-)

Signed-off-by: Carsten Schlote <c.schlote@konzeptpark.de>
2008-02-20 20:41:57 +01:00
Sascha Hauer fa052abb64 add missing include 2008-02-20 19:07:47 +01:00
Sascha Hauer 0dd247729a Merge branch 'master' of ssh://sha@octopus/home/git/projects/u-boot-v2 2008-02-20 19:05:52 +01:00
Sascha Hauer 9beb36884b [ARM] Remove ARCH_NUMBERs from config.h and put them into Kconfig 2008-02-20 19:03:24 +01:00
Sascha Hauer f95ec8a32d - Add functions to register image handlers for booting uImages 2008-02-20 19:01:54 +01:00
Sascha Hauer e912912a48 Merge branch 'master' of ssh://sha@octopus/home/git/projects/u-boot-v2 2008-02-20 18:06:20 +01:00
Sascha Hauer e94d8d3a89 Merge branch 'master' of ssh://sha@octopus/home/git/projects/u-boot-v2 2008-02-20 17:52:58 +01:00
Sascha Hauer e61db09454 Merge git://www.denx.de/git/u-boot-v2 2008-02-20 17:52:15 +01:00
Sascha Hauer f4c9b1265b Merge branch 'master' of ssh://sha@octopus/home/git/projects/u-boot-v2 2008-02-20 17:49:41 +01:00
Sascha Hauer c33f76cca2 Merge branch 'master' of ssh://sha@octopus/home/git/projects/u-boot-v2 2008-02-20 17:49:20 +01:00
Sascha Hauer cbc29ed55a Merge branch 'master' of ssh://sha@octopus/home/git/projects/u-boot-v2 2008-02-20 17:48:58 +01:00
Sascha Hauer 8d4e06d3d5 [mpc5200 fec] revert to some old version (somehow my play version got into the
repository). Runtime tested on pcm030
2008-02-20 17:48:31 +01:00
Marc Kleine-Budde 7adebe0c95 Merge commit 'pengutronix/master' 2008-02-20 17:44:26 +01:00
Sascha Hauer 9bd5e87192 [netx]: Fix function prototype for do_loadxc 2008-02-20 17:36:41 +01:00
Carsten Schlote b8993a8bb8 [general] Added more outputs to partition.c
Added more outputs to partition code.

Signed-off-by: Carsten Schlote <schlote@vahanus.net>
2008-02-20 17:36:41 +01:00
Carsten Schlote 05de3be9e4 [general] Fixed crash in fs.h, when called with fsdrv.create == NULL
When a nor0 devices has no partitions assigned, then a call to
open() to create a file will jump with a NULL fct ptr.

Much more cheching code is missing and pointers to function are
jumped without any NULL ptr check. This must be fixed as well later.

Signed-off-by: Carsten Schlote <c.schlote@konzeptpark.de>
2008-02-20 17:36:41 +01:00
Carsten Schlote 32a094cac5 [general] Hide doxygen HTML output
Trivial.
2008-02-20 17:36:41 +01:00
Carsten Schlote 6a8ef6a4f3 [general] Fixed remaining defines for envfs in big-endian mode
Trivial - completed macros
2008-02-20 17:36:41 +01:00
Carsten Schlote 8c29ed08f2 [general] Fixed endian handling for envfs
Fixed the handling of data similiar as found in cramfs.

This fixes the problem with an unreadable defaultenv on big-endian
targets.

The endian macors are now loaded from /asm/common.h by default.

Signed-off-by: Carsten Schlote <c.schlote@konzeptpark.de>
2008-02-20 17:36:41 +01:00
Carsten Schlote 630dcb6fd5 [general] Added docs and htmldocs target to master makefile
Added two targets to the toplevel Makefile : docs and htmdocs.

Further output formats might be added later (PDF, TeX, ...) and
wrapped by the docs target.

Signed-off-by: Carsten Schlote <c.schlote@konzeptpark.de>
2008-02-20 17:36:41 +01:00