2002-04-26 13:45:55 +02:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# genext2fs to build to target ext2 filesystems
|
|
|
|
#
|
|
|
|
#############################################################
|
2003-01-06 16:30:53 +01:00
|
|
|
GENEXT2_DIR=$(BUILD_DIR)/genext2fs-1.3
|
2002-04-26 13:45:55 +02:00
|
|
|
GENEXT2_SOURCE=genext2fs_1.3.orig.tar.gz
|
|
|
|
GENEXT2_SITE=http://ftp.debian.org/debian/pool/main/g/genext2fs
|
|
|
|
|
|
|
|
$(DL_DIR)/$(GENEXT2_SOURCE):
|
2002-11-21 00:16:10 +01:00
|
|
|
$(WGET) -P $(DL_DIR) $(GENEXT2_SITE)/$(GENEXT2_SOURCE)
|
2002-04-26 13:45:55 +02:00
|
|
|
|
2004-12-27 22:26:16 +01:00
|
|
|
$(GENEXT2_DIR)/.unpacked: $(DL_DIR)/$(GENEXT2_SOURCE)
|
2002-04-26 13:45:55 +02:00
|
|
|
zcat $(DL_DIR)/$(GENEXT2_SOURCE) | tar -C $(BUILD_DIR) -xvf -
|
2003-01-06 16:30:53 +01:00
|
|
|
mv $(GENEXT2_DIR).orig $(GENEXT2_DIR)
|
2005-06-24 10:36:13 +02:00
|
|
|
toolchain/patch-kernel.sh $(GENEXT2_DIR) target/ext2/ genext2fs\*.patch
|
2004-12-27 22:26:16 +01:00
|
|
|
touch $(GENEXT2_DIR)/.unpacked
|
2002-04-26 13:45:55 +02:00
|
|
|
|
2004-12-27 22:26:16 +01:00
|
|
|
$(GENEXT2_DIR)/.configured: $(GENEXT2_DIR)/.unpacked
|
|
|
|
chmod a+x $(GENEXT2_DIR)/configure
|
|
|
|
(cd $(GENEXT2_DIR); rm -rf config.cache; \
|
|
|
|
./configure \
|
|
|
|
--prefix=$(STAGING_DIR) \
|
|
|
|
);
|
|
|
|
touch $(GENEXT2_DIR)/.configured
|
|
|
|
|
|
|
|
$(GENEXT2_DIR)/genext2fs: $(GENEXT2_DIR)/.configured
|
2003-01-20 01:01:58 +01:00
|
|
|
$(MAKE) CFLAGS="-Wall -O2 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE \
|
2003-01-18 23:39:31 +01:00
|
|
|
-D_FILE_OFFSET_BITS=64" -C $(GENEXT2_DIR);
|
2002-04-26 13:45:55 +02:00
|
|
|
touch -c $(GENEXT2_DIR)/genext2fs
|
|
|
|
|
|
|
|
genext2fs: $(GENEXT2_DIR)/genext2fs
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# Build the ext2 root filesystem image
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
|
2005-02-12 05:32:17 +01:00
|
|
|
EXT2_OPTS :=
|
2002-10-23 09:56:20 +02:00
|
|
|
|
2005-02-12 05:32:17 +01:00
|
|
|
ifeq ($(strip $(BR2_TARGET_ROOTFS_EXT2_SQUASH)),y)
|
2005-02-19 00:58:16 +01:00
|
|
|
EXT2_OPTS += -U
|
2005-02-12 05:32:17 +01:00
|
|
|
endif
|
2005-01-23 11:53:06 +01:00
|
|
|
|
2005-02-12 05:32:17 +01:00
|
|
|
ifneq ($(strip $(BR2_TARGET_ROOTFS_EXT2_BLOCKS)),0)
|
2005-01-23 11:53:06 +01:00
|
|
|
EXT2_OPTS += -b $(strip $(BR2_TARGET_ROOTFS_EXT2_BLOCKS))
|
|
|
|
endif
|
|
|
|
|
2005-02-12 05:32:17 +01:00
|
|
|
ifneq ($(strip $(BR2_TARGET_ROOTFS_EXT2_INODES)),0)
|
2005-01-23 11:53:06 +01:00
|
|
|
EXT2_OPTS += -i $(strip $(BR2_TARGET_ROOTFS_EXT2_INODES))
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(strip $(BR2_TARGET_ROOTFS_EXT2_RESBLKS)),0)
|
|
|
|
EXT2_OPTS += -r $(strip $(BR2_TARGET_ROOTFS_EXT2_RESBLKS))
|
|
|
|
endif
|
|
|
|
|
|
|
|
EXT2_BASE := $(subst ",,$(BR2_TARGET_ROOTFS_EXT2_OUTPUT))
|
|
|
|
|
|
|
|
ifeq ($(strip $(BR2_TARGET_ROOTFS_EXT2_GZ)),y)
|
|
|
|
EXT2_TARGET := $(EXT2_BASE).gz
|
|
|
|
else
|
|
|
|
EXT2_TARGET := $(EXT2_BASE)
|
|
|
|
endif
|
|
|
|
|
2005-08-08 02:42:49 +02:00
|
|
|
$(EXT2_BASE): host-fakeroot makedevs genext2fs
|
2002-09-17 22:47:49 +02:00
|
|
|
-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
|
2005-01-23 11:53:06 +01:00
|
|
|
@rm -rf $(TARGET_DIR)/usr/man
|
|
|
|
@rm -rf $(TARGET_DIR)/usr/share/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 genext2fs believes the previous fakery
|
2005-02-12 05:32:17 +01:00
|
|
|
ifeq ($(strip $(BR2_TARGET_ROOTFS_EXT2_BLOCKS)),0)
|
|
|
|
GENEXT2_REALSIZE=`LANG=C du -l -s -c -k $(TARGET_DIR) | grep total | sed -e "s/total//"`; \
|
2005-02-17 19:21:20 +01:00
|
|
|
GENEXT2_ADDTOROOTSIZE=`if [ $$GENEXT2_REALSIZE -ge 20000 ] ; then echo 16384; else echo 2400; fi`; \
|
2005-02-12 05:32:17 +01:00
|
|
|
GENEXT2_SIZE=`expr $$GENEXT2_REALSIZE + $$GENEXT2_ADDTOROOTSIZE`; \
|
|
|
|
GENEXT2_ADDTOINODESIZE=`find $(TARGET_DIR) | wc -l`; \
|
|
|
|
GENEXT2_INODES=`expr $$GENEXT2_ADDTOINODESIZE + 400`; \
|
|
|
|
set -x; \
|
2005-08-04 08:32:52 +02:00
|
|
|
$(STAGING_DIR)/usr/bin/fakeroot \
|
|
|
|
-i $(STAGING_DIR)/fakeroot.env \
|
|
|
|
-s $(STAGING_DIR)/fakeroot.env -- \
|
2005-02-12 05:32:17 +01:00
|
|
|
$(GENEXT2_DIR)/genext2fs \
|
|
|
|
-b $$GENEXT2_SIZE \
|
|
|
|
-i $$GENEXT2_INODES \
|
|
|
|
-d $(TARGET_DIR) \
|
|
|
|
$(EXT2_OPTS) $(EXT2_BASE)
|
|
|
|
else
|
2005-08-04 08:32:52 +02:00
|
|
|
$(STAGING_DIR)/usr/bin/fakeroot \
|
|
|
|
-i $(STAGING_DIR)/fakeroot.env \
|
|
|
|
-s $(STAGING_DIR)/fakeroot.env -- \
|
2005-01-23 11:53:06 +01:00
|
|
|
$(GENEXT2_DIR)/genext2fs \
|
|
|
|
-d $(TARGET_DIR) \
|
|
|
|
$(EXT2_OPTS) \
|
|
|
|
$(EXT2_BASE)
|
2005-02-12 05:32:17 +01:00
|
|
|
endif
|
|
|
|
|
2005-01-23 11:53:06 +01:00
|
|
|
$(EXT2_BASE).gz: $(EXT2_BASE)
|
|
|
|
@gzip --best -fv $(EXT2_BASE)
|
2005-02-12 05:32:17 +01:00
|
|
|
|
2005-01-23 11:53:06 +01:00
|
|
|
EXT2_COPYTO := $(strip $(subst ",,$(BR2_TARGET_ROOTFS_EXT2_COPYTO)))
|
2005-02-12 05:32:17 +01:00
|
|
|
|
2005-01-23 11:53:06 +01:00
|
|
|
ext2root: $(EXT2_TARGET)
|
|
|
|
@ls -l $(EXT2_TARGET)
|
|
|
|
ifneq ($(EXT2_COPYTO),)
|
|
|
|
@cp -f $(EXT2_TARGET) $(EXT2_COPYTO)
|
2005-02-12 05:32:17 +01:00
|
|
|
endif
|
2002-04-26 13:45:55 +02:00
|
|
|
|
|
|
|
ext2root-source: $(DL_DIR)/$(GENEXT2_SOURCE)
|
|
|
|
|
|
|
|
ext2root-clean:
|
2003-01-17 09:03:59 +01:00
|
|
|
-$(MAKE) -C $(GENEXT2_DIR) clean
|
2002-04-26 13:45:55 +02:00
|
|
|
|
|
|
|
ext2root-dirclean:
|
|
|
|
rm -rf $(GENEXT2_DIR)
|
|
|
|
|
2005-02-10 04:06:39 +01:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# Toplevel Makefile options
|
|
|
|
#
|
|
|
|
#############################################################
|
|
|
|
ifeq ($(strip $(BR2_TARGET_ROOTFS_EXT2)),y)
|
|
|
|
TARGETS+=ext2root
|
|
|
|
endif
|