Skip to content

Commit 25dc63d

Browse files
2022.03 Release
1 parent 9f9113e commit 25dc63d

File tree

9 files changed

+24
-24
lines changed

9 files changed

+24
-24
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Some developers may also wish to [build MassOS themselves](building.md) using th
1818
# About This Repo
1919
This repo contains the scripts which are used to build the complete MassOS system. Most people won't want to run these. Instead, you can download the latest release tarball of MassOS from the [releases page](https://github.com/TheSonicMaster/MassOS/releases).
2020
# Releases
21-
The latest release of MassOS is **2022.02**.
21+
The latest release of MassOS can be downloaded from the [releases page](https://github.com/TheSonicMaster/MassOS/releases). From there you can also view the release notes and check out past releases too.
2222

2323
Release numbers follow the format **YYYY.MM**. For example: the August 2021 release was **2021.08**. On a working MassOS system, you can check the version by running `massos-release`. There is a new release of MassOS roughly once or twice per month. New releases will usually include updated software. A new release in the same month as an existing release will typically be less major, and will have a version in the format **YYYY.MM.2**. You can upgrade an existing MassOS installation by using the [MassOS Upgrade Utility](https://github.com/TheSonicMaster/massos-upgrade).
2424

build-system.sh

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6682,19 +6682,19 @@ install -t /usr/share/licenses/busybox -Dm644 LICENSE
66826682
cd ..
66836683
rm -rf busybox-1.35.0
66846684
# Linux Kernel.
6685-
tar -xf linux-5.16.11.tar.xz
6686-
cd linux-5.16.11
6685+
tar -xf linux-5.16.12.tar.xz
6686+
cd linux-5.16.12
66876687
cp ../kernel-config .config
66886688
make olddefconfig
66896689
make
66906690
make INSTALL_MOD_STRIP=1 modules_install
6691-
cp arch/x86/boot/bzImage /boot/vmlinuz-5.16.11-massos
6692-
cp arch/x86/boot/bzImage /usr/lib/modules/5.16.11-massos/vmlinuz
6693-
cp System.map /boot/System.map-5.16.11-massos
6694-
cp .config /boot/config-5.16.11-massos
6695-
rm /usr/lib/modules/5.16.11-massos/{source,build}
6691+
cp arch/x86/boot/bzImage /boot/vmlinuz-5.16.12-massos
6692+
cp arch/x86/boot/bzImage /usr/lib/modules/5.16.12-massos/vmlinuz
6693+
cp System.map /boot/System.map-5.16.12-massos
6694+
cp .config /boot/config-5.16.12-massos
6695+
rm /usr/lib/modules/5.16.12-massos/{source,build}
66966696
make -s kernelrelease > version
6697-
builddir=/usr/lib/modules/5.16.11-massos/build
6697+
builddir=/usr/lib/modules/5.16.12-massos/build
66986698
install -Dt "$builddir" -m644 .config Makefile Module.symvers System.map version vmlinux
66996699
install -Dt "$builddir/kernel" -m644 kernel/Makefile
67006700
install -Dt "$builddir/arch/x86" -m644 arch/x86/Makefile
@@ -6718,7 +6718,7 @@ find "$builddir" -type f -name '*.o' -delete
67186718
ln -sr "$builddir" "/usr/src/linux"
67196719
install -t /usr/share/licenses/linux -Dm644 COPYING LICENSES/exceptions/* LICENSES/preferred/*
67206720
cd ..
6721-
rm -rf linux-5.16.11
6721+
rm -rf linux-5.16.12
67226722
# MassOS release detection utility.
67236723
gcc $CFLAGS massos-release.c -o massos-release -s
67246724
install -m755 massos-release /usr/bin/massos-release

installation-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ It also includes the following upgraded software, however there may be more befo
4848
- libxfce4ui: `4.17.3 --> 4.17.4`
4949
- libxfce4util: `4.17.1 --> 4.17.2`
5050
- libxml2: `2.9.12 --> 2.9.13`
51-
- Linux Kernel: `5.16.10 --> 5.16.11`
51+
- Linux Kernel: `5.16.10 --> 5.16.12`
5252
- lxml: `4.7.1 --> 4.8.0`
5353
- Mesa: `21.3.6 --> 21.3.7`
5454
- Nano: `6.1 --> 6.2`

source-urls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ https://www.x.org/archive/individual/lib/libXxf86vm-1.1.4.tar.bz2
350350
https://libzip.org/download/libzip-1.8.0.tar.xz
351351
https://github.com/CanonicalLtd/lightdm/releases/download/1.30.0/lightdm-1.30.0.tar.xz
352352
https://github.com/Xubuntu/lightdm-gtk-greeter/releases/download/lightdm-gtk-greeter-2.0.8/lightdm-gtk-greeter-2.0.8.tar.gz
353-
https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.16.11.tar.xz
353+
https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.16.12.tar.xz
354354
https://github.com/linux-pam/linux-pam/releases/download/v1.5.2/Linux-PAM-1.5.2.tar.xz
355355
https://github.com/linux-pam/linux-pam/releases/download/v1.5.2/Linux-PAM-1.5.2-docs.tar.xz
356356
https://github.com/llvm/llvm-project/releases/download/llvmorg-13.0.1/llvm-13.0.1.src.tar.xz

stage1.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ cat gcc/limitx.h gcc/glimits.h gcc/limity.h > `dirname $($MASSOS_TARGET-gcc -pri
6565
cd ..
6666
rm -rf gcc-11.2.0
6767
# Linux API Headers.
68-
tar -xf linux-5.16.11.tar.xz
69-
cd linux-5.16.11
68+
tar -xf linux-5.16.12.tar.xz
69+
cd linux-5.16.12
7070
make headers
7171
find usr/include -name '.*' -delete
7272
rm usr/include/Makefile
7373
cp -r usr/include "$MASSOS"/usr
7474
cd ..
75-
rm -rf linux-5.16.11
75+
rm -rf linux-5.16.12
7676
# Glibc
7777
tar -xf glibc-2.35.tar.xz
7878
cd glibc-2.35

utils/kernel-config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#
22
# Automatically generated file; DO NOT EDIT.
3-
# Linux/x86 5.16.11 Kernel Configuration
3+
# Linux/x86 5.16.12 Kernel Configuration
44
#
55
CONFIG_CC_VERSION_TEXT="gcc (GCC) 11.2.0"
66
CONFIG_CC_IS_GCC=y

utils/lsb-release

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
LSB_VERSION="0.9"
22
DISTRIB_ID="MassOS"
3-
DISTRIB_RELEASE="development"
4-
DISTRIB_CODENAME="development"
3+
DISTRIB_RELEASE="2022.03"
4+
DISTRIB_CODENAME="2022.03"
55
DISTRIB_DESCRIPTION="MassOS"

utils/massos-release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
development
1+
2022.03

utils/os-release

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
NAME="MassOS"
2-
VERSION="development"
3-
VERSION_ID="development"
2+
VERSION="2022.03"
3+
VERSION_ID="2022.03"
44
ID="massos"
5-
PRETTY_NAME="MassOS development"
6-
BUILD_ID="development"
7-
VERSION_CODENAME="development"
5+
PRETTY_NAME="MassOS 2022.03"
6+
BUILD_ID="2022.03"
7+
VERSION_CODENAME="2022.03"
88
HOME_URL="https://massos.org"
99
SUPPORT_URL="https://github.com/MassOS-Linux/MassOS/wiki"
1010
BUG_REPORT_URL="https://github.com/MassOS-Linux/MassOS/issues"

0 commit comments

Comments
 (0)