From b32c3a7a93b80531f97939cf33d47eb2a9ecb957 Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Thu, 7 Sep 2023 21:35:30 +0400 Subject: [PATCH] Small improvements --- .gitignore | 2 +- Makefile | 2 +- boot/grub/grub.cfg | 6 +----- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 21c729d..fe5cfa9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -/boot/bzImage +/boot/bzImage* /build/ /image.iso /musl-gcc.specs diff --git a/Makefile b/Makefile index 8640f79..79a2272 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ SYSROOT_TARGETS = \ $(SYSROOT)/usr/lib/libc.a all: fhs $(SYSROOT_TARGETS) - $(CHOWN) -R kotovalexarian:kotovalexarian $(SYSROOT) + $(CHOWN) -R user:user $(SYSROOT) clean: $(RM) -rf $(BUILDDIR) $(SYSROOT) musl-gcc.specs diff --git a/boot/grub/grub.cfg b/boot/grub/grub.cfg index ab44349..b61d90e 100644 --- a/boot/grub/grub.cfg +++ b/boot/grub/grub.cfg @@ -1,9 +1,5 @@ -set timeout=10 +set timeout=5 menuentry "Linux" { linux /boot/bzImage root=/dev/sr0 rootfstype=iso9660 } - -menuentry "Tailix" { - multiboot2 /boot/tailix.multiboot2 -}