I would follow
Just19s advice but if you want to boot by the Mint bootloader let's try.

Here is a stanza of your
/boot/grub/grub.cfg file for PCLOS:
menuentry "linux (on /dev/sdb1)" {
insmod part_msdos
insmod ext2
set root='(hd1,msdos1)'
search --no-floppy --fs-uuid --set 0f25c9d8-de98-4a8d-aa3b-5fb3eb5ef615
linux /boot/vmlinuz BOOT_IMAGE=linux root=UUID=0f25c9d8-de98-4a8d-aa3b-5fb3eb5ef615 resume=UUID=ba96f397-96ee-44cb-9118-eae677f3969c splash=silent vga=788
initrd (hd0,0)/boot/initrd.img
I am some confused by this one
(hd1,msdos1)*as I can't understand the way of addressing. Surely
old-polack knows it

Anyway - as far as I know this address
(hd0,0)doesn't make sense for GRUB2 because it starts counting from
(hd0,1).
Further - as seen from your report your PCLOS is on
sdb1. GRUB2 should address this as
(hd1,1) (e.g. the second hard disk, the first partition of it).
I am suggesting you rename your original
grub.cfg for backup, after that edit it as root and change in the three PCLOS stanzas the line
initrd (hd0,0)/boot/initrd.imgto
initrd (hd1,1)/boot/initrd.imgAfter that save the file with the name
grub.cfg in the
/boot/grub directory, reboot and see if it works. If it doesn't you can always delete it and rename the backuped file to its original name.
Please tell us what's the result.

P.S. I am curious if you installed PCLOS on that hard drive with the other hard disks detached?

------------------------
* - Well I googled this
set root='(hd1,msdos1)' and it seems to be the address of the first partition of the second hard drive. So I hope we won't have address mismatch - both
set root='(hd1,msdos1)'and the edited
initrd (hd1,1)point to the same partition that is
sdb1.