Compare commits

...

2 Commits

Author SHA1 Message Date
10c0b263e3 🏗️」 wip: wtf is going on 2025-09-10 13:14:18 +02:00
867ab49bba 🏗️」 wip: wtf am i doing 2025-09-09 13:32:43 +02:00
3 changed files with 23 additions and 2 deletions

View File

@ -1,8 +1,14 @@
- [ ] make partition (ext4)
- [ ] create virtual disk
- [ ] create partition
- [ ] make filesystem
- [ ] mount partition(ext4)
- [ ] root (30gb) (ext4) (/)
- [ ] swapppp (2gb) (swap)
- [ ] grub bios partition (1mb) (???)
- [ ] boot partition (500mb) (fat32) (/boot)
- [ ] import the sources
- [ ] create directory
- [ ] create user
- [ ] soft to install
- [ ] acl

View File

@ -1,4 +1,4 @@
#!/usr/bin/env sh
#!/usr/bin/env bash
mkdir -pv "$LFS"
#mount -v -t ext4 /dev/

15
src/prep-dir.sh Normal file
View File

@ -0,0 +1,15 @@
#!/usr/bin/env bash
mkdir -p "$LFS/sources"
mkdir -pv $LFS/{etc,var} $LFS/usr/{bin,lib,sbin}
for i in bin lib sbin; do
ln -sv usr/$i "$LFS/$i"
done
case $(uname -m) in
x86_64) mkdir -pv "$LFS/lib64" ;;
esac
mkdir -pv "$LFS/tools"