Skip to content
This repository has been archived by the owner on Jan 3, 2021. It is now read-only.

Commit

Permalink
Updating README & Renaming srcFile OzmosisDefaults.plist to Defaults.…
Browse files Browse the repository at this point in the history
…plist
  • Loading branch information
tuxuser committed Aug 22, 2014
1 parent a755fd2 commit 13a93d5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions OZMTool/README
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ It includes the following useful tools to help you in this process:
Extracts Ozmosis files from a stock (HermitCrabLabs) Ozmosis Bios.

* OZMCreate
Creates an Ozmosis image from supplied FFS/Kext/DSDT files (Kext & DSDT is optional).
Creates an Ozmosis image from supplied FFS/Kext/DSDT/Efi files (Kext, DSDT & Efi is optional).
If the image originally does not have enough space, use the -a, --aggressivity switch
Possible values for -a :
--aggressivity 0: Try to inject the files as-is
Expand All @@ -43,7 +43,7 @@ It includes the following useful tools to help you in this process:
If all attempts fail, the output image wont be created (obviously)

* Kext2Ffs
Converts files to FFS. It accepts *.kext and OzmosisDefaults.plist.
Converts files to FFS. It accepts *.kext, Defaults.plist and Theme.bin.
Uses UEFITool's technique to create the FFS :)

* DSDT2Bios
Expand All @@ -66,7 +66,7 @@ USAGE
./OZMTool --dsdtinject --input BIOS.ROM --dsdt DSDT.aml --out outputfile
./OZMTool --ozmupdate --aggressivity 1 --compressdxe --out RECENT_OZM_BIOS.ROM --input OLD_OZM.ROM --recent NEW_CLEAN_BIOS.ROM
./OZMTool --ozmextract --out outputdir --input OZM.ROM
./OZMTool --ozmcreate --aggressivity 1 --compressdxe --kext kextdir --ffs ffsdir --dsdt DSDT.aml --out outputfile --input BIOS.ROM
./OZMTool --ozmcreate --aggressivity 1 --compressdxe --kext kextdir --ffs ffsdir --efi efidir --dsdt DSDT.aml --out outputfile --input BIOS.ROM
./OZMTool --kext2ffs --out outputdir --input kextsdir
./OZMTool --dsdt2bios --input AmiBoardInfo.bin --dsdt DSDT.aml --out patchedAmiBoardInfo.bin

Expand Down
4 changes: 2 additions & 2 deletions OZMTool/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ static const QList<sectionEntry> OzmFfs{
{"HermitShellX64","C57AD6B7-0515-40A8-9D21-551652854E37", "hermitshellx64.efi", SRC_EFI, EFI_SECTION_PE32, FALSE},
{"Shell", "7C04A583-9E3E-4F1C-AD65-E05268D0B4D1", "shell.efi", SRC_EFI, EFI_SECTION_PE32, FALSE},
// Defaults
{"OzmosisDefaults","99F2839C-57C3-411E-ABC3-ADE5267D960D", "OzmosisDefaults.plist", SRC_BINARY, EFI_SECTION_RAW, TRUE},
{"OzmosisDefaults","99F2839C-57C3-411E-ABC3-ADE5267D960D", "Defaults.plist", SRC_BINARY, EFI_SECTION_RAW, TRUE},
// Theme
{"OzmosisTheme","AC255206-DCF9-4837-8353-72BBBC0AC849", "theme.bin", SRC_BINARY, EFI_SECTION_RAW, FALSE},
{"OzmosisTheme","AC255206-DCF9-4837-8353-72BBBC0AC849", "Theme.bin", SRC_BINARY, EFI_SECTION_RAW, FALSE},
// Kernel Extensions
{"SmcEmulatorKext","DADE1001-1B31-4FE4-8557-26FCEFC78275", "FakeSMC.kext", SRC_KEXT, EFI_SECTION_RAW, TRUE},
{"DisablerKext","DADE1002-1B31-4FE4-8557-26FCEFC78275", "Disabler.kext", SRC_KEXT, EFI_SECTION_RAW, FALSE},
Expand Down
4 changes: 2 additions & 2 deletions OZMTool/ozmtool.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ UINT8 OZMTool::OZMCreate(QString inputfile, QString outputfile, QString inputFFS
break;
case SRC_NOT_SET:
default:
printf("Info: '%s' doesn't look like a valid kext or OzmosisDefaults!\n", qPrintable(currKext.fileName()));
printf("Info: '%s' doesn't look like a valid kext, Defaults.plist or Theme.bin!\n", qPrintable(currKext.fileName()));
continue;
}

Expand Down Expand Up @@ -711,7 +711,7 @@ UINT8 OZMTool::Kext2Ffs(QString inputdir, QString outputdir)
break;
case SRC_NOT_SET:
default:
printf("Info: '%s' doesn't look like a valid kext or OzmosisDefaults!\n", qPrintable(currKext.fileName()));
printf("Info: '%s' doesn't look like a valid kext, Defaults.plist or Theme.bin!\n", qPrintable(currKext.fileName()));
continue;
}

Expand Down

0 comments on commit 13a93d5

Please sign in to comment.