From fdff7cf04ccffcd0f7528a005c7135fc197e02ca Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Wed, 8 Jul 2020 14:51:16 +0000 Subject: Using PARTUUID instead of disk UUID --- archinstall/lib/installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'archinstall/lib') diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py index dda69495..37deda3e 100644 --- a/archinstall/lib/installer.py +++ b/archinstall/lib/installer.py @@ -62,7 +62,7 @@ class Installer(): ## so we'll use the old manual method until we get that sorted out. # UUID = simple_command(f"blkid -s PARTUUID -o value /dev/{os.path.basename(args['drive'])}{args['partitions']['2']}").decode('UTF-8').strip() # entry.write('options root=PARTUUID={UUID} rw intel_pstate=no_hwp\n'.format(UUID=UUID)) - for root, folders, uids in os.walk('/dev/disk/by-uuid'): + for root, folders, uids in os.walk('/dev/disk/by-partuuid'): for uid in uids: real_path = os.path.realpath(os.path.join(root, uid)) if not os.path.basename(real_path) == os.path.basename(self.partition.path): continue -- cgit v1.2.3-54-g00ecf