* [Buildroot] svn commit: trunk/buildroot/target/cramfs
@ 2006-12-10 13:42 aldot at uclibc.org
0 siblings, 0 replies; 3+ messages in thread
From: aldot at uclibc.org @ 2006-12-10 13:42 UTC (permalink / raw)
To: buildroot
Author: aldot
Date: 2006-12-10 05:42:16 -0800 (Sun, 10 Dec 2006)
New Revision: 16834
Log:
- cosmetic vi syntax highlighting improvement
Modified:
trunk/buildroot/target/cramfs/cramfs.mk
Changeset:
Modified: trunk/buildroot/target/cramfs/cramfs.mk
===================================================================
--- trunk/buildroot/target/cramfs/cramfs.mk 2006-12-10 13:40:16 UTC (rev 16833)
+++ trunk/buildroot/target/cramfs/cramfs.mk 2006-12-10 13:42:16 UTC (rev 16834)
@@ -6,7 +6,7 @@
CRAMFS_DIR=$(BUILD_DIR)/cramfs-1.1
CRAMFS_SOURCE=cramfs-1.1.tar.gz
ifeq ($(strip $(subst ",,$(BR2_SOURCEFORGE_MIRROR))),unc)
-# " stupid syntax highlighting does not like unmatched quote from above line
+# "))
# UNC does not seem to have cramfs
CRAMFS_SITE=http://internap.dl.sourceforge.net/sourceforge/cramfs
else
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/target/cramfs
@ 2006-12-22 12:22 aldot at uclibc.org
0 siblings, 0 replies; 3+ messages in thread
From: aldot at uclibc.org @ 2006-12-22 12:22 UTC (permalink / raw)
To: buildroot
Author: aldot
Date: 2006-12-22 04:22:15 -0800 (Fri, 22 Dec 2006)
New Revision: 17049
Log:
- patch from AndyI to make it behave on Cygwin. Closes #1127. Thanks!
Added:
trunk/buildroot/target/cramfs/cramfs-03-cygwin_IO.patch
Changeset:
Added: trunk/buildroot/target/cramfs/cramfs-03-cygwin_IO.patch
===================================================================
--- trunk/buildroot/target/cramfs/cramfs-03-cygwin_IO.patch 2006-12-22 12:11:06 UTC (rev 17048)
+++ trunk/buildroot/target/cramfs/cramfs-03-cygwin_IO.patch 2006-12-22 12:22:15 UTC (rev 17049)
@@ -0,0 +1,13 @@
+--- cramfs-1.1/cramfsck.c.orig 2006-12-22 22:16:59.328125000 +1100
++++ cramfs-1.1/cramfsck.c 2006-12-19 01:02:05.531250000 +1100
+@@ -56,6 +56,10 @@
+ #include "linux/cramfs_fs.h"
+ #include <zlib.h>
+
++#ifdef __CYGWIN__
++#define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0)
++#endif /* __CYGWIN__ */
++
+ #define BLKGETSIZE _IO(0x12,96) /* return device size /512 (long *arg) */
+
+ /* Exit codes used by fsck-type programs */
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] svn commit: trunk/buildroot/target/cramfs
@ 2008-12-02 9:15 jacmet at uclibc.org
0 siblings, 0 replies; 3+ messages in thread
From: jacmet at uclibc.org @ 2008-12-02 9:15 UTC (permalink / raw)
To: buildroot
Author: jacmet
Date: 2008-12-02 01:15:08 -0800 (Tue, 02 Dec 2008)
New Revision: 24228
Log:
target/cramfs/cramfs.mk: Fix device table not being passed to mkcramfs
While mkcramfs was being patched to support a device table, the target device table was not being passed to the mkcramfs options. This patch fixes that
Signed-off-by: Jared Holzman <j.holzman@genesysdesign.com.au>
Modified:
trunk/buildroot/target/cramfs/cramfs.mk
Changeset:
Modified: trunk/buildroot/target/cramfs/cramfs.mk
===================================================================
--- trunk/buildroot/target/cramfs/cramfs.mk 2008-12-02 06:38:26 UTC (rev 24227)
+++ trunk/buildroot/target/cramfs/cramfs.mk 2008-12-02 09:15:08 UTC (rev 24228)
@@ -40,11 +40,15 @@
#
#############################################################
ifeq ($(BR2_ENDIAN),"BIG")
-CRAMFS_ENDIANNESS=-b
+CRAMFS_OPTS=-b
else
-CRAMFS_ENDIANNESS=-l
+CRAMFS_OPTS=-l
endif
+ifneq ($(TARGET_DEVICE_TABLE),)
+CRAMFS_OPTS += -D $(TARGET_DEVICE_TABLE)
+endif
+
CRAMFS_TARGET=$(IMAGE).cramfs
cramfsroot: host-fakeroot makedevs cramfs
@@ -68,7 +72,7 @@
>> $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(CRAMFS_TARGET))
endif
# Use fakeroot so mkcramfs believes the previous fakery
- echo "$(CRAMFS_DIR)/mkcramfs -q $(CRAMFS_ENDIANNESS) " \
+ echo "$(CRAMFS_DIR)/mkcramfs -q $(CRAMFS_OPTS) " \
"$(TARGET_DIR) $(CRAMFS_TARGET)" >> $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(CRAMFS_TARGET))
chmod a+x $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(CRAMFS_TARGET))
$(STAGING_DIR)/usr/bin/fakeroot -- $(PROJECT_BUILD_DIR)/_fakeroot.$(notdir $(CRAMFS_TARGET))
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-12-02 9:15 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-10 13:42 [Buildroot] svn commit: trunk/buildroot/target/cramfs aldot at uclibc.org
-- strict thread matches above, loose matches on Subject: below --
2006-12-22 12:22 aldot at uclibc.org
2008-12-02 9:15 jacmet at uclibc.org
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox