i get it working now, maybe somebody can update the wiki.
The Sdminste.exe work partly to create a proper flash card.
the files extend.m and script.req contain 0 size.
I copy the files by hand and notice only the original simple dumper work ok .the other quit the camera.( i create too a folder a and test again)
with simple dumper a file Primary.bin is create with size 8.323.068.it stand in root dir.where should i send this ?.
Maybe somebody have time to build a test Version, or can tell a link to how port or test for Ixus 300/1000
thats the script i use from the wiki but there was no output on LCD.only after 2-3 sec the old func/set menu appear
-----
dim f,a,startadr=0,romsize
private sub Initialize()
UI.CreatePublic()
a=LCDMsg_Create()
LCDMsg_SetStr(a,"Running")
System.Create()
if memcmp(0xFFC00004,"gaonisoy",8) = 0 then
startadr = 0xFFC00000
LCDMsg_SetStr(a,"FFC00000")
else
if memcmp(0xFF810004,"gaonisoy",8) = 0 then
startadr = 0xFF810000
LCDMsg_SetStr(a,"FF810000")
else
LCDMsg_SetStr(a,"start not found!")
Wait(1000)
end if
end if
if startadr <> 0 then
romsize = 0xFFFFFFFC - startadr
f=Fopen_Fut("A/PRIMARY.BIN","w")
Fwrite_Fut(startadr,romsize,1,f)
Fclose_Fut(f)
LCDMsg_SetStr(a,"done")
end if
end sub