source: common/makefile-functions@ 4fef116

2.3 2.3.x 2.4 ablfs ablfs-more legacy new_features trunk
Last change on this file since 4fef116 was 3e7ceed, checked in by Manuel Canales Esparcia <manuel@…>, 18 years ago

Ported CUSTOM_TOOLS support to all books.

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