Annotation of elwix/build_fs.sh, revision 1.11.2.8

1.2       misho       1: #!/bin/sh
                      2: #
                      3: # ELWIX Build script for ELWIX CompactFlash image
                      4: #
                      5: # (C) AITNET ltd - Sofia/Bulgaria <office@aitnet.org>
                      6: #    by Michael Pounov <misho@elwix.org>
                      7: #
1.11.2.8! misho       8: # $Id: build_fs.sh,v 1.11.2.7 2017/07/13 11:27:13 misho Exp $
1.2       misho       9: #
                     10: 
                     11: [ -r ./config/rc.elwix ] && . ./config/rc.elwix
                     12: if [ X"${ELWIX_IS_CONFIGURED}" != X"YES" ]; then
                     13:        echo
                     14:        echo "ELWIX project is not configured !?!"
                     15:        echo
                     16:        exit 1
                     17: fi
                     18: 
                     19: if [ ! -d ${BSDSRC} ]; then
                     20:        echo
                     21:        echo "ELWIX project is not configured - missing BSD sources !?!"
                     22:        echo
                     23:        exit 1
                     24: fi
                     25: 
                     26: if [ "${USER}" != "root" ]; then
                     27:        echo
                     28:        echo "ELWIX project is not configured - FS must build under root !?!"
                     29:        echo
                     30:        exit 1
                     31: fi
                     32: 
                     33: clean_fsdir()
                     34: {
1.11      misho      35:        echo "+++ Clean ELWIX FS ... $1"
1.10      misho      36:        chflags -Rf nosunlink $1
1.8       misho      37:        rm -rf $1 $2
1.2       misho      38: }
                     39: 
                     40: build_fsdir()
                     41: {
1.11.2.4  misho      42:        #
                     43:        # Structure of ELWIX CF Drive mount on /elwix
                     44:        #
1.11      misho      45:        echo "+++ Build ELWIX FS directory ... $1"
1.4       misho      46:        mkdir -p $1
1.2       misho      47: 
1.4       misho      48:        cd $1
1.2       misho      49: # boot
                     50:        install -d boot;
                     51: # cf
                     52:        install -d cf;
                     53: # etc
                     54:        install -d etc;
                     55: # exports
                     56:        install -d exports;
                     57: # home
                     58:        install -d home;
1.11.2.1  misho      59: # local
                     60:        install -d local;
1.2       misho      61: # root
1.9       misho      62:        install -d -m 0750 root;
1.4       misho      63: # pkg
                     64:        install -d pkg;
1.2       misho      65: # tftpboot
                     66:        install -d tftpboot;
                     67: 
                     68:        chown -hR root:wheel .
                     69:        cd -
                     70: }
                     71: 
                     72: create_etc_fstab()
                     73: {
1.8       misho      74:        cat >$1/etc/fstab <<_EOF
                     75: # Automatic generated fstab for ELWIX $2 at ${BUILD_DATE}
1.2       misho      76: #
                     77: _EOF
                     78: }
                     79: 
1.11      misho      80: update_etc_cfexec()
                     81: {
                     82:        echo "mount = \"/elwix\"" >> $1/etc/cfexec.conf
                     83: }
                     84: 
1.2       misho      85: install_fsdir()
                     86: {
1.11      misho      87:        echo "+++ Install ELWIX RootFS $1 in bundle OS install file ..."
1.4       misho      88:        OSZ=""
                     89: 
1.8       misho      90:        install -v ${REL}/${ROOTFS_KERN} $1/boot/kernel/kernel.gz
1.2       misho      91: 
1.5       misho      92:        case "$2" in
1.8       misho      93:                [Ee][Xx][Tt])
1.5       misho      94:                        install -d $1/usr
                     95:                        cd $1/usr
                     96:                        pax -r -z -pe -f ${REL}/${ROMFS_IMG}
                     97:                        cd -
                     98: 
1.11.2.3  misho      99:                        install -d $1/pkg
                    100:                        cd $1/pkg
