source: common/makefile-functions@ 13cc2c6

2.3.x
Last change on this file since 13cc2c6 was 213f81c, checked in by Manuel Canales Esparcia <manuel@…>, 17 years ago

Merged r3464:3466 from trunk.

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