Search found 352 matches: PARTUUID

Return to advanced search

Re: Can I use linux-kirkwood-dt on NSA320 ?

... So in my case I solved the problem, by popping the HDD, and plugging it in another machine. Then writing to the /boot/uEnv.txt file: root=PARTUUID=94a2dc27-01 You can get the PARTUUID by using blkid and get the value for root partition (/) which has /boot inside it. Anyway that was enough ...
by summers
Fri Feb 05, 2016 3:35 pm
 
Forum: ARMv5
Topic: Can I use linux-kirkwood-dt on NSA320 ?
Replies: 31
Views: 30475

Re: Can I use linux-kirkwood-dt on NSA320 ?

... fi; if run loadimage; then if env exists root; then echo root has been defined by user; else part uuid ${devtype} ${bootpart} uuid; setenv root PARTUUID=${uuid}; fi; run mainargs; if run loadfdt; then if run loadrd; then bootz ${loadaddr} ${rdaddr}:${filesize} ${fdtaddr}; else bootz ${loadaddr} ...
by summers
Sat Feb 06, 2016 1:53 pm
 
Forum: ARMv5
Topic: Can I use linux-kirkwood-dt on NSA320 ?
Replies: 31
Views: 30475

Re: Can I use linux-kirkwood-dt on NSA320 ?

Whats strange is on my NSA325 I'm HDD MBR (dos) + PARTUID, and that boots fine. PARTUUID = disk UUID + "-" + two digit part number. So fidks shows the Disk identifier as : Disk identifier: 0x94a2dc27 Root is /dev/sda1 and has id: PARTUUID="94a2dc27-01" ...
by summers
Mon Feb 08, 2016 1:39 pm
 
Forum: ARMv5
Topic: Can I use linux-kirkwood-dt on NSA320 ?
Replies: 31
Views: 30475

Re: Seagate GoFlex Failed after installing the ArchLinux

If you set root via PARTUUID then it should boot the usb even with the hdd in place...
by summers
Mon Aug 10, 2020 8:39 pm
 
Forum: ARMv5
Topic: [Solved]Seagate GoFlex Failed after installing the ArchLinux
Replies: 23
Views: 52382

Re: Can I use linux-kirkwood-dt on NSA320 ?

... is the robust version of setting the uEnv.txt file. rootfs=`mount | sed -n 's/^\([^ ]*\).* \/ .*/\1/p'` rootuuid=`blkid $rootfs | sed -n 's/^.*\(PARTUUID=\)\"\(.*\)\"$/\1\2/p'` echo root=${rootuuid} > /boot/uEnv.txt It removes the quotes from the PARTUUID, and I'm not 100% if that is ...
by summers
Sat Feb 06, 2016 3:17 pm
 
Forum: ARMv5
Topic: Can I use linux-kirkwood-dt on NSA320 ?
Replies: 31
Views: 30475

Re: uboot 2016.05-1 whats new

... so as these were passed to the kernel, it tried to mount root before it was able to access the UUID numbers. Hence why it suggested that you use PARTUUID, which kernel knows at boot time. This said though you sould be able to use root=/dev/sda1 Which was the old way of doing it, and not as robust ...
by summers
Sat Aug 20, 2016 1:12 pm
 
Forum: Marvell Kirkwood
Topic: uboot 2016.09-1 whats new
Replies: 47
Views: 39352

Re: uboot 2016.05-1 whats new

... (when lilo could only access the start of HDD). 2) the kernel has many an varied ways of identifying the root file system, labels, UUID, PARTUUID, device. So as these two are so different, uboot boot directory, and kernel root fs, is why they get set up separately. As to can PARTUUID ...
by summers
Sun Aug 21, 2016 10:20 am
 
Forum: Marvell Kirkwood
Topic: uboot 2016.09-1 whats new
Replies: 47
Views: 39352

Re: Asus TB S

... boot without, command something like: part uuid ${devtype} ${devnum}:${bootpart} uuid setenv bootargs "console=tty0 console=${console} root=PARTUUID=${uuid} rw rootwait" load ${devtype} ${devnum}:${bootpart} ${kernel_addr_r} /boot/zImage load ${devtype} ${devnum}:${bootpart} ${fdt_addr_r} ...
by summers
Thu Aug 16, 2018 9:51 pm
 
Forum: Community Supported
Topic: [Solved] Asus TB S
Replies: 140
Views: 164207

Re: [NSA-325] arch installer on usb not loaded by uboot 2017

... fi; if run loadimage; then if env exists root; then echo root has been defined by user; else part uuid ${devtype} ${bootpart} uuid; setenv root PARTUUID=${uuid}; fi; run mainargs; if run loadfdt; then if run loadrd; then bootz ${loadaddr} ${rdaddr}:${filesize} ${fdtaddr}; else bootz ${loadaddr} ...
by summers
Mon Aug 10, 2020 7:53 pm
 
Forum: U-Boot/Kernel
Topic: [NSA-325] arch installer on usb not loaded by uboot 201707
Replies: 12
Views: 9681

Re: [NSA-325] arch installer on usb not loaded by uboot 2017

... else setenv bootpart 1; fi part uuid ${devtype} ${devnum}:${bootpart} uuid setenv bootargs "console=tty0 console=${console} root=PARTUUID=${uuid} rw rootwait" if load ${devtype} ${devnum}:${bootpart} ${kernel_addr_r} /boot/zImage; then gpio set 54 echo fdt: ${fdtfile} if ...
by summers
Mon Aug 10, 2020 8:01 pm
 
Forum: U-Boot/Kernel
Topic: [NSA-325] arch installer on usb not loaded by uboot 201707
Replies: 12
Views: 9681
PreviousNext

Return to advanced search