1 |
|
---|
2 | # $Id$
|
---|
3 |
|
---|
4 | BOLD = "[0;1m"
|
---|
5 | RED = "[1;31m"
|
---|
6 | GREEN = "[0;32m"
|
---|
7 | ORANGE = "[0;33m"
|
---|
8 | BLUE = "[1;34m"
|
---|
9 | WHITE = "[00m"
|
---|
10 | YELLOW = "[1;33m"
|
---|
11 |
|
---|
12 | OFF = "[0m"
|
---|
13 | REVERSE = "[7m"
|
---|
14 |
|
---|
15 | tab_ = " "
|
---|
16 | nl_ = ""
|
---|
17 |
|
---|
18 | #==== BUILD MESSAGES ===
|
---|
19 |
|
---|
20 | define echo_PHASE
|
---|
21 | @echo $(BOLD)--------------------------------------------------------------------------------
|
---|
22 | @echo $(tab_)$(tab_)Executing $(BLUE)$(1)$(WHITE) scripts
|
---|
23 | @echo $(BOLD)--------------------------------------------------------------------------------
|
---|
24 | @echo $(WHITE)
|
---|
25 | endef
|
---|
26 |
|
---|
27 | define sh_echo_PHASE
|
---|
28 | echo $(BOLD)--------------------------------------------------------------------------------;\
|
---|
29 | echo $(tab_)$(tab_)Executing $(BLUE)$(1)$(WHITE) scripts; \
|
---|
30 | echo $(BOLD)--------------------------------------------------------------------------------echo $(WHITE)
|
---|
31 | endef
|
---|
32 |
|
---|
33 | define 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
|
---|
38 | endef
|
---|
39 |
|
---|
40 | define 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
|
---|
45 | endef
|
---|
46 |
|
---|
47 | define 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
|
---|
52 | endef
|
---|
53 |
|
---|
54 | define echo_message
|
---|
55 | @echo $(BOLD)--------------------------------------------------------------------------------
|
---|
56 | @echo $(BOLD)$(1) target $(BLUE)$@$(BOLD)$(WHITE)
|
---|
57 | endef
|
---|
58 |
|
---|
59 | #=======================
|
---|
60 |
|
---|
61 |
|
---|
62 | #=== BUILD FUNCTIONS ===
|
---|
63 |
|
---|
64 | define 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
|
---|
69 | endef
|
---|
70 |
|
---|
71 | define 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
|
---|
76 | endef
|
---|
77 |
|
---|
78 | #==#
|
---|
79 |
|
---|
80 | define unpack
|
---|
81 | @cd $(SRCSDIR) && \
|
---|
82 | tar -xvf `ls -t $(1) | head -n1` > $(PKG_LST)
|
---|
83 | endef
|
---|
84 |
|
---|
85 | define unpack2
|
---|
86 | @cd $(SRC) && \
|
---|
87 | tar -xvf `ls -t $(1) | head -n1` > $(PKG_LST)
|
---|
88 | endef
|
---|
89 |
|
---|
90 | #==#
|
---|
91 |
|
---|
92 | define 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;
|
---|
100 | endef
|
---|
101 |
|
---|
102 | define get_pkg_root2
|
---|
103 | @ROOT=`head -n1 $(SRC)/$(PKG_LST) | sed 's@^./@@;s@/.*@@'` && \
|
---|
104 | echo "export PKGDIR=$(SRC)/$$ROOT" > envars
|
---|
105 | endef
|
---|
106 |
|
---|
107 | define get_pkg_root_LUSER
|
---|
108 | @ROOT=`head -n1 $(SRCSDIR)/$(PKG_LST) | sed 's@^./@@;s@/.*@@'` && \
|
---|
109 | echo "export PKGDIR=$(SRCSDIR)/$$ROOT" > envars
|
---|
110 | endef
|
---|
111 |
|
---|
112 | #==#
|
---|
113 |
|
---|
114 | define remove_build_dirs
|
---|
115 | @ROOT=`head -n1 $(SRCSDIR)/$(PKG_LST) | sed 's@^./@@;s@/.*@@'` && \
|
---|
116 | rm -rf $(SRCSDIR)/$$ROOT && \
|
---|
117 | rm -rf $(SRCSDIR)/$(1)-build
|
---|
118 | endef
|
---|
119 |
|
---|
120 | define remove_build_dirs2
|
---|
121 | @ROOT=`head -n1 $(SRC)/$(PKG_LST) | sed 's@^./@@;s@/.*@@'` && \
|
---|
122 | rm -rf $(SRC)/$$ROOT && \
|
---|
123 | rm -rf $(SRC)/$(1)-build
|
---|
124 | endef
|
---|
125 |
|
---|
126 | #==#
|
---|
127 |
|
---|
128 | define housekeeping
|
---|
129 | @touch $@ && \
|
---|
130 | sleep .25 && \
|
---|
131 | echo -e "\n" $(BOLD)Target $(BLUE)$@ $(WHITE)$(BOLD)OK && \
|
---|
132 | echo --------------------------------------------------------------------------------$(WHITE)
|
---|
133 |
|
---|
134 | endef
|
---|
135 |
|
---|
136 | #=======================
|
---|
137 |
|
---|
138 |
|
---|
139 | #==== FINAL MESSAGES ===
|
---|
140 |
|
---|
141 | define echo_report
|
---|
142 | echo ; \
|
---|
143 | echo $(BOLD) The report file $(BLUE)$(1)$(BOLD) has been created ; \
|
---|
144 | echo ; \
|
---|
145 | echo $(WHITE)Please send the $(BOLD)$(MOUNT_PT)/jhalfs/$(1)$(WHITE) ; \
|
---|
146 | echo file to $(BOLD)manuel@linuxfromscratch.org$(WHITE) ; \
|
---|
147 | echo ; \
|
---|
148 | echo That will help us to keep more accurate SBU and ; \
|
---|
149 | echo disk usage values into the book. Thanks. ; \
|
---|
150 | echo $(BOLD)--------------------------------------------------------------------------------$(WHITE)
|
---|
151 | endef
|
---|
152 |
|
---|
153 | define echo_finished
|
---|
154 | @echo $(BOLD)
|
---|
155 | @echo --------------------------------------------------------------------------------
|
---|
156 | @echo $(BOLD) Finished the build of $(BLUE)$(1)$(BOLD)
|
---|
157 | @echo --------------------------------------------------------------------------------
|
---|
158 | @echo $(tab_)$(tab_)$(RED)W A R N I N G$(BOLD)
|
---|
159 | @echo --------------------------------------------------------------------------------
|
---|
160 | @echo
|
---|
161 | @echo To be able to boot your new system you need to follow
|
---|
162 | @echo the next steps:$(WHITE)
|
---|
163 | @echo
|
---|
164 | @echo $(tab_)- Enter to the chroot using the command found
|
---|
165 | @echo $(tab_)in the section -Entering the Chroot Environment-
|
---|
166 | @echo $(tab_)except if building CLFS with METHOD=boot.
|
---|
167 | @echo
|
---|
168 | @echo $(tab_)- Set a password for the root user.
|
---|
169 | @echo
|
---|
170 | @echo $(tab_)- Edit or create /etc/fstab, /etc/hosts, /etc/sysconfig/clock,
|
---|
171 | @echo $(tab_)/etc/sysconfig/console, /etc/sysconfig/network,
|
---|
172 | @echo $(tab_)/etc/sysconfig//network-devices/ifconfig.eth0/ipv4 and
|
---|
173 | @echo $(tab_)any other configuration file required to suit your needs.
|
---|
174 | @echo
|
---|
175 | @echo $(tab_)- Exit from the chroot.
|
---|
176 | @echo
|
---|
177 | @echo $(tab_)- Set-up the boot loader, except if building CLFS with METHOD=boot.
|
---|
178 | @echo $(tab_)You can set-up the host bootloader or the new boot-loader
|
---|
179 | @echo $(tab_)installed on the new system.
|
---|
180 | @echo $(tab_)If the last, you must to mount the virtual filesystems, re-enter
|
---|
181 | @echo $(tab_)the chroot and be sure that /dev is populated with the
|
---|
182 | @echo $(tab_)required devices before configure the boot-loader. When ready,
|
---|
183 | @echo $(tab_)exit from the chroot and umount the filesystems
|
---|
184 | @echo
|
---|
185 | @echo If you are an experienced LFS user, several of those steps can be
|
---|
186 | @echo skipped or done in a different way. But then, that is something
|
---|
187 | @echo that you already know and there is no need to discuss it here.
|
---|
188 | @echo $(BOLD)
|
---|
189 | @echo --------------------------------------------------------------------------------
|
---|
190 | @echo $(tab_)$(tab_)$(GREEN)Have a nice day $(ORANGE):-\)$(BOLD)
|
---|
191 | @echo --------------------------------------------------------------------------------$(WHITE)
|
---|
192 | endef
|
---|
193 |
|
---|
194 | define echo_boot_finished
|
---|
195 | @echo $(BOLD)
|
---|
196 | @echo --------------------------------------------------------------------------------
|
---|
197 | @echo $(BOLD) Finished building a minimal boot system for $(BLUE)$(1)$(BOLD)
|
---|
198 | @echo --------------------------------------------------------------------------------
|
---|
199 | @echo $(tab_)$(tab_)$(RED)W A R N I N G$(BOLD)
|
---|
200 | @echo --------------------------------------------------------------------------------
|
---|
201 | @echo
|
---|
202 | @echo The build is not complete. Follow the next steps:$(WHITE)
|
---|
203 | @echo
|
---|
204 | @echo $(tab_)- Edit or create $(MOUNT_PT)/etc/fstab
|
---|
205 | @echo $(tab_) and any other configuration file required to suit your needs.
|
---|
206 | @echo $(BOLD)
|
---|
207 | @echo $(BOLD)$(YELLOW)
|
---|
208 | @echo 1.If it is necessary, transfer the newly created partition to the target machine
|
---|
209 | @echo 2.Boot the new partition.
|
---|
210 | @echo 3.Once you are logged in issue the following commands
|
---|
211 | @echo $(tab_) $(BOLD)cd /jhalfs
|
---|
212 | @echo $(tab_) $(BOLD)make makesys
|
---|
213 | @echo The build process should resume. Follow any instructions that appear.
|
---|
214 | @echo --------------------------------------------------------------------------------
|
---|
215 | @echo $(tab_)$(tab_)$(GREEN)Have a nice day $(ORANGE):-\)$(BOLD)
|
---|
216 | @echo --------------------------------------------------------------------------------$(WHITE)
|
---|
217 | endef
|
---|