2003-01-17 05:22:53 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# mkcramfs to build to target cramfs filesystems
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
CRAMFS_DIR=$(BUILD_DIR)/cramfs-1.1
|
|
|
|
CRAMFS_SOURCE=cramfs-1.1.tar.gz
|
2005-07-27 13:16:00 +02:00
|
|
|
ifeq ($(strip $(subst ",,$(BR2_SOURCEFORGE_MIRROR))),unc)
|
|
|
|
# UNC does not seem to have cramfs
|
|
|
|
CRAMFS_SITE=http://internap.dl.sourceforge.net/sourceforge/cramfs
|
|
|
|
else
|
2005-06-09 14:15:00 +02:00
|
|
|
CRAMFS_SITE=http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/cramfs
|
2005-07-27 13:16:00 +02:00
|
|
|
endif
|
2003-01-17 05:22:53 +01:00
|
|
|
|
|
|
|
$(DL_DIR)/$(CRAMFS_SOURCE):
|
|
|
|
$(WGET) -P $(DL_DIR) $(CRAMFS_SITE)/$(CRAMFS_SOURCE)
|
|
|
|
|
2004-10-09 06:15:52 +02:00
|
|
|
$(CRAMFS_DIR): $(DL_DIR)/$(CRAMFS_SOURCE)
|
2003-01-17 05:22:53 +01:00
|
|
|
zcat $(DL_DIR)/$(CRAMFS_SOURCE) | tar -C $(BUILD_DIR) -xvf -
|
2005-06-24 10:36:13 +02:00
|
|
|
toolchain/patch-kernel.sh $(CRAMFS_DIR) target/cramfs/ cramfs\*.patch
|
2003-01-17 05:22:53 +01:00
|
|
|
|
|
|
|
$(CRAMFS_DIR)/mkcramfs: $(CRAMFS_DIR)
|
|
|
|
$(MAKE) CFLAGS="-Wall -O2 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64" -C $(CRAMFS_DIR);
|
|
|
|
touch -c $(CRAMFS_DIR)/mkcramfs
|
|
|
|
|
|
|
|
cramfs: $(CRAMFS_DIR)/mkcramfs
|
|
|
|
|
2003-11-21 04:50:39 +01:00
|
|
|
cramfs-source: $(DL_DIR)/$(CRAMFS_SOURCE)
|
2003-01-17 05:22:53 +01:00
|
|
|
|
|
|
|
cramfs-clean:
|
2003-01-17 09:09:39 +01:00
|
|
|
-$(MAKE) -C $(CRAMFS_DIR) clean
|
2003-01-17 05:22:53 +01:00
|
|
|
|
|
|
|
cramfs-dirclean:
|
|
|
|
rm -rf $(CRAMFS_DIR)
|
|
|
|
|
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# Build the cramfs root filesystem image
|
|
|
|
#
|
|
|
|
#############################################################
|
2005-05-06 02:17:04 +02:00
|
|
|
CRAMFS_ENDIANNESS=-l
|
2005-04-14 09:59:42 +02:00
|
|
|
ifeq ($(strip $(BR2_armeb)),y)
|
2005-05-06 02:17:04 +02:00
|
|
|
CRAMFS_ENDIANNESS=-b
|
2005-04-14 09:59:42 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(strip $(BR2_mips)),y)
|
2005-05-06 02:17:04 +02:00
|
|
|
CRAMFS_ENDIANNESS=-b
|
2005-04-14 09:59:42 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(strip $(BR2_powerpc)),y)
|
2005-05-06 02:17:04 +02:00
|
|
|
CRAMFS_ENDIANNESS=-b
|
2005-04-14 09:59:42 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(strip $(BR2_sh3eb)),y)
|
2005-05-06 02:17:04 +02:00
|
|
|
CRAMFS_ENDIANNESS=-b
|
2005-04-14 09:59:42 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(strip $(BR2_sh4eb)),y)
|
2005-05-06 02:17:04 +02:00
|
|
|
CRAMFS_ENDIANNESS=-b
|
2005-04-14 09:59:42 +02:00
|
|
|
endif
|
|
|
|
ifeq ($(strip $(BR2_sparc)),y)
|
2005-05-06 02:17:04 +02:00
|
|
|
CRAMFS_ENDIANNESS=-b
|
2005-04-14 09:59:42 +02:00
|
|
|
endif
|
2003-01-17 05:22:53 +01:00
|
|
|
|
2005-08-08 09:53:10 +02:00
|
|
|
cramfsroot: host-fakeroot makedevs $(STAGING_DIR)/fakeroot.env cramfs
|
2003-03-13 21:30:07 +01:00
|
|
|
#-@find $(TARGET_DIR)/lib -type f -name \*.so\* | xargs $(STRIP) --strip-unneeded 2>/dev/null || true;
|
2003-01-17 05:22:53 +01:00
|
|
|
-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
|
|
|
|
@rm -rf $(TARGET_DIR)/usr/man
|
|
|
|
@rm -rf $(TARGET_DIR)/usr/info
|
2005-08-08 08:57:43 +02:00
|
|
|
-/sbin/ldconfig -r $(TARGET_DIR) 2>/dev/null
|
2005-08-04 08:32:52 +02:00
|
|
|
# Use fakeroot to pretend all target binaries are owned by root
|
2005-08-08 08:57:43 +02:00
|
|
|
-$(STAGING_DIR)/usr/bin/fakeroot \
|
2005-08-04 08:32:52 +02:00
|
|
|
-i $(STAGING_DIR)/fakeroot.env \
|
|
|
|
-s $(STAGING_DIR)/fakeroot.env -- \
|
|
|
|
chown -R root:root $(TARGET_DIR)
|
|
|
|
# Use fakeroot to pretend to create all needed device nodes
|
|
|
|
$(STAGING_DIR)/usr/bin/fakeroot \
|
|
|
|
-i $(STAGING_DIR)/fakeroot.env \
|
|
|
|
-s $(STAGING_DIR)/fakeroot.env -- \
|
|
|
|
$(STAGING_DIR)/bin/makedevs \
|
|
|
|
-d $(TARGET_DEVICE_TABLE) \
|
|
|
|
$(TARGET_DIR)
|
|
|
|
# Use fakeroot so mkcramfs believes the previous fakery
|
|
|
|
$(STAGING_DIR)/usr/bin/fakeroot \
|
|
|
|
-i $(STAGING_DIR)/fakeroot.env \
|
|
|
|
-s $(STAGING_DIR)/fakeroot.env -- \
|
|
|
|
$(CRAMFS_DIR)/mkcramfs -q $(CRAMFS_ENDIANNESS) \
|
|
|
|
$(TARGET_DIR) $(IMAGE).cramfs
|
2003-01-17 05:22:53 +01:00
|
|
|
|
2003-11-12 10:31:12 +01:00
|
|
|
cramfsroot-source: cramfs-source
|
2003-01-17 05:22:53 +01:00
|
|
|
|
|
|
|
cramfsroot-clean:
|
2003-11-12 10:31:12 +01:00
|
|
|
-$(MAKE) -C $(CRAMFS_DIR) clean
|
2003-01-17 05:22:53 +01:00
|
|
|
|
|
|
|
cramfsroot-dirclean:
|
2003-11-12 10:31:12 +01:00
|
|
|
rm -rf $(CRAMFS_DIR)
|
2003-01-17 05:22:53 +01:00
|
|
|
|
2005-02-10 04:06:39 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# Toplevel Makefile options
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
ifeq ($(strip $(BR2_TARGET_ROOTFS_CRAMFS)),y)
|
|
|
|
TARGETS+=cramfsroot
|
|
|
|
endif
|