summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Subject: [PATCH] [general] Fixed constant strings in data section issueSascha Hauer2008-04-041-1/+1
| | | | | | | | For practical reasons I changed all string literals assumed to be constant to reside in .rodata subsection at end of .text section. Signed-off-by: Carsten Schlote <schlote@vahanus.net> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* fix dirname if called with something like "/path"Sascha Hauer2008-03-111-0/+2
|
* add stringlist function. They can be used to build a listSascha Hauer2008-03-112-0/+46
| | | | | of strings. For now mainly useful to print the resulting list in columns which is used in tab completion and ls.
* add glob to MakefileSascha Hauer2008-03-091-0/+2
|
* add globbing supportSascha Hauer2008-03-092-0/+699
|
* readline: Fix wrong screen reprinting. Try:Sascha Hauer2008-03-021-3/+3
| | | | abcde<BACKSPACE><HOME><DEL>
* readline: Fix a bug when tab completion is used in the middleSascha Hauer2008-03-021-4/+12
| | | | of the line.
* implement TAB completionSascha Hauer2008-03-012-9/+24
|
* make dirname/basename behave more standard conformSascha Hauer2008-03-011-0/+10
|
* improved codingstyleMarc Kleine-Budde2007-11-291-3/+3
| | | | | | This patch improved the codingstyle Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [sparse] use NULL for nullpointerMarc Kleine-Budde2007-11-291-1/+1
| | | | | | | fixes: lib/parameter.c:108:19: warning: Using plain integer as NULL pointer Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* get_device_by_path now obeys cwdMarc Kleine-Budde2007-11-191-3/+10
| | | | | | | With this patch get_device_by_path obeys the cwd, which allows a more intuitive devinfo command. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* fixed doku renamed ip -> ipaddrMarc Kleine-Budde2007-11-121-1/+1
| | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* adding various dokuJuergen Beisert2007-11-081-1/+33
|
* shell info addedJuergen Beisert2007-10-191-0/+16
|
* export symbols get_device_by_path and dev_add_childsascha2007-10-191-0/+2
|
* Fix documentation for addpart/delpart/devinfo. These commandssascha2007-10-191-1/+1
| | | | now take a device file, not a device id.
* compile fixsascha2007-10-191-3/+5
|
* - Implement tree structure for devicessascha2007-10-191-46/+60
| | | | | | | - Use device tree structure to implement partitions - Let devinfo print a nice tree - Introduce 'fixed' partitions which are not removable - Fix mount: It was not possible to mount on a relative path.
* remove putc referencesJuergen Beisert2007-10-171-3/+3
|
* implement delete key in readlinesascha2007-10-161-0/+12
|
* let erase and protect functions return int instead of size_t. TheySascha Hauer2007-10-111-2/+2
| | | | only return succes/error but no size.
* replace 8 spaces with tabsSascha Hauer2007-10-113-106/+106
|
* Use Linux kernel list for drivers and devices instead of handmadeSascha Hauer2007-10-111-137/+57
| | | | list.
* parse_area_spec():Sascha Hauer2007-10-091-15/+25
| | | | | | | | - No need to handle strings where only size or end is given. This form is confusing and does not give real benefit. - Fix start-end form. The calculation was wrong. - Return an error if end < start. - Add function description.
* export symbolsSascha Hauer2007-10-079-25/+32
|
* export functionsSascha Hauer2007-10-042-3/+24
|
* export functionsSascha Hauer2007-10-041-0/+5
|
* Export symbols printf and the ones needed for getoptSascha Hauer2007-10-011-0/+8
|
* add safe_strncpy() functionSascha Hauer2007-09-281-0/+8
|
* declare lots of functions staticSascha Hauer2007-09-282-6/+4
|
* implement mkdir -pSascha Hauer2007-09-272-0/+55
|
* disable crc32 complement version for nowSascha Hauer2007-09-271-3/+2
|
* print_size() -> size_human_readable()Sascha Hauer2007-09-261-6/+11
| | | | return a pointer to a human readable string rather than printingit directly
* add header for libgen.c, add missing includesSascha Hauer2007-09-251-0/+22
|
* add debug for xmalloc and xreallocSascha Hauer2007-09-241-0/+4
|
* add recursive_action() and concat_subpath_file() from busyboxSascha Hauer2007-09-243-0/+146
|
* move dirname() and basename() to lib/libgen.c and add header fileSascha Hauer2007-09-241-0/+26
|
* remove u-boot command paramter flagSascha Hauer2007-09-241-1/+1
|
* add libbb functionsSascha Hauer2007-09-242-0/+88
|
* add kernel kfifo implementationSascha Hauer2007-09-212-0/+167
|
* move mkimage.c to scripts, make it compileSascha Hauer2007-09-211-22/+13
|
* - putc is now putchar for better standard conformitySascha Hauer2007-09-212-3/+3
| | | | - make printf return int
* implement flash protectionSascha Hauer2007-07-161-0/+8
|
* implement memmap().Sascha Hauer2007-07-151-0/+22
| | | | | | With this function we can get a pointer to directly memory mapped devices like nor flash or RAM. Useful for bootm where we save one memcopy when the image is mappable
* fix silly bug in unregister_device(). When unregistering devicesSascha Hauer2007-07-141-2/+2
| | | | we have to compare the device pointers and not the names.
* check for digit in parse_are_spec()Sascha Hauer2007-07-141-0/+4
|
* make printf position independentSascha Hauer2007-07-121-3/+4
|
* use debug() macroSascha Hauer2007-07-051-5/+9
|
* add gunzipSascha Hauer2007-07-052-1/+86
|