From f5d7884eb22ab15a5a5c7a70cfcecec8cce360b8 Mon Sep 17 00:00:00 2001 From: xengineering Date: Tue, 17 Dec 2019 13:47:27 +0100 Subject: Renamed boot_partition to efi_partition and root_partition to main_partition. --- stages/first_stage.sh | 10 +++++----- stages/second_stage.sh | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'stages') diff --git a/stages/first_stage.sh b/stages/first_stage.sh index 8b9d640..a491067 100644 --- a/stages/first_stage.sh +++ b/stages/first_stage.sh @@ -32,8 +32,8 @@ python $REPOSITORY_PATH/util/write_config.py $CONFIG_FILE_PATH export disk=$(python $REPOSITORY_PATH/util/read_config_string.py $CONFIG_FILE_PATH "disk") export disk_path=/dev/$disk -export boot_partition_path="${disk_path}1" -export root_partition_path="${disk_path}2" +export efi_partition_path="${disk_path}1" +export main_partition_path="${disk_path}2" export hostname=$(python $REPOSITORY_PATH/util/read_config_string.py $CONFIG_FILE_PATH "hostname") export desktop=$(python $REPOSITORY_PATH/util/read_config_string.py $CONFIG_FILE_PATH "desktop") export admin_username=$(python $REPOSITORY_PATH/util/read_config_string.py $CONFIG_FILE_PATH "admin_username") @@ -45,9 +45,9 @@ bash check_bootmode.sh bash partition_disk.sh $disk_path -bash create_filesystems.sh $boot_partition_path $root_partition_path +bash create_filesystems.sh $efi_partition_path $main_partition_path -bash mount_filesystems.sh $root_partition_path +bash mount_filesystems.sh $main_partition_path bash install_packages.sh $desktop @@ -59,6 +59,6 @@ echo "bash second_stage.sh" | arch-chroot /mnt bash copy_archinstall_log.sh $LOG_FILE_PATH -bash unmount_filesystems.sh $root_partition_path +bash unmount_filesystems.sh $main_partition_path bash print_final_message.sh $DEFAULT_PASSWORD diff --git a/stages/second_stage.sh b/stages/second_stage.sh index 7020b6b..5ad7745 100644 --- a/stages/second_stage.sh +++ b/stages/second_stage.sh @@ -31,6 +31,6 @@ bash configure_network.sh $hostname bash configure_users.sh $admin_username $DEFAULT_PASSWORD -bash install_bootloader.sh $boot_partition_path +bash install_bootloader.sh $efi_partition_path bash configure_desktop.sh -- cgit v1.2.3-70-g09d2