Compare commits

..

No commits in common. "777a1f1cbc51ef8e9666ffefa3b0c7aec84bdbaf" and "5a0a1a4d4e3527b93c4904d858d8e49910df487e" have entirely different histories.

10 changed files with 14 additions and 51 deletions

View File

@ -10,7 +10,7 @@ then
terminal_output gfxterm
fi
menuentry 'MatterLinux VERSION_HERE ISO' --class os {
menuentry 'MatterLinux ISO' --class os {
insmod gzio
insmod part_msdos
linux /boot/vmlinuz-linux loglevel=3

View File

@ -3,13 +3,15 @@
MMMMMMMMMMMMMMMMMMMM
MMMM MMMM MMMM
MMMM MMMM MMMM
MMMM MMMM MMMM Welcome to \e[32mMatterLinux VERSION_HERE\e[0m\e[1m!
MMMM MMMM MMMM Welcome to \e[32mMatterLinux 24\e[0m\e[1m!
MMMM MMMM MMMM \e[37mKernel:\e[0m\e[1m \r \e[37mArch:\e[0m\e[1m \m \e[37mTTY:\e[0m\e[1m \l
MMMM MMMM MMMM
MMMM MMMM MMMM
\e[34m>>>\e[0m\e[1m Sync before installing packages: matt sync
\e[34m>>>\e[0m\e[1m Login with root:root
\e[34m>>>\e[0m\e[1m Sync before installing packages: mp-sync
\e[34m>>>\e[0m\e[1m For installation: https://matterlinux.xyz/wiki/install
\e[34m>>>\e[0m\e[1m For questions/chat: https://matterlinux.xyz/wiki/chat
\e[34m>>>\e[0m\e[1m Join XMPP for questions: general@conf.matterlinux.xyz
Happy hacking!\e[0m
Happy hacking!
\e[0m

View File

@ -1,17 +0,0 @@
# configuration file for matt, please see the wiki page for more information
# https://matterlinux.xyz/wiki/matt
tmpdir = /var/lib/matt/temp
datadir = /var/lib/matt/data
[base]
url = mptp://stable.matterlinux.xyz/base
# url = mptp://next.matterlinux.xyz/base
[desktop]
# url = mptp://stable.matterlinux.xyz/desktop
# url = mptp://next.matterlinux.xyz/desktop
[server]
# url = mptp://stable.matterlinux.xyz/server
# url = mptp://next.matterlinux.xyz/server

View File

@ -1,3 +0,0 @@
[Service]
ExecStart=
ExecStart=-/usr/sbin/agetty --skip-login --nonewline --autologin root --noclear %I $TERM

View File

@ -1,3 +0,0 @@
[Service]
ExecStart=
ExecStart=-/usr/sbin/agetty --skip-login --nonewline --autologin root --noclear %I $TERM

View File

@ -1,3 +0,0 @@
[Service]
ExecStart=
ExecStart=-/usr/sbin/agetty --skip-login --nonewline --autologin root --noclear %I $TERM

View File

@ -1,3 +0,0 @@
[Service]
ExecStart=
ExecStart=-/usr/sbin/agetty --skip-login --nonewline --autologin root --noclear %I $TERM

View File

@ -1,3 +0,0 @@
[Service]
ExecStart=
ExecStart=-/usr/sbin/agetty --skip-login --nonewline --autologin root --noclear %I $TERM

View File

@ -1,3 +0,0 @@
[Service]
ExecStart=
ExecStart=-/usr/sbin/agetty --skip-login --nonewline --autologin root --noclear %I $TERM

14
iso.sh
View File

@ -1,18 +1,14 @@
NAME="matterlinux"
VERSION="24.05"
VERSION="24.00"
EXCLUDE=("README.md" "LICENSE.txt")
KEYS=("F9E70878C2FB389AEC2BA34CA3654DF5AD9F641D")
# these will be included in initrd image
PKGS1=("dhcpcd" "dosfstools" "mtsc")
# these will not
PKGS1=("systemd" "dhcpcd")
PKGS2=("linux")
BUILD() {
build() {
echo "root:root" | chpasswd
systemd-machine-id-setup
systemctl preset-all
cp /etc/skel/.* /root
cp /usr/sbin/init .
sed -i "s/VERSION_HERE/${VERSION}/g" /etc/issue
sed -i "s/VERSION_HERE/${VERSION}/g" /boot/grub/grub.cfg
}