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