source: common/makefile-functions@ 93346ee

2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since 93346ee was 93346ee, checked in by Manuel Canales Esparcia <manuel@…>, 17 years ago

LFS: Added support for installed files logs.
Should be ported to other books when verified that works as expected.

  • Property mode set to 100644
File size: 8.0 KB
Line 
1
2# $Id$
3
4BOLD = "[0;1m"
5RED = "[1;31m"
6GREEN = "[0;32m"
7ORANGE = "[0;33m"
8BLUE = "[1;34m"
9WHITE = "[00m"
10YELLOW = "[1;33m"
11
12OFF = "[0m"
13REVERSE = "[7m"
14
15tab_ = " "
16nl_ = ""
17
18#==== BUILD MESSAGES ===
19
20define echo_PHASE
21 @echo $(BOLD)--------------------------------------------------------------------------------
22 @echo $(tab_)$(tab_)Executing $(BLUE)$(1)$(WHITE) scripts
23 @echo $(BOLD)--------------------------------------------------------------------------------
24 @echo $(WHITE)
25endef
26
27define sh_echo_PHASE
28 echo $(BOLD)--------------------------------------------------------------------------------;\
29 echo $(tab_)$(tab_)Executing $(BLUE)$(1)$(WHITE) scripts; \
30 echo $(BOLD)--------------------------------------------------------------------------------echo $(WHITE)
31endef
32
33define echo_SU_request
34 @echo $(BOLD)--------------------------------------------------------------------------------
35 @echo $(BLUE)$@
36 @echo $(WHITE)ROOT privilege is required to perform a number commands
37 @echo sudo will request a password to all high privilege cmds to execute correctly
38endef
39
40define echo_SULUSER_request
41 @echo $(BOLD)--------------------------------------------------------------------------------
42 @echo $(BOLD)$(BLUE)$@
43 @echo $(WHITE)You are going to log into the user account $(BOLD)$(YELLOW)$(LUSER)$(OFF)
44 @echo sudo requires a password
45endef
46
47define echo_CHROOT_request
48 @echo $(BOLD)--------------------------------------------------------------------------------
49 @echo $(BOLD)$(BLUE)$@
50 @echo $(WHITE)You are going to CHROOT into $(MOUNT_PT) $(BOLD)$(YELLOW)$(LUSER)$(OFF)
51 @echo a password is required
52endef
53
54define echo_message
55 @echo $(BOLD)--------------------------------------------------------------------------------
56 @echo $(BOLD)$(1) target $(BLUE)$@$(BOLD)$(WHITE)
57endef
58
59#=======================
60
61
62#=== BUILD FUNCTIONS ===
63
64define remove_existing_dirs
65 @PKG_PATH=`ls -t $(SRCSDIR)/$(1) | head -n1` && \
66 ROOT=`tar -tf $$PKG_PATH | head -n1 | sed -e 's@^./@@;s@/.*@@'` && \
67 rm -rf $(SRCSDIR)/$$ROOT && \
68 rm -rf $(SRCSDIR)/$${ROOT%-*}-build
69endef
70
71define remove_existing_dirs2
72 @PKG_PATH=`ls -t $(SRC)/$(1) | head -n1` && \
73 ROOT=`tar -tf $$PKG_PATH | head -n1 | sed -e 's@^./@@;s@/.*@@'` && \
74 rm -rf $(SRC)/$$ROOT && \
75 rm -rf $(SRC)/$${ROOT%-*}-build
76endef
77
78#==#
79
80define unpack
81 @cd $(SRCSDIR) && \
82 tar -xvf `ls -t $(1) | head -n1` > $(PKG_LST)
83endef
84
85define unpack2
86 @cd $(SRC) && \
87 tar -xvf `ls -t $(1) | head -n1` > $(PKG_LST)
88endef
89
90#==#
91
92define get_pkg_root
93 @ROOT=`head -n1 $(SRCSDIR)/$(PKG_LST) | sed 's@^./@@;s@/.*@@'` && \
94 if [ "$(1)" != "nouser" ]; then \
95 echo "export PKGDIR=$(SRCSDIR)/$$ROOT" > envars; \
96 chown -R $(LUSER) $(SRCSDIR)/$$ROOT; \
97 else \
98 echo "export PKGDIR=$(crSRCSDIR)/$$ROOT" > envars; \
99 fi;
100endef
101
102define get_pkg_root2
103 @ROOT=`head -n1 $(SRC)/$(PKG_LST) | sed 's@^./@@;s@/.*@@'` && \
104 echo "export PKGDIR=$(SRC)/$$ROOT" > envars
105endef
106
107define get_pkg_root_LUSER
108 @ROOT=`head -n1 $(SRCSDIR)/$(PKG_LST) | sed 's@^./@@;s@/.*@@'` && \
109 echo "export PKGDIR=$(SRCSDIR)/$$ROOT" > envars
110endef
111
112#==#
113
114define touch_timestamp
115 @touch $(SRC)/timestamp-marker && sleep 1
116endef
117
118define log_new_files
119 @find / -xdev ! -path "/$(SCRIPT_ROOT)/*" ! -path "/proc/*" \
120 ! -path "/tmp/*" ! -path "/dev/*" ! -path "$(SRC)/*" \
121 -newer $(SRC)/timestamp-marker -not -type d \
122 -fprintf $(crFILELOGDIR)/$(1) "%p\t%s\t%u:%g\t%m\t%l\n" || true
123endef
124
125#==@
126
127define remove_build_dirs
128 @ROOT=`head -n1 $(SRCSDIR)/$(PKG_LST) | sed 's@^./@@;s@/.*@@'` && \
129 rm -rf $(SRCSDIR)/$$ROOT && \
130 rm -rf $(SRCSDIR)/$(1)-build
131endef
132
133define remove_build_dirs2
134 @ROOT=`head -n1 $(SRC)/$(PKG_LST) | sed 's@^./@@;s@/.*@@'` && \
135 rm -rf $(SRC)/$$ROOT && \
136 rm -rf $(SRC)/$(1)-build
137endef
138
139#==#
140
141define housekeeping
142 @touch $@ && \
143 sleep .25 && \
144 echo -e "\n" $(BOLD)Target $(BLUE)$@ $(WHITE)$(BOLD)OK && \
145 echo --------------------------------------------------------------------------------$(WHITE) && \
146 if [ "$(BREAKPOINT)" = "$@" ] ; then \
147 echo $(tab_)$(RED)The build has been stopped at $(BLUE)$@ $(RED)as requested$(WHITE) ; \
148 false ; \
149 fi
150endef
151
152#=======================
153
154
155#==== FINAL MESSAGES ===
156
157define echo_report
158 echo ; \
159 echo $(BOLD) The report file $(BLUE)$(1)$(BOLD) has been created ; \
160 echo ; \
161 echo $(WHITE)Please send the $(BOLD)$(MOUNT_PT)/jhalfs/$(1)$(WHITE) ; \
162 echo file to $(BOLD)manuel@linuxfromscratch.org$(WHITE) ; \
163 echo ; \
164 echo That will help us to keep more accurate SBU and ; \
165 echo disk usage values into the book. Thanks. ; \
166 echo $(BOLD)--------------------------------------------------------------------------------$(WHITE)
167endef
168
169define echo_finished
170 @echo $(BOLD)
171 @echo --------------------------------------------------------------------------------
172 @echo $(BOLD) Finished the build of $(BLUE)$(1)$(BOLD)
173 @echo --------------------------------------------------------------------------------
174 @echo $(tab_)$(tab_)$(RED)W A R N I N G$(BOLD)
175 @echo --------------------------------------------------------------------------------
176 @echo
177 @echo To be able to boot your new system you need to follow
178 @echo the next steps:$(WHITE)
179 @echo
180 @echo $(tab_)- Enter to the chroot using the command found
181 @echo $(tab_)in the section -Entering the Chroot Environment-
182 @echo $(tab_)except if building CLFS with METHOD=boot.
183 @echo
184 @echo $(tab_)- Set a password for the root user.
185 @echo
186 @echo $(tab_)- Edit or create /etc/fstab, /etc/hosts, /etc/sysconfig/clock,
187 @echo $(tab_)/etc/sysconfig/console, /etc/sysconfig/network,
188 @echo $(tab_)/etc/sysconfig//network-devices/ifconfig.eth0/ipv4 and
189 @echo $(tab_)any other configuration file required to suit your needs.
190 @echo
191 @echo $(tab_)- Exit from the chroot.
192 @echo
193 @echo $(tab_)- Set-up the boot loader, except if building CLFS with METHOD=boot.
194 @echo $(tab_)You can set-up the host bootloader or the new boot-loader
195 @echo $(tab_)installed on the new system.
196 @echo $(tab_)If the last, you must to mount the virtual filesystems, re-enter
197 @echo $(tab_)the chroot and be sure that /dev is populated with the
198 @echo $(tab_)required devices before configure the boot-loader. When ready,
199 @echo $(tab_)exit from the chroot and umount the filesystems
200 @echo
201 @echo If you are an experienced LFS user, several of those steps can be
202 @echo skipped or done in a different way. But then, that is something
203 @echo that you already know and there is no need to discuss it here.
204 @echo $(BOLD)
205 @echo --------------------------------------------------------------------------------
206 @echo $(tab_)$(tab_)$(GREEN)Have a nice day $(ORANGE):-\)$(BOLD)
207 @echo --------------------------------------------------------------------------------$(WHITE)
208endef
209
210define echo_boot_finished
211 @echo $(BOLD)
212 @echo --------------------------------------------------------------------------------
213 @echo $(BOLD) Finished building a minimal boot system for $(BLUE)$(1)$(BOLD)
214 @echo --------------------------------------------------------------------------------
215 @echo $(tab_)$(tab_)$(RED)W A R N I N G$(BOLD)
216 @echo --------------------------------------------------------------------------------
217 @echo
218 @echo The build is not complete. Follow the next steps:$(WHITE)
219 @echo
220 @echo $(tab_)- Edit or create $(MOUNT_PT)/etc/fstab
221 @echo $(tab_) and any other configuration file required to suit your needs.
222 @echo $(BOLD)
223 @echo $(BOLD)$(YELLOW)
224 @echo 1.If it is necessary, transfer the newly created partition to the target machine
225 @echo 2.Boot the new partition.
226 @echo 3.Once you are logged in issue the following commands
227 @echo $(tab_) $(BOLD)cd /jhalfs
228 @echo $(tab_) $(BOLD)make makesys
229 @echo The build process should resume. Follow any instructions that appear.
230 @echo --------------------------------------------------------------------------------
231 @echo $(tab_)$(tab_)$(GREEN)Have a nice day $(ORANGE):-\)$(BOLD)
232 @echo --------------------------------------------------------------------------------$(WHITE)
233endef
Note: See TracBrowser for help on using the repository browser.