From faedda310275334d4fe9b84ef50f99a5480f4910 Mon Sep 17 00:00:00 2001 From: Werner Date: Thu, 12 Nov 2020 07:50:35 +0100 Subject: [PATCH] Mark Bionic as host EOS (#2316) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Mark Bionic as host EOS * Update README.md Co-authored-by: Igor Pečovnik --- README.md | 2 +- lib/general.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 47b224c9c9..b68cc69cc2 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ build tools ## What do you need to get started? - x64 machine with at least 2GB of memory and ~35GB of disk space for the VM, container or native OS, -- Ubuntu Bionic 18.04 / Focal 20.04 x64 for native building or any [Docker](https://docs.armbian.com/Developer-Guide_Building-with-Docker/) capable x64 Linux for containerised, +- Ubuntu Focal 20.04 x64 for native building or any [Docker](https://docs.armbian.com/Developer-Guide_Building-with-Docker/) capable x64 Linux for containerised, - superuser rights (configured sudo or root access).

diff --git a/lib/general.sh b/lib/general.sh index 9db3d4e576..f30ce51a04 100644 --- a/lib/general.sh +++ b/lib/general.sh @@ -990,12 +990,12 @@ prepare_host() display_alert "Build host OS release" "${codename:-(unknown)}" "info" # Ubuntu Focal x86_64 is the only fully supported host OS release - # Ubuntu Bionic x86_64 support is legacy until it breaks + # Ubuntu Bionic x86_64 support is no longer supported # Using Docker/VirtualBox/Vagrant is the only supported way to run the build script on other Linux distributions # # NO_HOST_RELEASE_CHECK overrides the check for a supported host system # Disable host OS check at your own risk, any issues reported with unsupported releases will be closed without a discussion - if [[ -z $codename || "bionic buster groovy focal debbie tricia ulyana" != *"$codename"* ]]; then + if [[ -z $codename || "buster groovy focal debbie tricia ulyana" != *"$codename"* ]]; then if [[ $NO_HOST_RELEASE_CHECK == yes ]]; then display_alert "You are running on an unsupported system" "${codename:-(unknown)}" "wrn" display_alert "Do not report any errors, warnings or other issues encountered beyond this point" "" "wrn"