Compare commits
4 commits
39616337c3
...
1c05d0fb38
Author | SHA1 | Date | |
---|---|---|---|
|
1c05d0fb38 | ||
|
703dc28274 | ||
|
3e8f83950d | ||
|
cf1b6b5443 |
2 changed files with 5 additions and 3 deletions
7
blend-inst
Executable file → Normal file
7
blend-inst
Executable file → Normal file
|
@ -149,17 +149,17 @@ def inst_partition(config):
|
|||
# Create GPT label
|
||||
exec(['parted', '-s', device, 'mklabel', 'gpt'])
|
||||
# Create EFI partition
|
||||
exec(['parted', '-s', device, 'mkpart', 'fat32', '0', '500'])
|
||||
exec(['parted', '-s', device, 'mkpart', 'fat32', '0%', '512MiB'])
|
||||
else:
|
||||
# Create msdos label
|
||||
exec(['parted', '-s', device, 'mklabel', 'msdos'])
|
||||
# Create boot partition
|
||||
exec(['parted', '-s', device, 'mkpart',
|
||||
'primary', 'ext4', '1MIB', '1400MIB'])
|
||||
'primary', 'ext4', '0%', '512MiB'])
|
||||
|
||||
# Create root partition
|
||||
exec(['parted', '-s', device, 'mkpart',
|
||||
'primary', 'ext4', '1500MB', '100%'])
|
||||
'primary', 'ext4', '513MiB', '100%'])
|
||||
|
||||
global orig_main_partition
|
||||
|
||||
|
@ -351,6 +351,7 @@ def inst_akshara(config):
|
|||
['locale-gen'])
|
||||
|
||||
system_config = {
|
||||
'arch-repo': 'https://geo.mirror.pkgbuild.com',
|
||||
'repo': 'https://pkg-repo.blendos.co',
|
||||
'impl': 'http://github.com/blend-os/tracks/raw/main',
|
||||
'track': 'default-gnome'
|
||||
|
|
1
blend-postinst
Executable file → Normal file
1
blend-postinst
Executable file → Normal file
|
@ -61,6 +61,7 @@ def mkdir(path):
|
|||
|
||||
def inst_system_config(config):
|
||||
system_config = {
|
||||
'arch-repo': 'https://geo.mirror.pkgbuild.com',
|
||||
'repo': 'https://pkg-repo.blendos.co',
|
||||
'impl': 'http://github.com/blend-os/tracks/raw/main',
|
||||
'track': 'default-gnome'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue