hello rmarion36
Wow there...
For SSD's it's not recommended to use a journaling file system, use ext2 instead.
Thinking ahead to how Win7 deals with foreign file systems, you might be wiser to create a small 200MB partition at the beginning of the SSD formatted with Fat32 to which you install grub, /boot/corepure64, modules and /boot/vmlinuz files.
create a second larger (remainder of the drive) with ext2 install /tce64 and possibly persistent home and opt directories on this preferred file system.
the above is optional, but know that Win7 doesn't live well with other file systems, it typically asks to format the partition in question.. So is up to you.
Remember to set the boot flag on your SSD's first or only partition.
initially use the BIOS boot menu to select the desired drive to boot.
You'll need to create a grub.cfg file then most likely modify it a few time until you have the desired effect.
Note: Use UUID with Grub2 inplace of set root=(hd0,2) see
http://tinycorelinux.net/faq.htmlAlso note the syntax in grub2 is
search --no-floppy --fs-uuid --set=root B854-8FE0
remove the " text " bootcode which will prevent booting to a desktop
use the " noswap " bootcode to prevent searching for or using a swap partition
this is an extract from my grub.cfg file as a guide
insmod part_msdos
insmod fat
insmod ext2
loadfont unicode
insmod efi_gop
insmod efi_uga
insmod font
insmod gfxterm
set gfxmode=auto
set gfxterm_font=unicode
set gfxpayload=keep
terminal_output gfxterm
#Timeout for menu
set default=5
set timeout=5
menuentry "TC-10-Corepure64 (on USB)" {
search --no-floppy --fs-uuid --set=root B854-8FE0
linux /boot/vmlinuz64 noswap tz=GMT loglevel=3 vga=891 waitusb=5:UUID="b313c2c4-fedf-4c44-bf42-6a6fca54b311" tce=UUID="b313c2c4-fedf-4c44-bf42-6a6fca54b311"/tc10-x86_64 opt=UUID="b313c2c4-fedf-4c44-bf42-6a6fca54b311" home=UUID="b313c2c4-fedf-4c44-bf42-6a6fca54b311"
initrd /boot/rootfs64.gz /boot/modules64.gz
}
you might find this grub menu item better to boot Win7
menuentry "Windows 7" --class windows --class os {
insmod ntfs
search --no-floppy --set=root --fs-uuid B854-78DE
ntldr /bootmgr
}
In both cases remember to substitute the actual UUID code