summaryrefslogtreecommitdiffstats
path: root/target/cloop/cloop.mk
blob: 91a9af2f255c1fcb95867f2b21c295124084c723 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#############################################################
#
# mkcloop to build to target cloop filesystems
#
#############################################################
### /cloop_2.01.5.orig.tar.gz
CLOOP_VERSION=2.01
CLOOP_DIR=$(BUILD_DIR)/cloop-$(CLOOP_VERSION)
### CLOOP_SOURCE=cloop_$(CLOOP_VERSION).5.orig.tar.gz
### CLOOP_SITE=http://ftp.debian.org/debian/pool/main/c/cloop
# http://ftp.debian.org/debian/pool/main/c/cloop/cloop_2.01.5-4.diff.gz
### CLOOP_PATCH1:=cloop_2.01.5-4.diff.gz
### CLOOP_PATCH1_URL:=$(CLOOP_SITE)
# http://developer.linuxtag.net/knoppix/sources/cloop_2.01-5.tar.gz
CLOOP_SOURCE=cloop_$(CLOOP_VERSION)-5.tar.gz
CLOOP_SITE=http://developer.linuxtag.net/knoppix/sources

CLOOP_TARGET:=$(IMAGE).cloop
### Note: not used yet! ck
### $(DL_DIR)/$(CLOOP_PATCH1):
###	$(WGET) -P $(DL_DIR) $(CLOOP_PATCH1_URL)/$(CLOOP_PATCH1)

$(DL_DIR)/$(CLOOP_SOURCE):
	 $(WGET) -P $(DL_DIR) $(CLOOP_SITE)/$(CLOOP_SOURCE)

$(CLOOP_DIR)/.unpacked: $(DL_DIR)/$(CLOOP_SOURCE) ### $(DL_DIR)/$(CLOOP_PATCH1)
	$(ZCAT) $(DL_DIR)/$(CLOOP_SOURCE) | tar -C $(BUILD_DIR) -xvf -
	touch $@
###		$(ZCAT) $(DL_DIR)/$(CLOOP_PATCH1) | patch -p1 -d $(CLOOP_DIR)
###		toolchain/patch-kernel.sh $(CLOOP_DIR) target/cloop/ cloop\*.patch

$(CLOOP_DIR)/create_compressed_fs: $(CLOOP_DIR)/.unpacked
	$(MAKE) CFLAGS="-Wall -O2 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DUSE_ERROR_SILENT" -C $(CLOOP_DIR) \
		APPSONLY=yes -j1

cloop: $(CLOOP_DIR)/create_compressed_fs

cloop-source: $(DL_DIR)/$(CLOOP_SOURCE)

cloop-clean:
	-$(MAKE) -C $(CLOOP_DIR) clean

cloop-dirclean:
	rm -rf $(CLOOP_DIR)

#############################################################
#
# Build the cloop.o kernel module for the HOST
#
#############################################################

$(CLOOP_DIR)/cloop.o: $(CLOOP_DIR)/create_compressed_fs
	$(MAKE) CFLAGS="-Wall -O2 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -DUSE_ERROR_SILENT" -C $(CLOOP_DIR) -j1

cloop-module: $(CLOOP_DIR)/cloop.o

#############################################################
#
# Build the cloop root filesystem image
#
# Note: we need additionall host tools:
# required:
# mkisofs 2.01a34-unofficial-iconv from http://users.utu.fi/jahhein/mkisofs/
# optional:
# symlinks: scan/change symbolic links - v1.2 - by Mark Lord
#           from ftp://ftp.ibiblio.org/pub/Linux/utils/file/
#
#############################################################

### Note: target/default/device_table.txt is not yet supported! ck
# the quickfix is to use sudo to mount the previous created cramroot
check-tools:
	which mkisofs
	- which symlinks

clooproot: cloop check-tools $(IMAGE).cramfs ### cramfsroot
	-@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true;
ifneq ($(BR2_HAVE_MANPAGES),y)
	@rm -rf $(TARGET_DIR)/usr/man
	@rm -rf $(TARGET_DIR)/usr/share/man
endif
ifneq ($(BR2_HAVE_INFOPAGES),y)
	@rm -rf $(TARGET_DIR)/usr/info
endif
	@rmdir -p --ignore-fail-on-non-empty $(TARGET_DIR)/usr/share
	### $(CLOOP_DIR)/create_compressed_fs -q -D target/default/device_table.txt $(TARGET_DIR) $(CLOOP_TARGET)
	## mkisofs -r $(TARGET_DIR) | $(CLOOP_DIR)/create_compressed_fs - 65536 > $(CLOOP_TARGET)
	sudo /sbin/losetup -d /dev/loop1
	sudo /sbin/losetup /dev/loop1 $(IMAGE).cramfs
	sudo mkdir -p /mnt/compressed
	sudo mount -o ro -t cramfs /dev/loop1 /mnt/compressed
	mkisofs -r /mnt/compressed | $(CLOOP_DIR)/create_compressed_fs - 65536 > $(CLOOP_TARGET)
	- symlinks -r /mnt/compressed
	sudo umount /mnt/compressed
	@echo "Mounting a compressed image:"
	@echo " sudo mkdir -p /mnt/compressed"
	@echo " sudo /sbin/insmod cloop"
	@echo " sudo /sbin/losetup /dev/cloop1 $(CLOOP_TARGET)"
	@echo " sudo mount -o ro -t iso9660 /dev/cloop1 /mnt/compressed"

clooproot-source: cloop-source

clooproot-clean:
	-$(MAKE) -C $(CLOOP_DIR) clean

clooproot-dirclean:
	rm -rf $(CLOOP_DIR)

#############################################################
# symlinks -r /mnt/compressed
# dangling: /mnt/compressed/dev/log -> /tmp/log
# other_fs: /mnt/compressed/etc/mtab -> /proc/mounts
# other_fs: /mnt/compressed/var/lib/pcmcia -> /tmp
# other_fs: /mnt/compressed/var/lock -> /tmp
# other_fs: /mnt/compressed/var/log -> /tmp
# other_fs: /mnt/compressed/var/pcmcia -> /tmp
# other_fs: /mnt/compressed/var/run -> /tmp
# other_fs: /mnt/compressed/var/spool -> /tmp
# other_fs: /mnt/compressed/var/tmp -> /tmp
#
# ls -lrsS root_fs_*.*
# 1296 -rw-r--r--    1 claus users 1325478 Mar 13 16:52 root_fs_powerpc.cloop
# 1448 -rw-r--r--    1 claus users 1482752 Mar 13 16:52 root_fs_powerpc.cramfs
# 1840 -rw-r--r--    1 claus users 1883408 Mar 13 13:14 root_fs_powerpc.jffs2
#############################################################