1 | BOLD= "[0;1m"
|
---|
2 | RED= "[1;31m"
|
---|
3 | GREEN= "[0;32m"
|
---|
4 | ORANGE= "[0;33m"
|
---|
5 | BLUE= "[1;34m"
|
---|
6 | WHITE= "[00m"
|
---|
7 |
|
---|
8 | define echo_message
|
---|
9 | @echo $(BOLD)
|
---|
10 | @echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
---|
11 | @echo $(BOLD)$(1) target $(BLUE)$@$(BOLD)
|
---|
12 | @echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~$(WHITE)
|
---|
13 | endef
|
---|
14 |
|
---|
15 | define unpack
|
---|
16 | @if [ -f $(LFS)$(SRC)/$(1).bz2 ] ; then \
|
---|
17 | cd $(LFS)$(SRC) ; tar -xvjf $(1).bz2 > /tmp/unpacked ; \
|
---|
18 | else \
|
---|
19 | cd $(LFS)$(SRC) ; tar -xvzf $(1).gz > /tmp/unpacked ; \
|
---|
20 | fi ;
|
---|
21 | endef
|
---|
22 |
|
---|
23 | define unpack2
|
---|
24 | @cd $(LFS)$(SRC) ; /tools/bin/tar -xvf $(1) > /tmp/unpacked
|
---|
25 | endef
|
---|
26 |
|
---|
27 | define echo_finished
|
---|
28 | @echo $(BOLD)
|
---|
29 | @echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
---|
30 | @echo $(BOLD) Finished the build of $(BLUE)LFS-$(1)$(BOLD)
|
---|
31 | @echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
---|
32 | @echo -e \\t\\t$(RED)W A R N I N G$(BOLD)
|
---|
33 | @echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
---|
34 | @echo
|
---|
35 | @echo To be able to boot your new LFS system you need to follow
|
---|
36 | @echo the next steps:$(WHITE)
|
---|
37 | @echo
|
---|
38 | @echo -e \\t- Enter to the chroot using the command found
|
---|
39 | @echo -e \\tin chapter06/revisedchroot.html
|
---|
40 | @echo
|
---|
41 | @echo -e \\t- Set a password for the root user
|
---|
42 | @echo
|
---|
43 | @echo -e \\t- Edit /etc/fstab, /etc/hosts, /etc/sysconfig/clock,
|
---|
44 | @echo -e \\t/etc/sysconfig/console, /etc/sysconfig/network,
|
---|
45 | @echo -e \\t/etc/sysconfig//network-devices/ifconfig.eth0/ipv4 and
|
---|
46 | @echo -e \\tany other configuration file required to suit your needs.
|
---|
47 | @echo
|
---|
48 | @echo -e \\t- Set-up Grub. See chapter08/grub.html
|
---|
49 | @echo
|
---|
50 | @echo -e \\t- Unmount the filesystems. See chapter09/reboot.html
|
---|
51 | @echo
|
---|
52 | @echo If you are an experienced LFS user, several of those steps can be
|
---|
53 | @echo skipped or done in a different way. But then, that is something
|
---|
54 | @echo that you already know and there is no need to discuss it here.
|
---|
55 | @echo $(BOLD)
|
---|
56 | @echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
---|
57 | @echo -e \\t\\t$(GREEN)Have a nice day $(ORANGE):-\)$(BOLD)
|
---|
58 | @echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~$(WHITE)
|
---|
59 | endef
|
---|