diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index d78d98a70..55cb22e0f 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -3,17 +3,17 @@
-
+
https://github.com/dotnet/arcade
- e58820063a8754d418518bce69ca2df0e3b4ac25
+ 98b4ae348fa01b99dc6fbfc8f601efd9b90090db
-
+
https://github.com/dotnet/arcade
- e58820063a8754d418518bce69ca2df0e3b4ac25
+ 98b4ae348fa01b99dc6fbfc8f601efd9b90090db
-
+
https://github.com/dotnet/arcade
- e58820063a8754d418518bce69ca2df0e3b4ac25
+ 98b4ae348fa01b99dc6fbfc8f601efd9b90090db
diff --git a/eng/Versions.props b/eng/Versions.props
index b120ce7d6..e738e64c0 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -15,7 +15,7 @@
8.0.0
8.0.0
8.0.0
- 10.0.0-beta.24613.2
+ 10.0.0-beta.25061.1
6.0.36
0.2.0-alpha.24576.2
10.0.0-beta.25056.1
diff --git a/eng/common/cross/build-rootfs.sh b/eng/common/cross/build-rootfs.sh
index 6f49d7482..74f399716 100755
--- a/eng/common/cross/build-rootfs.sh
+++ b/eng/common/cross/build-rootfs.sh
@@ -33,7 +33,6 @@ __QEMUArch=arm
__UbuntuArch=armhf
__UbuntuRepo=
__UbuntuSuites="updates security backports"
-__DebianSuites=
__LLDB_Package="liblldb-3.9-dev"
__SkipUnmount=0
@@ -188,8 +187,7 @@ while :; do
__AlpineArch=loongarch64
__QEMUArch=loongarch64
__UbuntuArch=loong64
- __UbuntuSuites=
- __DebianSuites=unreleased
+ __UbuntuSuites=unreleased
__LLDB_Package="liblldb-19-dev"
if [[ "$__CodeName" == "sid" ]]; then
@@ -782,6 +780,8 @@ elif [[ "$__CodeName" == "haiku" ]]; then
popd
rm -rf "$__RootfsDir/tmp"
elif [[ -n "$__CodeName" ]]; then
+ __Suites="$__CodeName $(for suite in $__UbuntuSuites; do echo -n "$__CodeName-$suite "; done)"
+
if [[ "$__SkipEmulation" == "1" ]]; then
if [[ -z "$AR" ]]; then
if command -v ar &>/dev/null; then
@@ -794,19 +794,16 @@ elif [[ -n "$__CodeName" ]]; then
fi
fi
- # shellcheck disable=SC2086
- suites="$__CodeName $__DebianSuites $(echo $__UbuntuSuites | xargs -n 1 | xargs -I {} echo -n "$__CodeName-{} ")"
-
PYTHON=${PYTHON_EXECUTABLE:-python3}
# shellcheck disable=SC2086,SC2046
echo running "$PYTHON" "$__CrossDir/install-debs.py" --arch "$__UbuntuArch" --mirror "$__UbuntuRepo" --rootfsdir "$__RootfsDir" --artool "$AR" \
- $(echo $suites | xargs -n 1 | xargs -I {} echo -n "--suite {} ") \
+ $(for suite in $__Suites; do echo -n "--suite $suite "; done) \
$__UbuntuPackages
# shellcheck disable=SC2086,SC2046
"$PYTHON" "$__CrossDir/install-debs.py" --arch "$__UbuntuArch" --mirror "$__UbuntuRepo" --rootfsdir "$__RootfsDir" --artool "$AR" \
- $(echo $suites | xargs -n 1 | xargs -I {} echo -n "--suite {} ") \
+ $(for suite in $__Suites; do echo -n "--suite $suite "; done) \
$__UbuntuPackages
exit 0
@@ -837,7 +834,7 @@ elif [[ -n "$__CodeName" ]]; then
cat > "$__RootfsDir/etc/apt/sources.list.d/$__CodeName.sources" <