Skip to content

Commit

Permalink
master
Browse files Browse the repository at this point in the history
  • Loading branch information
CrisHotpatch committed Mar 15, 2023
1 parent 053fb55 commit 01f0cdb
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions Library/OcMainLib/OpenCoreMisc.c
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,25 @@ OcMiscGetVersionString (
return mOpenCoreVersion;
}

CONST CHAR8 *
OcWelcomeString (
VOID
)
{

STATIC CHAR8 mWelcome[] = {
"Telegram 👨🏻‍💻 @CrisHotpatch"
};

STATIC BOOLEAN mWelcomeReady;

if (!mWelcomeReady) {
mWelcomeReady = TRUE;
}

return mWelcome;
}

EFI_STATUS
OcMiscEarlyInit (
IN OC_STORAGE_CONTEXT *Storage,
Expand Down
2 changes: 1 addition & 1 deletion build_oc.tool
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ package() {
cp "${selfdir}/Utilities/ocvalidate/README.md" "${dstdir}/Utilities/ocvalidate"/ || exit 1

pushd "${dstdir}" || exit 1
zip -qr -FS ../"OpenCore-${ver}-${2}.zip" ./* || exit 1
zip -qr -FS ../"OpenCoreMultiBoot-${ver}-${2}.zip" ./* || exit 1
popd || exit 1
rm -rf "${dstdir}" || exit 1

Expand Down

0 comments on commit 01f0cdb

Please sign in to comment.