Allow per-profile reset
This commit is contained in:
@@ -369,18 +369,18 @@ makeImage() {
|
|||||||
debug "${FUNCNAME[0]}"
|
debug "${FUNCNAME[0]}"
|
||||||
|
|
||||||
# Reuse the existing output
|
# Reuse the existing output
|
||||||
if [[ -d "${P_ARR[out_bin_dir]}" ]]; then
|
if [[ -d "${P_ARR[bin_dir]}" ]]; then
|
||||||
if askOk "${P_ARR[out_bin_dir]} exists. Rebuild?"; then
|
if askOk "${P_ARR[bin_dir]} exists. Rebuild?"; then
|
||||||
rm -rf "${P_ARR[out_bin_dir]}"
|
rm -rf "${P_ARR[bin_dir]}"
|
||||||
else
|
else
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
[[ ! -d "${P_ARR[out_bin_dir]}" ]] && mkdir -p "${P_ARR[out_bin_dir]}"
|
[[ ! -d "${P_ARR[bin_dir]}" ]] && mkdir -p "${P_ARR[bin_dir]}"
|
||||||
|
|
||||||
if ! make image \
|
if ! make image \
|
||||||
BIN_DIR="${P_ARR[out_bin_dir]}" \
|
BIN_DIR="${P_ARR[bin_dir]}" \
|
||||||
PROFILE="${P_ARR[profile]}" \
|
PROFILE="${P_ARR[profile]}" \
|
||||||
PACKAGES="${P_ARR[packages]}" \
|
PACKAGES="${P_ARR[packages]}" \
|
||||||
FILES="$FILESDIR" \
|
FILES="$FILESDIR" \
|
||||||
@@ -461,10 +461,10 @@ fromSource() {
|
|||||||
|
|
||||||
echo "Building from source is under development"
|
echo "Building from source is under development"
|
||||||
|
|
||||||
git clone --depth=1 "$src_url" "$BUILDDIR/sources"
|
git clone --depth=1 "$src_url" "$BUILDDIR/sources/openwrt"
|
||||||
pushd "$BUILDDIR/sources/$(basename "$src_url" .git)" || return 1
|
pushd "$BUILDDIR/sources/$(basename "$src_url" .git)" || return 1
|
||||||
|
|
||||||
if [[ ${P_ARR[release]} == "snapshot" ]]; then
|
if [[ ${P_ARR['release']} == "snapshot" ]]; then
|
||||||
git checkout master
|
git checkout master
|
||||||
else
|
else
|
||||||
git checkout "${P_ARR[release]}"
|
git checkout "${P_ARR[release]}"
|
||||||
@@ -478,6 +478,7 @@ fromSource() {
|
|||||||
make -j"$(nproc)" world
|
make -j"$(nproc)" world
|
||||||
|
|
||||||
popd || return 1
|
popd || return 1
|
||||||
|
exit # TODO exit here for fromSource() testing
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -493,19 +494,26 @@ askOk() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
reset() {
|
resetAll() {
|
||||||
debug "${FUNCNAME[0]}"
|
debug "${FUNCNAME[0]}"
|
||||||
askOk "Remove $FILESDIR $BUILDDIR/sources $BUILDDIR/bin?" || exit $?
|
askOk "Remove ${BUILDDIR:-${SCRIPTDIR:?}}/sources ${BUILDDIR:-${SCRIPTDIR:?}}/bin?" || exit $?
|
||||||
debug "rm -rf $FILESDIR $BUILDDIR/sources $BUILDDIR/bin"
|
debug "rm -rf ${BUILDDIR:-${SCRIPTDIR:?}}/sources ${BUILDDIR:-${SCRIPTDIR:?}}/bin"
|
||||||
rm -rf "$FILESDIR" "${BUILDDIR:?}/sources" "${BUILDDIR:?}/bin"
|
rm -rf "${BUILDDIR:-${SCRIPTDIR:?}}/sources" "${BUILDDIR:-${SCRIPTDIR:?}}/bin"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
resetProfile() {
|
||||||
|
debug "${FUNCNAME[0]}"
|
||||||
|
askOk "Remove ${P_ARR[source_dir]} ${P_ARR[bin_dir]}?" || exit $?
|
||||||
|
debug "rm -rf ${P_ARR[source_dir]} ${P_ARR[bin_dir]}"
|
||||||
|
rm -rf "${P_ARR[source_dir]}" "${P_ARR[bin_dir]}"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
loadProfiles() {
|
loadProfiles() {
|
||||||
debug "${FUNCNAME[0]}"
|
debug "${FUNCNAME[0]}"
|
||||||
declare -g SCRIPTDIR PFILE
|
declare -g PFILE
|
||||||
# https://stackoverflow.com/a/4774063
|
# https://stackoverflow.com/a/4774063
|
||||||
SCRIPTDIR="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 || exit $? ; pwd -P )"
|
|
||||||
PFILE="$SCRIPTDIR/profiles"
|
PFILE="$SCRIPTDIR/profiles"
|
||||||
# shellcheck source=./profiles
|
# shellcheck source=./profiles
|
||||||
! source "$PFILE" && echo "profiles file missing!" && return 1
|
! source "$PFILE" && echo "profiles file missing!" && return 1
|
||||||
@@ -515,7 +523,7 @@ loadProfiles() {
|
|||||||
init() {
|
init() {
|
||||||
debug "${FUNCNAME[0]}"
|
debug "${FUNCNAME[0]}"
|
||||||
|
|
||||||
declare -g ID RPM_MGR
|
declare -g ID RPM_MGR SCRIPTDIR
|
||||||
|
|
||||||
echo "Starting openwrtbuilder"
|
echo "Starting openwrtbuilder"
|
||||||
debug || echo "To enable debugging output, use --debug or -d"
|
debug || echo "To enable debugging output, use --debug or -d"
|
||||||
@@ -589,6 +597,8 @@ init() {
|
|||||||
pkg_install(){ sudo pacman -S --noconfirm --needed "$@"; }
|
pkg_install(){ sudo pacman -S --noconfirm --needed "$@"; }
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
SCRIPTDIR="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 || exit $? ; pwd -P )"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -601,9 +611,14 @@ main() {
|
|||||||
|
|
||||||
readInput "$@"
|
readInput "$@"
|
||||||
|
|
||||||
(( RESET )) && reset
|
if [[ ${#PROFILES} -lt 1 ]]; then
|
||||||
|
if (( RESET )); then
|
||||||
[[ ${#PROFILES} -lt 1 ]] && echo "No profile supplied" && return 1
|
resetAll
|
||||||
|
exit
|
||||||
|
else
|
||||||
|
echo "No profile supplied" && return 1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
installDependencies
|
installDependencies
|
||||||
|
|
||||||
@@ -621,13 +636,13 @@ main() {
|
|||||||
: "${P_ARR[release]:=${USER_RELEASE:-$RELEASE}}" # precedence: profile>user input>env>hardcode
|
: "${P_ARR[release]:=${USER_RELEASE:-$RELEASE}}" # precedence: profile>user input>env>hardcode
|
||||||
: "${P_ARR[source_archive]:=$BUILDDIR/sources/${P_ARR[profile]}-${P_ARR[release]}.tar.xz}"
|
: "${P_ARR[source_archive]:=$BUILDDIR/sources/${P_ARR[profile]}-${P_ARR[release]}.tar.xz}"
|
||||||
: "${P_ARR[source_dir]:=${P_ARR[source_archive]%.tar.xz}}"
|
: "${P_ARR[source_dir]:=${P_ARR[source_archive]%.tar.xz}}"
|
||||||
: "${P_ARR[out_bin_dir]:=$BUILDDIR/bin/${P_ARR[profile]}-${P_ARR[release]}}"
|
: "${P_ARR[bin_dir]:=$BUILDDIR/bin/${P_ARR[profile]}-${P_ARR[release]}}"
|
||||||
|
|
||||||
declare out_prefix
|
declare out_prefix
|
||||||
if [[ "${P_ARR[release]}" == "snapshot" ]]; then
|
if [[ "${P_ARR[release]}" == "snapshot" ]]; then
|
||||||
out_prefix="${P_ARR[out_bin_dir]}/openwrt-${P_ARR[target]//\//-}-${P_ARR[profile]}"
|
out_prefix="${P_ARR[bin_dir]}/openwrt-${P_ARR[target]//\//-}-${P_ARR[profile]}"
|
||||||
else
|
else
|
||||||
out_prefix="${P_ARR[out_bin_dir]}/openwrt-${P_ARR[release]}-${P_ARR[target]//\//-}-${P_ARR[profile]}"
|
out_prefix="${P_ARR[bin_dir]}/openwrt-${P_ARR[release]}-${P_ARR[target]//\//-}-${P_ARR[profile]}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
: "${P_ARR[factory_img]:=$out_prefix-${P_ARR[filesystem]}-factory.img}"
|
: "${P_ARR[factory_img]:=$out_prefix-${P_ARR[filesystem]}-factory.img}"
|
||||||
@@ -644,6 +659,8 @@ main() {
|
|||||||
for x in "${!P_ARR[@]}"; do printf "%s=%s\n" "$x" "${P_ARR[$x]}"; done
|
for x in "${!P_ARR[@]}"; do printf "%s=%s\n" "$x" "${P_ARR[$x]}"; done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
(( RESET )) && resetProfile
|
||||||
|
|
||||||
# Experimental
|
# Experimental
|
||||||
(( FROM_SOURCE )) && fromSource
|
(( FROM_SOURCE )) && fromSource
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user