[877cc6a] | 1 | #!/bin/bash
|
---|
| 2 |
|
---|
| 3 | # $Id$
|
---|
| 4 |
|
---|
[4da2512] | 5 | set -e
|
---|
[877cc6a] | 6 |
|
---|
| 7 |
|
---|
| 8 | no_empty_builddir() {
|
---|
| 9 | 'clear'
|
---|
| 10 | cat <<- -EOF-
|
---|
| 11 | ${DD_BORDER}
|
---|
| 12 |
|
---|
| 13 | ${tab_}${tab_}${BOLD}${RED}W A R N I N G${OFF}
|
---|
| 14 | Looks like the \$BUILDDIR directory contains subdirectories
|
---|
[a5e3400] | 15 | from a previous build.
|
---|
[877cc6a] | 16 |
|
---|
| 17 | Please format the partition mounted on \$BUILDDIR or set
|
---|
[73e5448] | 18 | a different build directory before running jhalfs.
|
---|
[877cc6a] | 19 | ${OFF}
|
---|
| 20 | ${DD_BORDER}
|
---|
| 21 | -EOF-
|
---|
| 22 | exit
|
---|
| 23 | }
|
---|
| 24 |
|
---|
| 25 |
|
---|
| 26 | #----------------------------#
|
---|
[261eea6] | 27 | run_make() { #
|
---|
[877cc6a] | 28 | #----------------------------#
|
---|
| 29 | # Test if make must be run.
|
---|
[401f81e] | 30 | if [ "$RUNMAKE" = "y" ] ; then
|
---|
[fe30c61] | 31 | # Test to make sure we're not running the build as root
|
---|
[045b2dc] | 32 | if [ "$UID" = "0" ] ; then
|
---|
| 33 | echo "You must not be logged in as root to build the system."
|
---|
[877cc6a] | 34 | exit 1
|
---|
| 35 | fi
|
---|
| 36 | # Build the system
|
---|
| 37 | if [ -e $MKFILE ] ; then
|
---|
| 38 | echo -ne "Building the system...\n"
|
---|
[a167246] | 39 | cd $JHALFSDIR && make
|
---|
[877cc6a] | 40 | echo -ne "done\n"
|
---|
| 41 | fi
|
---|
| 42 | fi
|
---|
| 43 | }
|
---|
| 44 |
|
---|
| 45 |
|
---|
| 46 | #----------------------------#
|
---|
[261eea6] | 47 | clean_builddir() { #
|
---|
[877cc6a] | 48 | #----------------------------#
|
---|
| 49 | # Test if the clean must be done.
|
---|
[401f81e] | 50 | if [ "${CLEAN}" = "y" ]; then
|
---|
[877cc6a] | 51 | # Test to make sure that the build directory was populated by jhalfs
|
---|
| 52 | if [ ! -d $JHALFSDIR ] || [ ! -d $BUILDDIR/sources ] ; then
|
---|
[5468631] | 53 | echo "Looks like $BUILDDIR was not populated by a previous jhalfs run."
|
---|
[877cc6a] | 54 | exit 1
|
---|
[a5e3400] | 55 | # Test that dev filesystems are not mounted in $BUILDDIR
|
---|
| 56 | elif mount | grep $BUILDDIR/dev > /dev/null ; then
|
---|
| 57 | echo "Looks like kernel fylesystems are yet mounted on $BUILDDIR."
|
---|
| 58 | exit 1
|
---|
[877cc6a] | 59 | else
|
---|
| 60 | # Clean the build directory
|
---|
[5468631] | 61 | echo -n "Cleaning $BUILDDIR ..."
|
---|
[3cb432a0] | 62 | # First delete proc and sys directories, if exist.
|
---|
[a5e3400] | 63 | # Both should be empty, if not be sure to exit.
|
---|
| 64 | if [ -d $BUILDDIR/proc ] ; then
|
---|
| 65 | sudo rmdir $BUILDDIR/proc || exit 1
|
---|
| 66 | fi
|
---|
| 67 | if [ -d $BUILDDIR/sys ] ; then
|
---|
| 68 | sudo rmdir $BUILDDIR/sys || exit 1
|
---|
| 69 | fi
|
---|
| 70 | sudo rm -rf $BUILDDIR/{bin,boot,dev,etc,home,lib,media,mnt,opt,root,sbin,srv,tmp,tools,cross-tools,usr,var}
|
---|
[5468631] | 71 | echo "done"
|
---|
| 72 | echo -n "Cleaning $JHALFSDIR ..."
|
---|
| 73 | sudo rm -rf $JHALFSDIR
|
---|
| 74 | echo "done"
|
---|
| 75 | echo -n "Cleaning remainig extracted sources in $BUILDDIR/sources ..."
|
---|
| 76 | sudo rm -rf `find $BUILDDIR/sources/* -maxdepth 0 -type d`
|
---|
| 77 | echo "done"
|
---|
[877cc6a] | 78 | fi
|
---|
| 79 | fi
|
---|
| 80 | }
|
---|
| 81 |
|
---|
[fe30c61] | 82 | VERBOSITY2=$VERBOSITY
|
---|
[877cc6a] | 83 |
|
---|
[fe30c61] | 84 | [[ $VERBOSITY2 > 0 ]] && echo ""
|
---|
[877cc6a] | 85 |
|
---|
[fe30c61] | 86 | [[ $VERBOSITY2 > 0 ]] && echo -n "Loading <func_book_parser>..."
|
---|
| 87 | source $COMMON_DIR/libs/func_book_parser
|
---|
| 88 | [[ $? > 0 ]] && echo "file libs/func_book_parser did not load.." && exit 1
|
---|
| 89 | [[ $VERBOSITY2 > 0 ]] && echo "OK"
|
---|
[877cc6a] | 90 |
|
---|
[7432834] | 91 |
|
---|
[fe30c61] | 92 | [[ $VERBOSITY2 > 0 ]] && echo -n "Loading <func_download_pkgs>..."
|
---|
| 93 | source $COMMON_DIR/libs/func_download_pkgs
|
---|
| 94 | [[ $? > 0 ]] && echo "file libs/func_download_pkgs did not load.." && exit 1
|
---|
| 95 | [[ $VERBOSITY2 > 0 ]] && echo "OK"
|
---|
[2639f65] | 96 |
|
---|
| 97 |
|
---|
[fe30c61] | 98 | [[ $VERBOSITY2 > 0 ]] && echo -n "Loading <func_wrt_Makefile>..."
|
---|
| 99 | source $COMMON_DIR/libs/func_wrt_Makefile
|
---|
| 100 | [[ $? > 0 ]] && echo "file libs/func_wrt_Makefile did not load.." && exit 1
|
---|
| 101 | [[ $VERBOSITY2 > 0 ]] && echo "OK"
|
---|
[877cc6a] | 102 |
|
---|
[4965fa8] | 103 |
|
---|
[fe30c61] | 104 | [[ $VERBOSITY2 > 0 ]] && echo -n "Loading <func_blfs_deps>..."
|
---|
| 105 | source $COMMON_DIR/libs/func_blfs_deps
|
---|
| 106 | [[ $? > 0 ]] && echo "file libs/func_blfs_deps did not load.." && exit 1
|
---|
| 107 | [[ $VERBOSITY2 > 0 ]] && echo "OK"
|
---|
[877cc6a] | 108 |
|
---|
[fe30c61] | 109 | [[ $VERBOSITY2 > 0 ]] && echo -n " ..." |
---|