summaryrefslogtreecommitdiffstats
path: root/include/cramfs
Commit message (Collapse)AuthorAgeFilesLines
* fs: import magic.h from Linux kernelYegor Yefremov2016-02-031-1/+0
| | | | | | | | include/linux/magic.h provides MAGIC numbers for various file systems. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Change byte order detection mechanism to kernel styleSascha Hauer2012-06-281-6/+2
| | | | | | | | | | | | | | | The Linux Kernel defines only one of __LITTLE_ENDIAN and __BIG_ENDIAN. Endianess can then be tested with #ifdef __xx_ENDIAN. Userspace always defined both __LITTLE_ENDIAN and __BIG_ENDIAN and byteorder can then be tested with #if __BYTE_ORDER == __xx_ENDIAN. As we tend to use a lot of Kernel code in barebox we switch to use the kernel way of determing the byte order. As this always causes a lot of confusion add a check to include/common.h to make sure only one of __LITTLE_ENDIAN and __BIG_ENDIAN is defined. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* fix cramfs support broken since zlib updateSascha Hauer2011-12-051-2/+2
| | | | | | | cramfs does not compile since we updated zlib to the kernel version. Fix this by using the kernel version of uncompress.c Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Fix usage of __LITTLE_ENDIAN macro.Krzysztof Halasa2010-12-211-2/+2
| | | | | | | | | | Fix usage of __LITTLE_ENDIAN macro. Both __LITTLE_ENDIAN and __BIG_ENDIAN are always defined by include/linux/byteorder/generic.h, checking for their existence is pointless. Signed-off-by: Krzysztof HaƂasa <khc@pm.waw.pl> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* [cramfs] fix compiler warning about undefined __LITTLE_ENDIANSascha Hauer2008-04-071-2/+2
|
* [general] Fixed endian handling for envfsCarsten Schlote2008-02-191-0/+4
| | | | | | | | | | | 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>
* remove unported includes and driversSascha Hauer2007-09-211-19/+0
|
* Add cramfs support for m68kWolfgang Denk2005-09-251-0/+22
| | | | Patch by Zachary Landau, 21 Feb 2005
* * Patch by Mark Jonas, 08 June 2004:wdenk2004-06-091-36/+0
| | | | | | | | - Make MPC5200 boards evaluate the SVR to print processor name and version in checkcpu() (cpu/mpc5xxx/cpu.c). * Patch by Kai-Uwe Bloem, 06 May 2004: Fix endianess problem in cramfs code
* * Fix problems caused by Robert Schwebel's cramfs patchwdenk2004-01-041-16/+54
| | | | | | | | | | | | * Patch by Scott McNutt, 02 Jan 2004: Add support for the Nios Active Serial Memory Interface (ASMI) on Cyclone devices * Patch by Andrea Marson, 16 Dec 2003: Add support for the PPChameleon ME and HI modules * Patch by Yuli Barcohen, 22 Dec 2003: Add support for Motorola DUET ADS board (MPC87x/88x)
* * Patch by Robert Schwebel, 15 Dec 2003:wdenk2004-01-032-0/+117
add support for cramfs (uses JFFS2 command interface)