|
version 1.1.2.7, 2012/05/29 13:26:40
|
version 1.7.2.2, 2021/03/17 20:30:44
|
|
Line 9
|
Line 9
|
| # |
# |
| |
|
| [ -r ./config/rc.elwix ] && . ./config/rc.elwix |
[ -r ./config/rc.elwix ] && . ./config/rc.elwix |
| |
if [ ! -r ./config/rc.3thparty_helper ]; then |
| |
echo |
| |
echo "ELWIX project is not configured - Missing rc.3thparty_helper script" |
| |
echo |
| |
exit 1 |
| |
fi |
| |
|
| if [ X"${ELWIX_IS_CONFIGURED}" != X"YES" ]; then |
if [ X"${ELWIX_IS_CONFIGURED}" != X"YES" ]; then |
| echo |
echo |
| echo "ELWIX project is not configured !?!" |
echo "ELWIX project is not configured !?!" |
|
Line 37 fi
|
Line 44 fi
|
| |
|
| clean_3th() |
clean_3th() |
| { |
{ |
| echo "+++ Clean ELWIX 3th party ..." | echo "+++ Clean ELWIX 3th party ... ${PKG}, ${ROMFS_USR2}" |
| |
|
| rm -rf ${PKG} | rm -rf ${PKG} ${ROMFS_USR2} |
| | |
| install -d ${PKG} |
install -d ${PKG} |
| install -d ${PKG}/bin |
install -d ${PKG}/bin |
| install -d ${PKG}/etc |
install -d ${PKG}/etc |
|
Line 48 clean_3th()
|
Line 56 clean_3th()
|
| install -d ${PKG}/lib |
install -d ${PKG}/lib |
| install -d ${PKG}/libexec |
install -d ${PKG}/libexec |
| install -d ${PKG}/sbin |
install -d ${PKG}/sbin |
| |
|
| |
install -d ${ROMFS_USR2} |
| |
install -d ${ROMFS_USR2}/bin |
| |
install -d ${ROMFS_USR2}/etc |
| |
install -d ${ROMFS_USR2}/lib |
| |
install -d ${ROMFS_USR2}/libexec |
| |
install -d ${ROMFS_USR2}/sbin |
| } |
} |
| |
|
| compile_3th() |
compile_3th() |
| { |
{ |
| echo "+++ Compile ELWIX 3th party ..." |
echo "+++ Compile ELWIX 3th party ..." |
| |
|
| cd $CROSS_3TH | BUILD_SH="./config/rc.3thparty_helper" |
| ./build.sh expat ${CBUILD} ${PKG} ${TARGET_BUILD} | |
| [ $? -ne 0 ] && exit 1 | for i in ${CROSS_3THPARTY}; do |
| ./build.sh libevent ${CBUILD} ${PKG} ${TARGET_BUILD} | MK=$(eval echo "\$${i}_MAKE") |
| [ $? -ne 0 ] && exit 1 | env CFLAGS="-I${PKG}/include" LDFLAGS="-L${PKG}/lib" ${BUILD_SH} \ |
| ./build.sh libiconv ${CGBUILD} ${PKG} ${TARGET_BUILD} | $i $MK ${PKG} ${TARGET_BUILD} || Die "ERROR:: with $i packet!" |
| [ $? -ne 0 ] && exit 1 | done |
| ./build.sh pcre ${CBUILD} ${PKG} ${TARGET_BUILD} | |
| [ $? -ne 0 ] && exit 1 | echo |
| ./build.sh mini_sendmail ${CBUILD} ${PKG} ${TARGET_BUILD} | } |
| [ $? -ne 0 ] && exit 1 | |
| ./build.sh choparp ${CBUILD} ${PKG} ${TARGET_BUILD} | install_3th() |
| [ $? -ne 0 ] && exit 1 | { |
| ./build.sh scan_ffs ${CBUILD} ${PKG} ${TARGET_BUILD} | LIBS="${ROMFS_USR2}/lib" |
| [ $? -ne 0 ] && exit 1 | LIBEXEC="${ROMFS_USR2}/libexec" |
| ./build.sh pciutils ${CGBUILD} ${PKG} ${TARGET_BUILD} | BIN="${ROMFS_USR2}/bin" |
| [ $? -ne 0 ] && exit 1 | SBIN="${ROMFS_USR2}/sbin" |
| ./build.sh istgt ${CBUILD} ${PKG} ${TARGET_BUILD} | ETC="${ROMFS_USR2}/etc" |
| [ $? -ne 0 ] && exit 1 | |
| ./build.sh rsync ${CBUILD} ${PKG} ${TARGET_BUILD} | echo "+++ Install ELWIX RomFS secondary firmware ... ${ROMFS_USR2}" |
| [ $? -ne 0 ] && exit 1 | |
| ./build.sh ttcp ${CBUILD} ${PKG} ${TARGET_BUILD} | StripFiles \*.so\* ${PKG}/lib |
| [ $? -ne 0 ] && exit 1 | InstallFiles \*.so\* ${PKG}/lib $LIBS |
| ./build.sh mpd ${CBUILD} ${PKG} ${TARGET_BUILD} | InstallLinks \*.so\* ${PKG}/lib $LIBS |
| [ $? -ne 0 ] && exit 1 | StripFiles \* ${PKG}/libexec |
| ./build.sh mrouted ${CGBUILD} ${PKG} ${TARGET_BUILD} | InstallFiles \* ${PKG}/libexec $LIBEXEC |
| [ $? -ne 0 ] && exit 1 | StripFiles \* ${PKG}/bin |
| ./build.sh igmpproxy ${CBUILD} ${PKG} ${TARGET_BUILD} | InstallFiles \* ${PKG}/bin $BIN |
| [ $? -ne 0 ] && exit 1 | StripFiles \* ${PKG}/sbin |
| ./build.sh sudo ${CBUILD} ${PKG} ${TARGET_BUILD} | InstallFiles \* ${PKG}/sbin $SBIN |
| [ $? -ne 0 ] && exit 1 | |
| ./build.sh bmon ${CGBUILD} ${PKG} ${TARGET_BUILD} | InstallFiles \* ${PKG}/etc $ETC |
| [ $? -ne 0 ] && exit 1 | |
| ./build.sh mtr ${CBUILD} ${PKG} ${TARGET_BUILD} | chown -R root:wheel $SBIN $BIN $LIBDATA $LIBEXEC $LIBS |
| [ $? -ne 0 ] && exit 1 | } |
| ./build.sh ipguard ${CBUILD} ${PKG} ${TARGET_BUILD} | |
| [ $? -ne 0 ] && exit 1 | build_3th() |
| ./build.sh smartmontools ${CBUILD} ${PKG} ${TARGET_BUILD} | { |
| [ $? -ne 0 ] && exit 1 | echo "+++ Build ELWIX Firmware secondary image ... ${ROMFS_USR2} --> ${REL}/${ROMFS_IMG2}" |
| ./build.sh quagga ${CBUILD} ${PKG} ${TARGET_BUILD} | |
| [ $? -ne 0 ] && exit 1 | cd ${ROMFS_USR2} |
| ./build.sh coova-chilli ${CBUILD} ${PKG} ${TARGET_BUILD} | pax -w -z -v -f${REL}/${ROMFS_IMG2} . |
| [ $? -ne 0 ] && exit 1 | |
| ./build.sh iftop ${CBUILD} ${PKG} ${TARGET_BUILD} | |
| [ $? -ne 0 ] && exit 1 | |
| ./build.sh arping ${CBUILD} ${PKG} ${TARGET_BUILD} | |
| [ $? -ne 0 ] && exit 1 | |
| ./build.sh hping2 ${CGBUILD} ${PKG} ${TARGET_BUILD} | |
| [ $? -ne 0 ] && exit 1 | |
| ./build.sh trafshow ${CBUILD} ${PKG} ${TARGET_BUILD} | |
| [ $? -ne 0 ] && exit 1 | |
| ./build.sh ipsec-tools ${CBUILD} ${PKG} ${TARGET_BUILD} | |
| [ $? -ne 0 ] && exit 1 | |
| ./build.sh dhcp ${CBUILD} ${PKG} ${TARGET_BUILD} | |
| [ $? -ne 0 ] && exit 1 | |
| ./build.sh dhcdrop ${CBUILD} ${PKG} ${TARGET_BUILD} | |
| [ $? -ne 0 ] && exit 1 | |
| ./build.sh dhcping ${CBUILD} ${PKG} ${TARGET_BUILD} | |
| [ $? -ne 0 ] && exit 1 | |
| ./build.sh miniupnpd ${CBUILD} ${PKG} ${TARGET_BUILD} | |
| [ $? -ne 0 ] && exit 1 | |
| ./build.sh miniupnpc ${CGBUILD} ${PKG} ${TARGET_BUILD} | |
| [ $? -ne 0 ] && exit 1 | |
| ./build.sh ntp ${CBUILD} ${PKG} ${TARGET_BUILD} | |
| [ $? -ne 0 ] && exit 1 | |
| ./build.sh thttpd ${CBUILD} ${PKG} ${TARGET_BUILD} | |
| [ $? -ne 0 ] && exit 1 | |
| ./build.sh libxml2 ${CBUILD} ${PKG} ${TARGET_BUILD} | |
| [ $? -ne 0 ] && exit 1 | |
| ./build.sh php ${CBUILD} ${PKG} ${TARGET_BUILD} | |
| [ $? -ne 0 ] && exit 1 | |
| cd - |
cd - |
| |
|
| echo "ELWIX Platform:${PLATFORM} Version:${VERSION} TargetArch:${TARGET_ARCH}" >${PKG}/elwix.ver | # Stop using uzip fs |
| | # makefs -ominfree=0,bsize=8192,fsize=1024,optimization=space -s${ROMFS_SIZE2} \ |
| | # ${REL}/${ROMFS_IMG2} ${ROMFS_USR2} |
| | |
| | # MDDEV=$(mdconfig -a -t vnode -f ${REL}/${ROMFS_IMG2}); |
| | # tunefs -L elwixFirmware2 /dev/$MDDEV; |
| | # mdconfig -d -u $MDDEV; |
| | |
| | # mkuzip -s 8192 -o ${REL}/${ROMFS_IMG2}.uzip ${REL}/${ROMFS_IMG2}; |
| | # mv ${REL}/${ROMFS_IMG2}.uzip ${REL}/${ROMFS_IMG2} |
| | |
| | echo "+++ Complited ELWIX Firmware secondary image ... ${REL}/${ROMFS_IMG2}" |
| } |
} |
| |
|
| ### main() |
### main() |
| |
if [ -n "${1}" ]; then |
| |
rm ${PKG}/elwix.ver |
| |
fi |
| |
|
| if ! SnitVer ${PKG}/elwix.ver; then |
if ! SnitVer ${PKG}/elwix.ver; then |
| clean_3th | clean_3th || exit 1 |
| compile_3th | compile_3th || exit 1 |
| | |
| | install_3th || exit 1 |
| | build_3th || exit 1 |
| | |
| | echo "ELWIX Platform:${PLATFORM} Version:${VERSION} TargetArch:${TARGET_ARCH}" >${PKG}/elwix.ver |
| else |
else |
| echo "Skipped ELWIX 3th party build ..." |
echo "Skipped ELWIX 3th party build ..." |
| fi |
fi |