1.5       misho     101:                        pax -r -z -pe -f ${REL}/${ROMFS_IMG2}
                    102:                        cd -
                    103: 
1.8       misho     104:                        OSZ=${REL}/${OS_EXT}
1.5       misho     105:                        ;;
                    106:                *)
                    107:                        install -v ${REL}/${ROMFS_IMG} \
                    108:                                $1/altroot/elwix-firmware-${VERSION}_${TARGET_ARCH}
                    109:                        ln $1/altroot/elwix-firmware-${VERSION}_${TARGET_ARCH} \
                    110:                                $1/altroot/${ROMFS_IMG}
                    111:                        ln -s /elwix/altroot/elwix-firmware-${VERSION}_${TARGET_ARCH} \
                    112:                                $1/${ROMFS_IMG}
                    113: 
                    114:                        install -v ${REL}/${ROMFS_IMG2} \
                    115:                                $1/altroot/elwix-firmware2-${VERSION}_${TARGET_ARCH}
                    116:                        ln $1/altroot/elwix-firmware2-${VERSION}_${TARGET_ARCH} \
                    117:                                $1/altroot/${ROMFS_IMG2}
                    118:                        ln -s /elwix/altroot/elwix-firmware2-${VERSION}_${TARGET_ARCH} \
                    119:                                $1/${ROMFS_IMG2}
                    120: 
                    121:                        OSZ=${REL}/${OS}
                    122:                        ;;
                    123:        esac
1.2       misho     124: 
1.4       misho     125:        cd $1
                    126:        tar -czvf $OSZ .
1.11      misho     127: 
                    128:        echo "+++ Completed ELWIX RootFS $1 --> $OSZ"
1.2       misho     129: }
                    130: 
                    131: ### main()
                    132: if [ ! -r ${REL}/${ROOTFS_KERN} -o ! -r ${REL}/${ROMFS_IMG} ]; then
                    133:        echo
                    134:        echo "Error:: not found kernel or firmware elwix files ..."
                    135:        echo
                    136:        echo " For fix this issue, please re-run build_rootfs.sh or build_romfs.sh"
                    137:        echo
                    138:        exit 1
                    139: fi
                    140: 
1.10      misho     141: clean_fsdir ${FS} ${REL}/${OS} || exit 1
                    142: clean_fsdir ${FS_EXT} ${REL}/${OS_EXT} || exit 1
1.4       misho     143: 
1.10      misho     144: build_fsdir ${FS} || exit 1
                    145: build_fsdir ${FS_EXT} || exit 1
1.8       misho     146: 
1.10      misho     147: MakeFS_home ${FS} || exit 1
                    148: MakeFS_home ${FS_EXT} || exit 1
1.8       misho     149: 
1.10      misho     150: MakeFS_var ${FS} ${FS_ETC} || exit 1
                    151: MakeFS_var ${FS_EXT} ${FS_EXT_ETC} || exit 1
1.8       misho     152: 
1.10      misho     153: MakeFS_etc ${FS} ${FS_ETC} || exit 1
                    154: MakeFS_etc ${FS_EXT} ${FS_EXT_ETC} ext || exit 1
1.8       misho     155: 
1.10      misho     156: create_etc_fstab ${FS} || exit 1
                    157: create_etc_fstab ${FS_EXT} ext || exit 1
1.8       misho     158: 
1.11      misho     159: update_etc_cfexec ${FS} || exit 1
                    160: update_etc_cfexec ${FS_EXT} ext || exit 1
1.2       misho     161: 
1.10      misho     162: MakeFS_boot ${FS} || exit 1
                    163: MakeFS_boot ${FS_EXT} || exit 1
1.2       misho     164: 
1.10      misho     165: install_fsdir ${FS} || exit 1
                    166: install_fsdir ${FS_EXT} ext || exit 1
1.2       misho     167: 
1.11      misho     168: echo "+++ Complete build ELWIX RootFS system"
                    169: echo "ELWIX RootFS finish version ${VERSION}, Good luck!"

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>