
Originally Posted by
ruymbeke
Thanks for your excellent work! I am very glad to be learning your new technique.
I see in your knoppix.sh you commented out CLOOPIDX=64;
I would really like to have 64 cloops (next time you compile a kernel) please!
For non-bigmem kernels as well (.32 please?) it would be very nice.
I found in cloop source, compressed_loop.c:
#define CLOOP_MAX 8
I think
#define CLOOP_MAX 64
would allow this. If no /dev/cloop63,
for (( i=8; i<64; i++ )); do mknod /dev/cloop$i b 240 $i; done
Could you please post your kernel config and module sources you use (or put them in your cloop)?
I did not see them on K62 (K531 had them).
FYI: On my K62 boot disks, I add to every linux entry in isolinux.cfg:
max_loop=64
for 64 loops;
for (( i=8; i<64; i++ )); do mknod /dev/loop$i b 7 $i; done
makes them work (/dev/loop/$i is neater) (Very easy, unlike cloops).
Thanks!
Charles