source: common/makefile-functions@ 945ccaa

ablfs-more legacy trunk
Last change on this file since 945ccaa was 945ccaa, checked in by Pierre Labastie <pierre@…>, 7 years ago

Merge the new_features branch (manully, thanks to svn)

  • Property mode set to 100644
File size: 8.8 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; \
[7072e1f]30 echo $(BOLD)--------------------------------------------------------------------------------$(WHITE)
[79da297]31endef
32
[045b2dc]33define echo_SU_request
34 @echo $(BOLD)--------------------------------------------------------------------------------
35 @echo $(BLUE)$@
[9af9dfa]36 @echo $(WHITE)ROOT privilege is required to perform a number of commands
37 @echo sudo will request a password in order to execute all high privilege commands
[bb7de70]38endef
[045b2dc]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@/.*@@'` && \
[3abe9d7]67 [ -n "$$ROOT" ] && \
[b533b78]68 if [ -d $(SRCSDIR)/$$ROOT ]; then \
[3abe9d7]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@/.*@@'` && \
[3abe9d7]77 [ -n "$$ROOT" ] && \
78 if [ -d $(SRC)/$$ROOT ]; then \
79 rm -rf $(SRC)/$$ROOT && \
80 rm -rf $(SRC)/$${ROOT%-*}-build; \
81 fi;
[7072e1f]82 @if [ "$(PKGMNGT)" = "y" ] && [ -d $(SRC)/$@ ]; then \
83 rm -rf $(SRC)/$@ && rm -f $(SRC)/*.deb; \
84 fi;
[401f81e]85endef
86
[1f81129]87#==#
[401f81e]88
[1f81129]89define unpack
90 @cd $(SRCSDIR) && \
91 tar -xvf `ls -t $(1) | head -n1` > $(PKG_LST)
[401f81e]92endef
93
[1f81129]94define unpack2
95 @cd $(SRC) && \
96 tar -xvf `ls -t $(1) | head -n1` > $(PKG_LST)
[401f81e]97endef
98
[1f81129]99#==#
100
[401f81e]101define get_pkg_root
102 @ROOT=`head -n1 $(SRCSDIR)/$(PKG_LST) | sed 's@^./@@;s@/.*@@'` && \
103 if [ "$(1)" != "nouser" ]; then \
104 echo "export PKGDIR=$(SRCSDIR)/$$ROOT" > envars; \
105 chown -R $(LUSER) $(SRCSDIR)/$$ROOT; \
106 else \
107 echo "export PKGDIR=$(crSRCSDIR)/$$ROOT" > envars; \
108 fi;
109endef
110
111define get_pkg_root2
112 @ROOT=`head -n1 $(SRC)/$(PKG_LST) | sed 's@^./@@;s@/.*@@'` && \
[7072e1f]113 echo "export PKGDIR=$(SRC)/$$ROOT" > envars; \
114 if [ "$(PKGMNGT)" = "y" ]; then \
115 echo "export PKG_DEST=$(SRC)/$@" >> envars; \
116 echo "source packInstall.sh" >> envars; \
117 echo "export -f packInstall" >> envars; \
[945ccaa]118 echo "export -f wrapInstall" >> envars; \
[7072e1f]119 fi;
[401f81e]120endef
121
[045b2dc]122define get_pkg_root_LUSER
123 @ROOT=`head -n1 $(SRCSDIR)/$(PKG_LST) | sed 's@^./@@;s@/.*@@'` && \
124 echo "export PKGDIR=$(SRCSDIR)/$$ROOT" > envars
125endef
126
[1f81129]127#==#
128
[93346ee]129define touch_timestamp
130 @touch $(SRC)/timestamp-marker && sleep 1
131endef
132
[f546320]133define touch_timestamp_LUSER
[a60ed79]134 @touch $(SRCSDIR)/timestamp-marker && sleep 1
[f546320]135endef
136
[93346ee]137define log_new_files
[6dfed89]138 @find / -xdev ! -path "/$(SCRIPT_ROOT)/*" ! -path "/tmp/*" ! -path "$(SRC)/*" \
[93346ee]139 -newer $(SRC)/timestamp-marker -not -type d \
[c6f33fb]140 -printf "%p\t%s\t%u:%g\t%m\t%l\n" | sort > $(crFILELOGDIR)/$(1)
[93346ee]141endef
142
[f546320]143define log_new_files_LUSER
[a60ed79]144 @find $(BASEDIR) -xdev ! -path "$(BASEDIR)/$(SCRIPT_ROOT)/*" ! -path "$(BASEDIR)/tmp/*" ! -path "$(SRCSDIR)/*" \
145 -newer $(SRCSDIR)/timestamp-marker -not -type d \
[f546320]146 -printf "%p\t%s\t%u:%g\t%m\t%l\n" | sort > $(BASEDIR)$(crFILELOGDIR)/$(1)
147endef
148
[93346ee]149#==@
150
[1f81129]151define remove_build_dirs
152 @ROOT=`head -n1 $(SRCSDIR)/$(PKG_LST) | sed 's@^./@@;s@/.*@@'` && \
153 rm -rf $(SRCSDIR)/$$ROOT && \
154 rm -rf $(SRCSDIR)/$(1)-build
[877cc6a]155endef
156
[1f81129]157define remove_build_dirs2
158 @ROOT=`head -n1 $(SRC)/$(PKG_LST) | sed 's@^./@@;s@/.*@@'` && \
159 rm -rf $(SRC)/$$ROOT && \
160 rm -rf $(SRC)/$(1)-build
[877cc6a]161endef
162
[1f81129]163#==#
164
165define housekeeping
166 @touch $@ && \
167 sleep .25 && \
168 echo -e "\n" $(BOLD)Target $(BLUE)$@ $(WHITE)$(BOLD)OK && \
[dbcdfd7]169 echo --------------------------------------------------------------------------------$(WHITE) && \
170 if [ "$(BREAKPOINT)" = "$@" ] ; then \
171 echo $(tab_)$(RED)The build has been stopped at $(BLUE)$@ $(RED)as requested$(WHITE) ; \
172 false ; \
173 fi
[877cc6a]174endef
175
[1f81129]176#=======================
177
178
179#==== FINAL MESSAGES ===
180
[453bef0]181define echo_report
[7fe73c8]182 echo ; \
183 echo $(BOLD) The report file $(BLUE)$(1)$(BOLD) has been created ; \
184 echo ; \
185 echo $(WHITE)Please send the $(BOLD)$(MOUNT_PT)/jhalfs/$(1)$(WHITE) ; \
[80ee2ff]186 echo file to $(BOLD)jhalfs-reports@linuxfromscratch.org$(WHITE) ; \
[7fe73c8]187 echo ; \
188 echo That will help us to keep more accurate SBU and ; \
189 echo disk usage values into the book. Thanks. ; \
190 echo $(BOLD)--------------------------------------------------------------------------------$(WHITE)
[453bef0]191endef
192
[877cc6a]193define echo_finished
194 @echo $(BOLD)
195 @echo --------------------------------------------------------------------------------
196 @echo $(BOLD) Finished the build of $(BLUE)$(1)$(BOLD)
197 @echo --------------------------------------------------------------------------------
[f4d9a48]198 @echo $(tab_)$(tab_)$(RED)W A R N I N G$(BOLD)
[877cc6a]199 @echo --------------------------------------------------------------------------------
200 @echo
201 @echo To be able to boot your new system you need to follow
202 @echo the next steps:$(WHITE)
203 @echo
[80ee2ff]204 @echo $(tab_)- Mount the virtual kernel file systems.
205 @echo
[f4d9a48]206 @echo $(tab_)- Enter to the chroot using the command found
207 @echo $(tab_)in the section -Entering the Chroot Environment-
208 @echo $(tab_)except if building CLFS with METHOD=boot.
[877cc6a]209 @echo
[f4d9a48]210 @echo $(tab_)- Set a password for the root user.
[877cc6a]211 @echo
[80ee2ff]212 @echo $(tab_)- Edit or create /etc/fstab,
[06bb141]213 @echo $(tab_) " /etc/hosts,"
214 @echo $(tab_) " /etc/sysconfig/clock,"
215 @echo $(tab_) " /etc/sysconfig/console,"
216 @echo $(tab_) " /etc/sysconfig/network,"
[4b1dd33]217 @echo $(tab_) " /etc/sysconfig/ifconfig.eth0,"
[cb29c9c]218 @echo $(tab_) " /etc/resolv.conf"
[80ee2ff]219 @echo $(tab_)and any other configuration file required to suit your needs.
[877cc6a]220 @echo
[f4d9a48]221 @echo $(tab_)- Set-up the boot loader, except if building CLFS with METHOD=boot.
[80ee2ff]222 @echo
223 @echo $(tab_)You can set-up the new boot-loader installed on the new system
224 @echo $(tab_)or the host bootloader.
225 @echo
[06bb141]226 @echo $(tab_)If the last, it is better to exit first from the chroot.
[80ee2ff]227 @echo
228 @echo $(tab_)- Exit from the chroot and umount the filesystems.
[877cc6a]229 @echo
230 @echo If you are an experienced LFS user, several of those steps can be
231 @echo skipped or done in a different way. But then, that is something
232 @echo that you already know and there is no need to discuss it here.
233 @echo $(BOLD)
234 @echo --------------------------------------------------------------------------------
[f4d9a48]235 @echo $(tab_)$(tab_)$(GREEN)Have a nice day $(ORANGE):-\)$(BOLD)
[877cc6a]236 @echo --------------------------------------------------------------------------------$(WHITE)
237endef
238
239define echo_boot_finished
240 @echo $(BOLD)
241 @echo --------------------------------------------------------------------------------
242 @echo $(BOLD) Finished building a minimal boot system for $(BLUE)$(1)$(BOLD)
243 @echo --------------------------------------------------------------------------------
[f4d9a48]244 @echo $(tab_)$(tab_)$(RED)W A R N I N G$(BOLD)
[877cc6a]245 @echo --------------------------------------------------------------------------------
246 @echo
247 @echo The build is not complete. Follow the next steps:$(WHITE)
248 @echo
[f4d9a48]249 @echo $(tab_)- Edit or create $(MOUNT_PT)/etc/fstab
250 @echo $(tab_) and any other configuration file required to suit your needs.
[877cc6a]251 @echo $(BOLD)
252 @echo $(BOLD)$(YELLOW)
253 @echo 1.If it is necessary, transfer the newly created partition to the target machine
254 @echo 2.Boot the new partition.
255 @echo 3.Once you are logged in issue the following commands
[d981bde]256 @echo $(tab_) $(BOLD)cd /jhalfs
[f4d9a48]257 @echo $(tab_) $(BOLD)make makesys
[877cc6a]258 @echo The build process should resume. Follow any instructions that appear.
259 @echo --------------------------------------------------------------------------------
[f4d9a48]260 @echo $(tab_)$(tab_)$(GREEN)Have a nice day $(ORANGE):-\)$(BOLD)
[877cc6a]261 @echo --------------------------------------------------------------------------------$(WHITE)
262endef
Note: See TracBrowser for help on using the repository browser.