Skip to content

Commit

Permalink
ubuntu: provide old (previous) lts version
Browse files Browse the repository at this point in the history
  • Loading branch information
sylirre committed Jan 31, 2024
1 parent 4f1a10b commit e0376e4
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 6 deletions.
46 changes: 46 additions & 0 deletions distro-build/ubuntu-oldlts.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
dist_name="Ubuntu"

# Must contain current previous LTS version.
dist_version="jammy"

bootstrap_distribution() {
sudo rm -f "${ROOTFS_DIR}"/ubuntu-*.tar.xz

for arch in arm64 armhf amd64; do
sudo rm -rf "${WORKDIR}/ubuntu-$(translate_arch "$arch")"
sudo mmdebstrap \
--architectures=${arch} \
--variant=apt \
--components="main,universe,multiverse" \
--include="locales,passwd" \
--format=directory \
"${dist_version}" \
"${WORKDIR}/ubuntu-$(translate_arch "$arch")"
archive_rootfs "${ROOTFS_DIR}/ubuntu-$(translate_arch "$arch")-pd-${CURRENT_VERSION}.tar.xz" \
"ubuntu-$(translate_arch "$arch")"
done
unset arch
}

write_plugin() {
cat <<- EOF > "${PLUGIN_DIR}/ubuntu.sh"
# This is a default distribution plug-in.
# Do not modify this file as your changes will be overwritten on next update.
# If you want customize installation, please make a copy.
DISTRO_NAME="Ubuntu"
DISTRO_COMMENT="Standard release (${dist_version}). Not available for x86 32-bit (i686) CPUs."
TARBALL_URL['aarch64']="${GIT_RELEASE_URL}/ubuntu-${dist_version}-aarch64-pd-${CURRENT_VERSION}.tar.xz"
TARBALL_SHA256['aarch64']="$(sha256sum "${ROOTFS_DIR}/ubuntu-${dist_version}-aarch64-pd-${CURRENT_VERSION}.tar.xz" | awk '{ print $1}')"
TARBALL_URL['arm']="${GIT_RELEASE_URL}/ubuntu-${dist_version}-arm-pd-${CURRENT_VERSION}.tar.xz"
TARBALL_SHA256['arm']="$(sha256sum "${ROOTFS_DIR}/ubuntu-${dist_version}-arm-pd-${CURRENT_VERSION}.tar.xz" | awk '{ print $1}')"
TARBALL_URL['x86_64']="${GIT_RELEASE_URL}/ubuntu-${dist_version}-x86_64-pd-${CURRENT_VERSION}.tar.xz"
TARBALL_SHA256['x86_64']="$(sha256sum "${ROOTFS_DIR}/ubuntu-${dist_version}-x86_64-pd-${CURRENT_VERSION}.tar.xz" | awk '{ print $1}')"
distro_setup() {
${TAB}# Configure en_US.UTF-8 locale.
${TAB}sed -i -E 's/#[[:space:]]?(en_US.UTF-8[[:space:]]+UTF-8)/\1/g' ./etc/locale.gen
${TAB}run_proot_cmd DEBIAN_FRONTEND=noninteractive dpkg-reconfigure locales
}
EOF
}
14 changes: 8 additions & 6 deletions distro-build/ubuntu.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
dist_name="Ubuntu"

# Must contain current latest LTS version.
dist_version="mantic"

bootstrap_distribution() {
Expand Down Expand Up @@ -28,12 +30,12 @@ write_plugin() {
DISTRO_NAME="Ubuntu"
DISTRO_COMMENT="Standard release (${dist_version}). Not available for x86 32-bit (i686) CPUs."
TARBALL_URL['aarch64']="${GIT_RELEASE_URL}/ubuntu-aarch64-pd-${CURRENT_VERSION}.tar.xz"
TARBALL_SHA256['aarch64']="$(sha256sum "${ROOTFS_DIR}/ubuntu-aarch64-pd-${CURRENT_VERSION}.tar.xz" | awk '{ print $1}')"
TARBALL_URL['arm']="${GIT_RELEASE_URL}/ubuntu-arm-pd-${CURRENT_VERSION}.tar.xz"
TARBALL_SHA256['arm']="$(sha256sum "${ROOTFS_DIR}/ubuntu-arm-pd-${CURRENT_VERSION}.tar.xz" | awk '{ print $1}')"
TARBALL_URL['x86_64']="${GIT_RELEASE_URL}/ubuntu-x86_64-pd-${CURRENT_VERSION}.tar.xz"
TARBALL_SHA256['x86_64']="$(sha256sum "${ROOTFS_DIR}/ubuntu-x86_64-pd-${CURRENT_VERSION}.tar.xz" | awk '{ print $1}')"
TARBALL_URL['aarch64']="${GIT_RELEASE_URL}/ubuntu-${dist_version}-aarch64-pd-${CURRENT_VERSION}.tar.xz"
TARBALL_SHA256['aarch64']="$(sha256sum "${ROOTFS_DIR}/ubuntu-${dist_version}-aarch64-pd-${CURRENT_VERSION}.tar.xz" | awk '{ print $1}')"
TARBALL_URL['arm']="${GIT_RELEASE_URL}/ubuntu-${dist_version}-arm-pd-${CURRENT_VERSION}.tar.xz"
TARBALL_SHA256['arm']="$(sha256sum "${ROOTFS_DIR}/ubuntu-${dist_version}-arm-pd-${CURRENT_VERSION}.tar.xz" | awk '{ print $1}')"
TARBALL_URL['x86_64']="${GIT_RELEASE_URL}/ubuntu-${dist_version}-x86_64-pd-${CURRENT_VERSION}.tar.xz"
TARBALL_SHA256['x86_64']="$(sha256sum "${ROOTFS_DIR}/ubuntu-${dist_version}-x86_64-pd-${CURRENT_VERSION}.tar.xz" | awk '{ print $1}')"
distro_setup() {
${TAB}# Configure en_US.UTF-8 locale.
Expand Down

0 comments on commit e0376e4

Please sign in to comment.