🏗️」 wip: started mounting setup

This commit is contained in:
2025-09-08 22:54:56 +02:00
parent 9f10aa353e
commit c7ada859b9
2 changed files with 12 additions and 3 deletions

View File

@ -1,8 +1,8 @@
- [ ] make partition (ext4)
- [ ] root (30gb) (ext4)
- [ ] swapppp (2gb) (swap)
- [ ] root (30gb) (ext4) (/)
- [ ] swapppp (2gb) (swap)
- [ ] grub bios partition (1mb) (???)
- [ ] boot partition (500mb) (fat32)
- [ ] boot partition (500mb) (fat32) (/boot)
- [ ] soft to install
- [ ] acl

9
src/mount.sh Normal file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env sh
mkdir -pv "$LFS"
#mount -v -t ext4 /dev/
mkdir -pv "$LFS/boot"
chown root:root "$LFS"
chmod 755 "$LFS"