OSDN Git Service

Search for efi partition
[android-x86/bootable-newinstaller.git] / install / scripts / 1-install
index 809daa9..094a032 100644 (file)
@@ -32,7 +32,10 @@ choose()
 partition_drive()
 {
        echo -n > $menufile
-       for i in /sys/block/[sh]d[a-z]; do
+       for i in /sys/block/[shv]d[a-z] /sys/block/mmcblk?; do
+               if [ ! -d $i ]; then  # pathname expansion failed
+                       continue
+               fi
                echo -n `basename $i` >> $menufile
                if [ -f $i/removable -a `cat $i/removable` -eq 0 ]; then
                        echo -n ' "Harddisk ' >> $menufile
@@ -57,7 +60,12 @@ partition_drive()
                choose "Choose Drive" "Please select a drive to edit partitions:"
        fi
        if [ $retval -eq 0 ]; then
-               cfdisk /dev/$choice
+               dialog --title " Confirm " --defaultno --yesno "\n Do you want to use GPT?" 7 29
+               if [ $? -eq 0 ]; then
+                       cgdisk /dev/$choice
+               else
+                       cfdisk /dev/$choice
+               fi
                if [ $? -eq 0 ]; then
                        retval=1
                else
@@ -69,12 +77,31 @@ partition_drive()
 
 select_dev()
 {
-       fdisk -l | grep ^/dev | cut -b6-12,55- | awk '{
-               if (!match($2, "Extended")) {
-                       printf("\"%-28s", $0)
-                       system("echo -n `cat /sys/block/*/"$1"/../device/model`")
-                       printf("\" \"\"\n")
-               }
+       blkid | grep -v -E "^/dev/block/|^/dev/loop" | cut -b6- | sort | awk '{
+               t="unknown"
+               for (i = NF; i > 1; --i)
+                       if (match($i, "^TYPE")) {
+                               t=$i
+                               break
+                       }
+               gsub(/TYPE=|"/, "", t)
+               printf("%s\t%s\n", $1, t)
+       }' > $tempfile
+
+       lsblk=`ls /sys/block | grep -v -E "loop|ram|sr|boot|rpmb"`
+       for d in $lsblk; do
+               p=0
+               for i in /sys/block/$d/$d* /sys/block/$d; do
+                       [ -e $i/partition ] && p=1
+                       [ $p -eq 1 -a "$i" = "/sys/block/$d" ] && break
+                       echo $i | grep -q -E "boot|rpmb" && continue
+                       [ -d $i ] && ( grep "`basename $i:`" $tempfile || echo "`basename $i` unknown" )
+               done
+       done | awk '{
+               sub(/:/, "", $1)
+               printf("\"%-13s%-17s", $1, $2)
+               system("cd /sys/block; for f in "$1"/device/model "$1"/device/name */"$1"/../device/model */"$1"/../device/name; do [ -e $f ] && echo -n `cat $f` && break; done")
+               printf("\" \"\"\n")
        } END {
                printf("\"Create/Modify partitions\" \"\"\n\"Detect devices\" \"\"")
        }' > $menufile
@@ -109,7 +136,7 @@ format_fs()
                        ;;
        esac
        if [ -n "$cmd" ]; then
-               dialog --title " Confirm " --no-label Skip --yesno \
+               dialog --title " Confirm " --defaultno --yesno \
                        "\n You chose to format $1 to $choice.\n All data in that partition will LOSE.\n\n Are you sure to format the partition $1?" 10 51
                [ $? -ne 0 ] && return 1
                $cmd Android-x86 /dev/$1 | awk '{
@@ -132,7 +159,6 @@ create_menulst()
        menulst=/hd/grub/menu.lst
        [ -n "$VESA" ] && vga=" vga=788 modeset=0"
        echo -e "${GRUB_OPTIONS:-default=0\ntimeout=6\nsplashimage=/grub/android-x86.xpm.gz\n}root (hd0,$1)\n" > $menulst
-       cmdline=`cat /proc/cmdline | sed "s|\(initrd.*img\s*\)||; s|quiet\s*||; s|\(vga=\w\+\?\s*\)||; s|\(DPI=\w\+\?\s*\)||; s|\(INSTALL=\w\+\?\s*\)||; s|\(SRC=\S\+\?\s*\)||; s|\(DEBUG=\w\+\?\s*\)||; s|\(BOOT_IMAGE.*\)||"`
 
        create_entry "Android-x86 $VER" quiet $cmdline
        create_entry "Android-x86 $VER (Debug mode)" $cmdline DEBUG=2
@@ -165,9 +191,9 @@ create_img()
                rm -f $2
        fi
        dialog --title " Question " --nook --nocancel --inputbox \
-               "\nPlease input the size of the $bname in MB (max 2047):" 8 63 $1 2> $tempfile
+               "\nPlease input the size of the $bname in MB:" 8 63 $1 2> $tempfile
        size=`cat $tempfile`
-       [ 0$size -le 0 -o 0$size -gt 2047 ] && size=2047
+       [ 0$size -le 0 ] && size=1024
        ( dd bs=1M count=$size if=/dev/zero | pv -ns ${size}m | dd of=$2 ) 2>&1 \
                | progress_bar "Creating $bname" "Expect to write $size MB..."
 }
