소스 검색

installer: drop parted and switch to cfdisk.

Juan RP 10 년 전
부모
커밋
ad34e8f792
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      installer.sh.in

+ 2 - 2
installer.sh.in

@@ -242,7 +242,7 @@ menu_partitions() {
         local device=$(cat $ANSWER)
 
         DIALOG --title "Modify Partition Table on $device" --msgbox "\n
-${BOLD}GNU parted will be executed in disk $device.${RESET}\n\n
+${BOLD}cfdisk will be executed in disk $device.${RESET}\n\n
 For BIOS systems, MBR or GPT partition tables are supported.\n
 To use GPT on PC BIOS systems an empty partition of 1MB must be added\n
 at the first 2GB of the disk with the TOGGLE \`bios_grub' enabled.\n
@@ -257,7 +257,7 @@ ${BOLD}WARNING: changes made by parted are destructive, you've been warned.
 ${RESET}\n" 18 80
         if [ $? -eq 0 ]; then
             while true; do
-                clear; parted $device; PARTITIONS_DONE=1; partprobe $device
+                clear; cfdisk $device; PARTITIONS_DONE=1; partx -a $device
                 break
             done
         else