debian support

This commit is contained in:
Patrick 2024-11-10 18:03:47 +01:00
parent de19951611
commit f31aa555e7
12 changed files with 203 additions and 56 deletions

View file

@ -2,6 +2,6 @@ set timeout=0
set default=0
menuentry "Linux" {
linux /boot/vmlinuz root=/dev/sr0
initrd /boot/initrd.img
linux /vmlinuz root=/dev/sr0
initrd /initrd.img
}

View file

@ -1,42 +0,0 @@
#!/bin/bash
# linux-deployment-scripts
# Copyright (C) 2024 VM-Experiments
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
parted -s /dev/sda mklabel msdos
parted -s /dev/sda mkpart primary linux-swap 0% 2GiB
parted -s /dev/sda mkpart primary ext4 2GiB 100%
mkswap /dev/sda1
mkfs.ext4 /dev/sda2
mount /dev/sda2 /mnt
swapon /dev/sda1
tar -xzvf /rootfs.tar.gz -C /mnt
genfstab -U /mnt >>/mnt/etc/fstab
mount --bind /dev /mnt/dev
mount --bind /proc /mnt/proc
mount --bind /sys /mnt/sys
chroot /mnt /bin/bash -c "grub-mkconfig -o /boot/grub/grub.cfg"
chroot /mnt /bin/bash -c "grub-install /dev/sda"
umount -R /mnt
reboot