Compare commits

..

4 commits

Author SHA1 Message Date
Asterisk
1c05d0fb38
Merge pull request #7 from askiiart/add-arch-repo-for-akshara
Adds arch-repo to system conig
2025-04-08 22:37:31 -04:00
askiiart
703dc28274
add arch-repo to system_config
this makes it work for blend-inst pull #6 and akshara pull #7
2025-04-08 21:20:37 -05:00
Asterisk
3e8f83950d
Merge pull request #6 from askiiart/fix-1gb-empty-block
fix ~1 GiB of wasted space partitioning
2025-04-08 19:49:50 -04:00
askiiart
cf1b6b5443
fix ~1 GiB of wasted space partitioning 2025-04-08 15:01:23 -05:00
2 changed files with 4 additions and 4 deletions

View file

@ -6,7 +6,7 @@ arch=(any)
depends=('squashfs-tools' 'arch-install-scripts' 'util-linux' 'parted')
provides=('blend-inst')
conflicts=('blend-inst')
source=('git-inst::git+https://git.askiiart.net/askiiart-blendos/blend-inst.git')
source=('git-inst::git+https://github.com/blend-os/blend-inst.git')
sha256sums=('SKIP')
pkgver() {

View file

@ -159,7 +159,7 @@ def inst_partition(config):
# Create root partition
exec(['parted', '-s', device, 'mkpart',
'primary', 'btrfs', '513MiB', '100%'])
'primary', 'ext4', '513MiB', '100%'])
global orig_main_partition
@ -176,7 +176,7 @@ def inst_partition(config):
exec(['cryptsetup', 'open', root_partition, 'new_root', '-'], input=f'{password}\n')
root_partition = '/dev/mapper/new_root'
# Format root partition
exec(['mkfs.btrfs', '-f', root_partition])
exec(['mkfs.ext4', '-F', root_partition])
# Mount partitions
mount(root_partition, '/mnt')
mkdir('/mnt/boot')
@ -194,7 +194,7 @@ def inst_partition(config):
exec(['cryptsetup', 'open', root_partition, 'new_root', '-'], input=f'{password}\n')
root_partition = '/dev/mapper/new_root'
# Format root partition
exec(['mkfs.btrfs', '-f', root_partition])
exec(['mkfs.ext4', '-F', root_partition])
# Mount partitions
mount(root_partition, '/mnt')
mkdir('/mnt/boot')