[arch-commits] Commit in syslinux/trunk (PKGBUILD syslinux-install_update)

Anatol Pomozov anatolik at archlinux.org
Mon Jun 29 16:22:04 UTC 2015


    Date: Monday, June 29, 2015 @ 18:22:04
  Author: anatolik
Revision: 241393

FS#45493: use readlink to find real path to partitions

Modified:
  syslinux/trunk/PKGBUILD
  syslinux/trunk/syslinux-install_update

-------------------------+
 PKGBUILD                |    2 +-
 syslinux-install_update |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2015-06-29 13:47:37 UTC (rev 241392)
+++ PKGBUILD	2015-06-29 16:22:04 UTC (rev 241393)
@@ -36,7 +36,7 @@
         syslinux-install_update)
 sha1sums=('SKIP'
           '1145f454bd297d373ad123425f93620c3e92f585'
-          'b9ca016e08dd1c45dd7f3c88df680b949e39aa77')
+          'f702c2ea9f613c8d597ad6759b9470f2103ddc2d')
 
 _targets='bios efi32'
 case "$CARCH" in

Modified: syslinux-install_update
===================================================================
--- syslinux-install_update	2015-06-29 13:47:37 UTC (rev 241392)
+++ syslinux-install_update	2015-06-29 16:22:04 UTC (rev 241393)
@@ -169,7 +169,7 @@
             exit 1
         fi
         boot="boot"
-        bootpart="$bootdev"
+        bootpart="$(readlink -f "$bootdev")"
     elif [[ $rootfs ]]; then
         if ! check_is_in "$rootfs" "${syslinux_fs[@]}"; then
             echo "/ (root) file system is not supported by Syslinux"
@@ -176,7 +176,7 @@
             exit 1
         fi
         boot="root"
-        bootpart="$rootdev"
+        bootpart="$(readlink -f "$rootdev")"
     else
         echo "Could not find filesystem on / (root) or /boot."
         exit 1



More information about the arch-commits mailing list