Sorry folks, I was given wrong info in my last post.

I take a second look on the script /etc/init.d/autoconfig, the default boot setting is stored at the file /proc/cmdline.

So the correct way to do it is:

Method 1: Edit /proc/cmdline file, add the string "myconfig=/media/hda6 fromhd=/dev/hda6" at the end of the file. Save it and remaster the CD.

Method 2: Edit /etc/init.d/autoconfig file, at line 109, you will find the statement

Code:
CMDLINE="$(cat /proc/cmdline)"
Right after this statement, add the line

Code:
CMDLINE="${CMDLINE} myconfig=/media/hda6 fromhd=/dev/hda6"
Save the file and remaster the CD.

I tried a couple of times trying to remastering the CD but unfortunately the remaster CD ISO image is far larger than the 700MB so I cannot burn it to the CD and try it.

I pretty much sure my idea will work but just not been able to prove my concept.

Rgds,
Chip