- Apr 28, 2010
-
-
Stefano Babic authored
ubifsmount is not working and causes an access with a pointer set to zero because the ubifs_fs_type is not initialized correctly. Signed-off-by:
Stefano Babic <sbabic@denx.de> Signed-off-by:
Stefan Roese <sr@denx.de>
-
- Dec 21, 2009
-
-
Wolfgang Wegner authored
Prototype for gunzip/zunzip was only in lib_generic/gunzip.c and thus repeated in every file using it. This patch moves the prototypes to common.h and removes all prototypes distributed anywhere else. Signed-off-by:
Wolfgang Wegner <w.wegner@astro-kom.de>
-
- Dec 08, 2009
-
-
Heiko Schocher authored
There is more and more usage of printing 64bit values, so enable this feature generally, and delete the CONFIG_SYS_64BIT_VSPRINTF and CONFIG_SYS_64BIT_STRTOUL defines. Signed-off-by:
Heiko Schocher <hs@denx.de>
-
- Oct 03, 2009
-
-
Peter Tyser authored
Add #ifdefs where necessary to not perform relocation fixups. This allows boards/architectures which support relocation to trim a decent chunk of code. Note that this patch doesn't add #ifdefs to architecture-specific code which does not support relocation. Signed-off-by:
Peter Tyser <ptyser@xes-inc.com>
-
- Sep 28, 2009
-
-
Simon Kagstrom authored
Files in directories which are symlinked to were not dereferenced correctly in last commit. E.g., with a symlink /boot/lnk -> /boot/real_dir loading /boot/lnk/uImage will fail. This patch fixes that by simply seeing to it that the target base directory has a slash after it. Signed-off-by:
Simon Kagstrom <simon.kagstrom@netinsight.net> Signed-off-by:
Stefan Roese <sr@denx.de>
-
- Sep 23, 2009
-
-
Simon Kagstrom authored
This patch adds support for resolving symlinks to directories as well as relative symlinks. Symlinks are now always resolved during file lookup, so the load stage no longer needs to special-case them. Signed-off-by:
Simon Kagstrom <simon.kagstrom@netinsight.net> Signed-off-by:
Stefan Roese <sr@denx.de>
-
- Sep 15, 2009
-
-
Simon Kagstrom authored
__set_bit and __clear_bit are defined in ubifs.h as well as in asm/include/bitops.h for some architectures. This patch moves the generic implementation to include/linux/bitops.h and uses that unless it's defined by the architecture. Signed-off-by:
Simon Kagstrom <simon.kagstrom@netinsight.net>
-
- Jun 09, 2009
-
-
Daniel Mack authored
In do_readpage(), don't free 'dn' if its allocation failed. Signed-off-by:
Daniel Mack <daniel@caiaq.de>
-
- Apr 30, 2009
-
-
Ricardo Ribalda Delgado authored
Blocks compressed with zlib dont have the full gzip header. Without this patch, block compressed with zlib cannot be readed! Signed-off-by:
Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
-
- Apr 27, 2009
-
-
Ricardo Ribalda Delgado authored
If the memory used to copy the link_make is "dirty" the string wont be ended with NULL, throwing out multiple memory bugs. Signed-off-by:
Ricardo Ribalda Delgado <ricardo.ribalda@uam.es> Acked-by:
Stefan Roese <sr@denx.de>
-
Stefan Roese authored
I missed removing this file while implementing the UBIFS support. It's not referenced at all, so let's remove it. Thanks to Artem Bityutskiy for spotting. Signed-off-by:
Stefan Roese <sr@denx.de>
-
Adrian Hunter authored
UBIFS did not recovery in a situation in which it could have. The relevant function assumed there could not be more nodes in an eraseblock after a corrupted node, but in fact the last (NAND) page written might contain anything. The correct approach is to check for empty space (0xFF bytes) from then on. Signed-off-by:
Adrian Hunter <adrian.hunter@nokia.com> Signed-off-by:
Stefan Roese <sr@denx.de>
-
- Apr 04, 2009
-
-
Wolfgang Denk authored
-
Artem Bityutskiy authored
Now UBIFS is supported by u-boot. If we ever decide to change the media format, then people will have to upgrade their u-boots to mount new format images. However, very often it is possible to preserve R/O forward-compatibility, even though the write forward-compatibility is not preserved. This patch introduces a new super-block field which stores the R/O compatibility version. Signed-off-by:
Artem Bityutskiy <Artem.Bityutskiy@nokia.com> Acked-by:
Adrian Hunter <Adrian.Hunter@nokia.com> Signed-off-by:
Stefan Roese <sr@denx.de>
-
- Mar 20, 2009
-
-
Michael Lawnick authored
On systems where U-Boot is linked to another address than it really lays (e.g. backup image), calls via function pointers must be fixed with a '+= gd->reloc_off'. This was not done for none_compr in ubifs_compressors_init() what leads to system crash on ubifsmount command. Signed-off-by:
Michael Lawnick <ml.lawnick@gmx.de> Acked-by:
Stefan Roese <sr@denx.de>
-
Stefan Roese authored
The U-Boot UBIFS implementation is largely a direct copy from the current Linux version (2.6.29-rc6). As already done in the UBI version we have an "abstraction layer" to redefine or remove some OS calls (e.g. mutex_lock() ...). This makes it possible to use the original Linux code with very little changes. And by this we can better update to later Linux versions. I removed some of the Linux features that are not used in the U-Boot version (e.g. garbage-collection, write support). Signed-off-by:
Stefan Roese <sr@denx.de> CC: Artem Bityutskiy <dedekind@infradead.org> CC: Adrian Hunter <ext-Adrian.Hunter@nokia.com>
-