Tiny Core Linux

General TC => General TC Talk => Topic started by: gam on June 05, 2021, 05:49:23 AM

Title: How to make TC load onboot.lst and optional directory (extensions) from sdc2?
Post by: gam on June 05, 2021, 05:49:23 AM
I made a Grub2 bootable usb that I followed this topic,
http://forum.tinycorelinux.net/index.php/topic,19364.msg119228.html#msg119228 (http://forum.tinycorelinux.net/index.php/topic,19364.msg119228.html#msg119228)

My command:
https://anotepad.com/notes/256hm6kq (https://anotepad.com/notes/256hm6kq)

-sdc1 is contain vmlinuz and core.gz
-sdc2 is EFI boot partition with grub.cfg

How to make Tinycore load onboot.lst and optional directory (extensions) from sdc2 partition?
Title: Re: How to make TC load onboot.lst and optional directory (extensions) from sdc2?
Post by: Juanito on June 05, 2021, 06:10:40 AM
Use the boot code tce=sdc2

Note that you may need to use the uuid or a label to identify the usb stick partition if it doesn't always appear as sdc2
Title: Re: How to make TC load onboot.lst and optional directory (extensions) from sdc2?
Post by: Rich on June 05, 2021, 06:27:42 AM
Hi gam
According to the notes you posted, you copied the UUID from http://forum.tinycorelinux.net/index.php/topic,19364.0.html.
You have to use the UUID for your device:
Code: [Select]
blkid -s UUID /dev/sdc1
Title: Re: How to make TC load onboot.lst and optional directory (extensions) from sdc2?
Post by: Juanito on June 05, 2021, 06:34:03 AM
Note also that there should be a file named ntfs-3g.tcz.dep that causes the fuse extension to be loaded.
Title: Re: How to make TC load onboot.lst and optional directory (extensions) from sdc2?
Post by: gam on June 05, 2021, 09:12:32 PM
Thanks. :)