"losetup -a" will show you loaded extensions.
lsmod will show loaded modules.
I don't know what you might have changed, but if a proper depmod was not performed, you may not be loading the drivers in your remastered version that are being loaded in the unmodified version.
losetup -a showed nothing for both original/remastered ISO's.
lsmod is different. For the remastered ISO lsmod is blank. For the original ISO lsmod shows 14 loaded modules for mperf, cpufreq_*, ppdev, ac, squashfs, parport_pc, parport, loop, microcode, e1000, pcspkr.
I think the depmod hint might be the key as I noticed the following print when running depmod
"""
depmod...
depmod: ERROR: fstatat(3, kernel.tclocal): No such file or directory
depmod: WARNING: could not open /tmp/extract/lib/modules/3.8.13-tinycore/modules.order: No such file or directory
depmod: WARNING: could not open /tmp/extract/lib/modules/3.8.13-tinycore/modules.builtin: No such file or directory
""
The command I used for depmod was
sudo depmod -a -b /tmp/extract 3.8.13-tinycore
where 3.8.13 was the kernel number I saw as all the files were in in /tmp/extract/lib/modules/3.8.13-tinycore
There are several module.* files there but no modules.order or modules.builtin, are these two files tool generated or should they have carried over from the original ISO.
Thanks