From 7185c3fe82486d51a8292866fad22d4a7a7a1b3a Mon Sep 17 00:00:00 2001 From: kprkpr Date: Mon, 6 Jun 2016 08:39:20 +0200 Subject: [PATCH] changes --- archinstall/archinstall.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/archinstall/archinstall.sh b/archinstall/archinstall.sh index 2265bea..8636a41 100755 --- a/archinstall/archinstall.sh +++ b/archinstall/archinstall.sh @@ -127,8 +127,10 @@ if [[ ! $optpa -eq 3 ]];then done #Detectar tipo de tabla de particiones (gpt o msdos) y si es gpt, preparar para UEFI + echo "$(parted /dev/${hd} p | grep "Partition Table" | awk '1 {print $3}')" tabletype="$(parted /dev/${hd} p | grep "Partition Table" | awk '1 {print $3}')" echo $tabletype + pause if [[ $tabletype -eq "gpt" ]];then mostrardialog "GPT Partition Table" "Estas usando el estilo de particiones GPT, que utiliza UEFI, recuerda que tendras que tener y seleccionar la particion UEFI del sistema" fi