@@ -192,7 +218,7 @@ create_data_img()
 try_upgrade()
 {
        [ -d $1 ] && return
-       PREV_VERS="4.4-RC2 4.4-RC1 4.4-test 4.3-test 4.2-test 4.0-r1 4.0-RC2 4.0-RC1"
+       PREV_VERS="4.4-r4 4.4-r3 4.4-r2 4.4-r1 4.4-RC2 4.4-RC1 4.4-test 4.3-test 4.2-test 4.0-r1 4.0-RC2 4.0-RC1"
        for v in $PREV_VERS; do
                prev=hd/android-$v
                if [ -d $prev ]; then
@@ -208,6 +234,20 @@ try_upgrade()
        done
 }
 
+get_part_info()
+{
+       d=0
+       while [ 1 ]; do
+               h=`echo $d | awk '{ printf("%c", $1+97) }'`
+               for part in /sys/block/[shv]d$h/$1 /sys/block/mmcblk$d/$1; do
+                       [ -d $part ] && break 2
+               done
+               d=$(($d+1))
+       done
+       p=`cat $part/partition`
+       disk=$(basename `dirname $part`)
+}
+
 install_to()
 {
        cd /
@@ -221,26 +261,50 @@ install_to()
        done
 
        fs=`cat /proc/mounts | grep /dev/$1 | awk '{ print $3 }'`
+       cmdline=`sed "s|\(initrd.*img\s*\)||; s|quiet\s*||; s|\(vga=\w\+\?\s*\)||; s|\(DPI=\w\+\?\s*\)||; s|\(INSTALL=\w\+\?\s*\)||; s|\(SRC=\S\+\?\s*\)||; s|\(DEBUG=\w\+\?\s*\)||; s|\(BOOT_IMAGE=\S\+\?\s*\)||" /proc/cmdline`
 
        asrc=android-$VER
        dialog --title " Confirm " --no-label Skip --defaultno --yesno \
                "\n Do you want to install boot loader GRUB?" 7 47
        if [ $? -eq 0 ]; then
                cp -af /grub /hd
-               d=0
-               while [ 1 ]; do
-                       h=`echo $d | awk '{ printf("%c", $1+97) }'`
-                       [ -d /sys/block/[sh]d$h/$1 ] && break
-                       d=$(($d+1))
-               done
-               p=$((`echo $1 | cut -b4-`-1))
+               get_part_info $1
+               p=$(($p-1))
                create_menulst $p
                create_winitem $1 $d
                rm -f /hd/boot/grub/stage1
-               echo "setup (hd$d) (hd$d,$p)" | grub > /dev/tty5
+               echo "(hd$d) /dev/$disk" > /hd/grub/device.map
+               echo "setup (hd$d) (hd$d,$p)" | grub --device-map /hd/grub/device.map > /dev/tty5
                [ $? -ne 0 ] && return 255
        fi
 
+       dialog --title " Confirm " --no-label Skip --defaultno --yesno \
+               "\n Do you want to install EFI GRUB2?" 7 39
+       if [ $? -eq 0 ]; then
+               get_part_info $1
+               for i in /sys/block/$disk/$disk*; do
+                       [ 0`cat $i/partition` -eq 1 ] && b=$i
+                       [ $(blkid /dev/`basename $i` | grep -c vfat) -ne 0 ] && b=$i && break
+               done
+               boot=`basename $b`
+               mountpoint -q /hd && umount /hd
+               dialog --title " Confirm " --defaultno --yesno \
+                       "\n Do you want to format the boot partition\n /dev/$boot?" 8 45
+               [ $? -eq 0 ] && mkdosfs -n EFI /dev/$boot
+               try_mount rw /dev/$boot /hd
+               cp -af /grub2/efi /hd
+               mkdir -p /hd/boot/grub
+               grubcfg=/hd/boot/grub/grub.cfg
+               echo -e "set timeout=5\n\n" > $grubcfg
+               echo -e "menuentry \"Android-x86 $VER\" {\n\tsearch --set=root --file /$asrc/kernel\n\tlinux /$asrc/kernel quiet $cmdline \n\tinitrd /$asrc/initrd.img\n}" >> $grubcfg
+               echo -e "menuentry \"Android-x86 $VER (DEBUG mode)\" {\n\tsearch --set=root --file /$asrc/kernel\n\tlinux /$asrc/kernel $cmdline DEBUG=2\n\tinitrd /$asrc/initrd.img\n}" >> $grubcfg
+               if [ -e /hd/EFI/Microsoft/Boot/bootmgfw.efi ]; then
+                       echo -e "menuentry \"Windows (UEFI)\" {\n\tsearch --set=root --file /EFI/Microsoft/Boot/bootmgfw.efi\n\tchainloader /EFI/Microsoft/Boot/bootmgfw.efi\n}" >> $grubcfg
+               fi
+               mountpoint -q /hd && umount /hd
+               try_mount rw /dev/$1 /hd
+       fi
+
        dialog --title " Question " --yesno \
                "\nDo you want to install /system directory as read-write?\n\nMaking /system be read-write is easier for debugging, but it needs more disk space and longer installation time." 10 61
        instal_rw=$?
@@ -269,11 +333,13 @@ install_to()
        result=$((`cat /tmp/result`*255))
 
        if [ $result -eq 0 ]; then
-               chmod 644 *
-               chown 0.0 *
                for d in android mnt sfs ./$SRC; do
                        [ -d $d ] && mv $d/* . && rmdir $d
                done
+               chown 0.0 *
+               for f in *; do
+                       [ -d $f ] || chmod 644 $f
+               done
 
                case "$fs" in
                        vfat|fuseblk)
@@ -285,6 +351,7 @@ install_to()
                esac
        fi
 
+       dialog --infobox "\n Syncing to disk..." 5 27
        sync
 
        return $result
@@ -295,7 +362,7 @@ install_hd()
        select_dev || rebooting
        retval=1
        case "$choice" in
-               [sh]d*)
+               [shvm][dm]*)
                        install_to $choice
                        retval=$?
                        ;;
@@ -328,16 +395,14 @@ do_install()
                Run*)
                        cd /android
                        umount system
-                       if mountpoint -q /sfs; then
-                               umount /sfs
-                               if [ -e /hd/$asrc/system.sfs ]; then
-                                       mount -o loop /hd/$asrc/system.sfs /sfs
-                                       mount -o loop /sfs/system.img system
-                               else
-                                       mount -o loop /hd/$asrc/system.img system
-                               fi
-                       else
+                       mountpoint -q /sfs && umount /sfs
+                       if [ -e /hd/$asrc/system.sfs ]; then
+                               mount -o loop /hd/$asrc/system.sfs /sfs
+                               mount -o loop /sfs/system.img system
+                       elif [ -e /hd/$asrc/system.img ]; then
                                mount -o loop /hd/$asrc/system.img system
+                       else
+                               mount --bind /hd/$asrc/system system
                        fi
                        if [ -d /hd/$asrc/data ]; then
                                mount --bind /hd/$asrc/data data