Its not so easy because many tools are missing, I have uninstalled mingw again.oggzee said:Solving this should be fairly simple - switch compiler from cygwin to mingw and call a couple of windows specific apis before creating the file:
Its not so easy because many tools are missing, I have uninstalled mingw again.oggzee said:Solving this should be fairly simple - switch compiler from cygwin to mingw and call a couple of windows specific apis before creating the file:
wit v1.10a r1386 - 2010-07-15
- wiitdb.com: Support of new languages: ru, zhcn, zhtw
- wwt ANALYZE: If option --long is set then calculated values are printed too
ÂÂ if other values are available. If option --long is set twice calculated
ÂÂ values are always printed.
- wit+wwt: Option --trunc: Truncate created PLAIN ISO image to needed size.
wit v1.10a.beta r1428 - 2010-07-24ÂÂ(correct version should be "v1.11a.beta")
- Computed line breaks for error messages.
- "wit COPY" accepts the options --id --name --ios --region to patch the
ÂÂ image while copying.
- New command: wit EDIT: Patch ISO images directly without copying.
wit v1.11a r1434 - 2010-07-26
- Option --region: endian bug fix
Missing docu:
- wit commands ILIST + EXTRACT
- Option --show => see built in help
Index: makefiles-local/Makefile.local.mac
===================================================================
--- makefiles-local/Makefile.local.macÂÂÂÂ(revision 1445)
+++ makefiles-local/Makefile.local.macÂÂÂÂ(working copy)
@@ -6,9 +6,17 @@
#-----------------------------------------------------------------------------
+ifneq ($(wildcard /Developer/SDKs/MacOSX10.4u.sdk),)
+ÂÂÂÂSDKVERSION = 10.4
+ÂÂÂÂSDKROOT = /Developer/SDKs/MacOSX10.4u.sdk
+else
+ÂÂÂÂSDKVERSION = 10.5
+ÂÂÂÂSDKROOT = /Developer/SDKs/MacOSX10.5.sdk
+endif
+
CCÂÂÂÂ = "gcc-4.0"
-CFLAGSÂÂÂÂ+= -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk
-LDFLAGSÂÂÂÂ+= -mmacosx-version-min=10.4 -isysroot /Developer/SDKs/MacOSX10.4u.sdk
+CFLAGSÂÂÂÂ+= -mmacosx-version-min=${SDKVERSION} -isysroot ${SDKROOT}
+LDFLAGSÂÂÂÂ+= -mmacosx-version-min=${SDKVERSION} -isysroot ${SDKROOT}
#-----------------------------------------------------------------------------
In deed, the windows version is missing. I'm sure that some weeks ago there was a windows release.W hat said:Is this the beta for combining two signed partitions?
Yes, its nearly the same as the last beta. "wit MIX" combines partitions.
QUOTE(W hat @ Aug 1 2010, 09:13 PM) Re: Windows GUI
I have the Cygwin version of WIT, I can't find a Windows version of qtwitgui.
wit mix infile1 infile2 infile3 --dest outfile
wit v1.12a r1451 - 2010-08-01
- Bug fix for option --sneek: Option --psel was not set in a correct way.
- New command: wit CREATE TICKET/TMD: Create a ticket or tmd file from
ÂÂ scratch. Options and parameters control the creation.
- Composing: If files ticket.bin or tmd.bin missed or have a wrong size
ÂÂ TICKET and/or TMD will be created automatically.
- New command: wit MIX: Mix partitions from different sources into one
ÂÂ new Wii disc image.ÂÂ*** "wit MIX" is EXPERIMENTAL! ***
wit v1.13a r1468 - 2010-08-04
- Command "wit MIX" accepts now the option --overlay: Partitions will
ÂÂ be overlayed so that data from one partition is stored in unused areas
ÂÂ of a other partition. To find the optimum order a permutation is done.
ÂÂ Option --overlay limits the number of input partitions to 12, because
ÂÂ the calculation is rated as O(2^n).ÂÂ*** "wit MIX" is EXPERIMENTAL! ***
- "wit MIX" wil accept the keyword 'psel' as alternative to 'select'.
ÂÂ The reason is that 'select' accepts the same keyword list as --psel.
- The disc subsystems recognize overlayes partitons. For overlayed
ÂÂ partitions the --psel keyword "WHOLE" is ignored.
- Command "wit DUMP" will print an info line for overlayed partitions.
Known bugs:
- There are new problems while reading from non seekable sources (e.g. pipes).
ÂÂ The reason is the complete new and more intelligent wiidisc lib which makes
ÂÂ more lookups. I have to insert some code especially for pipes. My plans
ÂÂ that copying multiple partition discs works too.
ÂÂ ==> The best is to use a version 1.01c for pipes.
Missing docu:
- wit commands ILIST + EXTRACT + EDIT + CREATE => see built in help
- Option --show => see built in help
wit v1.14a r1506 - 2010-08-09
- Option --psel redesigned: it is now possible to allow or deny any partiton
ÂÂ by partiton type, partiton table and/or by partiton index. Only with the
ÂÂ unambiguous partiton index it is possible to select the one wanted DATA
ÂÂ partition if multiple exists.
- New option --rm-files: This patching option defines filter rules to remove
ÂÂ real files and directories from the FST of the DATA partition. Fake signing
ÂÂ of the TMD is necessary.
- New option --zero-files: This patching option defines filter rules to zero
ÂÂ (set size to zero) real files of the FST of the DATA partition. Fake
ÂÂ signing$ of the TMD is necessary.
- New option --ignore-files: This option defines filter rules to ignore
ÂÂ system and real directories and files of the FST of the DATA partition.
ÂÂ Fake signing is not necessary, but the partition becomes invalid, because
ÂÂ the content of some files is not copied.
- New qualifier for "wit MIX": "IGNORE ruleset": Ignore files when copying a
ÂÂ disc image. See http://wit.wiimm.de/wit/cmd-mix.html#ignore for details.
- Some modification for expanding '@file' parameters: wit MIX needs control.
- wit MIX: A new algorithm for 2 partitions: It tries every possible shift to
ÂÂ find the best overlay. All holes in both partitions are relevant.
- wit MIX: Before creating the image a additional verify function is called.
ÂÂ This function controls that no sector is used by more than one partition.
ÂÂ With verbose level >=3 an usage map is printed too.
Known bugs:
- There are new problems while reading from non seekable sources (e.g. pipes).
ÂÂ The reason is the complete new and more intelligent wiidisc lib which makes
ÂÂ more lookups. I have to insert some code especially for pipes. My plans
ÂÂ that copying multiple partition discs works too.
ÂÂ ==> The best is to use a version 1.01c for pipes.
Missing docu:
- wit commands ILIST + EXTRACT + EDIT + CREATE => see built in help
- Option --show => see built in help
wwt -p /dev/rdisk1s2 extract *
wwt -p /dev/rdisk1s2 extract T*
iMac-1:wdf drh$ wwt -p /dev/rdisk4s1 extract $(wwt -p /dev/rdisk4s1 id | grep ^T)
*****ÂÂwwt: Wiimms WBFS Tool v1.14a r1506 mac - Dirk Clemens - 2010-08-09ÂÂ*****
!! wwt: ERROR #27 [MISSING PARAMETERS] in cmd_extract() @ src/wwt.c#1924
!!ÂÂÂÂÂÂmissing parameters
iMac-1:wdf drh$