kernel=5.8.7, glibc=2.32, busybox=1.32.0

This commit is contained in:
Ivan Davidov 2020-09-05 17:56:59 +03:00
parent 4046c80919
commit 2f34b4f0dc
2 changed files with 15 additions and 10 deletions

View File

@ -53,14 +53,15 @@ Did I mention the [YouTube channel](https://youtu.be/u5KYDaCLChc?list=PLe3TW5jDb
### Current development state ### Current development state
As of **15-Dec-2019**: As of **05-Sep-2020**:
* Linux kernel 5.4.3 (stable) * Linux kernel 5.8.7
* GNU C Library 2.30 (stable) * GNU C Library 2.32
* Busybox 1.31.1 (stable) * Busybox 1.32.0
* Stable build on default Ubuntu 18.04.3 installation with applied system updates.
Here are some screenshots of the current development version of Minimal Linux Live: Stable build on default Ubuntu 20.04.1 installation with applied system updates.
Here are some screenshots of the latest published version of Minimal Linux Live:
![Minimal Linux Live](docs/www/assets/img/nikola.png) ![Minimal Linux Live](docs/www/assets/img/nikola.png)
@ -79,6 +80,10 @@ Take a look at the [issues](http://github.com/ivandavidov/minimal/issues) page w
The section below is for Ubuntu and other Debian based distros. The section below is for Ubuntu and other Debian based distros.
``` ```
# Update/upgrade the host machine
sudo apt update
sudo apt upgrade -y
# Resolve build dependencies # Resolve build dependencies
sudo apt install wget make gawk gcc bc bison flex xorriso libelf-dev libssl-dev sudo apt install wget make gawk gcc bc bison flex xorriso libelf-dev libssl-dev

View File

@ -11,19 +11,19 @@
# #
# http://kernel.org # http://kernel.org
# #
KERNEL_SOURCE_URL=http://kernel.org/pub/linux/kernel/v5.x/linux-5.4.3.tar.xz KERNEL_SOURCE_URL=http://kernel.org/pub/linux/kernel/v5.x/linux-5.8.7.tar.xz
# You can find the latest GNU C library source bundles here: # You can find the latest GNU C library source bundles here:
# #
# http://gnu.org/software/libc # http://gnu.org/software/libc
# #
GLIBC_SOURCE_URL=http://ftp.gnu.org/gnu/glibc/glibc-2.30.tar.bz2 GLIBC_SOURCE_URL=http://ftp.gnu.org/gnu/glibc/glibc-2.32.tar.bz2
# You can find the latest Busybox source bundles here: # You can find the latest Busybox source bundles here:
# #
# http://busybox.net # http://busybox.net
# #
BUSYBOX_SOURCE_URL=http://busybox.net/downloads/busybox-1.31.1.tar.bz2 BUSYBOX_SOURCE_URL=http://busybox.net/downloads/busybox-1.32.0.tar.bz2
# You can find the latest Syslinux source bundles here: # You can find the latest Syslinux source bundles here:
# #
@ -181,7 +181,7 @@ OVERLAY_TYPE=folder
# * mll_logo # * mll_logo
# * mll_source # * mll_source
# #
OVERLAY_BUNDLES=dhcp,mll_hello,mll_logo,mll_source,mll_nikola OVERLAY_BUNDLES=dhcp,mll_hello,mll_logo,mll_source
# The location where the overlay bundle software will be stored. # The location where the overlay bundle software will be stored.
# #