Este é meu primeiro post no stackexchange. Eu não ouvi falar sobre o tinycore
| microcore
| multicore
linux antes, eu vou tentar checá-los.
Voltar para sua pergunta ryan:
pegue o initramfs do microcore e faça o seguinte. (NOTA: eu não tentei isso com microcore
distro mas eu usei esse tempo de volta com DSL e Knoppix)
# check if your initramfs is gz compressed
# proceed only if it is gz or ASCII cpio file
file /path/to/initramfs.img
# if it is a gzip compressed rename it as .gz while cp'ing (see below)
# otherwise if it's cpio skip the rename and gzip/gunzip steps
# if its none of gizp or cpio, ignore my answer
mkdir -p /tmp/x/ramfs
cp /path/to/initramfs.img /tmp/x/initramfs.img.gz # refer comments above
cd /tmp/x
gunzip initramfs.img.gz
cd ramfs
cpio -i -d < ../initramfs.img
# At this point you'll have complete FS including /bin
cp /path/to/dc3dd bin/
# make sure you're in /tmp/x/ramfs
find . | cpio -v -o -F ../initramfs.img # careful you've just overwritten
cd ..
gzip initramfs.img
mv initramfs.img.gz initramfs.img
Espero que isso ajude.