Revision 102e7265
Added by Renato Botelho almost 9 years ago
tools/builder_common.sh | ||
---|---|---|
1101 | 1101 |
|
1102 | 1102 |
create_iso_image() { |
1103 | 1103 |
LOGFILE=${BUILDER_LOGS}/isoimage.${TARGET} |
1104 |
if [ "${ISOPATH}" = "" ]; then |
|
1104 |
|
|
1105 |
if [ -n "${ISOPATH}" ]; then |
|
1105 | 1106 |
echo ">>> ISOPATH is empty skipping generation of ISO image!" | tee -a ${LOGFILE} |
1106 | 1107 |
return |
1107 | 1108 |
fi |
... | ... | |
1124 | 1125 |
|
1125 | 1126 |
FSLABEL=$(echo ${PRODUCT_NAME} | tr '[:lower:]' '[:upper:]') |
1126 | 1127 |
|
1127 |
sh ${FREEBSD_SRC_DIR}/release/${TARGET}/mkisoimages.sh \ |
|
1128 |
sh ${FREEBSD_SRC_DIR}/release/${TARGET}/mkisoimages.sh -b \
|
|
1128 | 1129 |
${FSLABEL} \ |
1129 | 1130 |
${ISOPATH} \ |
1130 | 1131 |
${INSTALLER_CHROOT_DIR} |
Also available in: Unified diff
Add missing -b parameter to mkisoimages.sh