From 01f0cdb2753ac5edfcd79db2029807d6cb18dfeb Mon Sep 17 00:00:00 2001 From: CrisHotpatch Date: Wed, 15 Mar 2023 00:10:58 -0300 Subject: [PATCH] master --- Library/OcMainLib/OpenCoreMisc.c | 19 +++++++++++++++++++ build_oc.tool | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/Library/OcMainLib/OpenCoreMisc.c b/Library/OcMainLib/OpenCoreMisc.c index 26c2c14c182..18b439ee4fd 100644 --- a/Library/OcMainLib/OpenCoreMisc.c +++ b/Library/OcMainLib/OpenCoreMisc.c @@ -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, diff --git a/build_oc.tool b/build_oc.tool index b236170a810..6fb15dc7e18 100755 --- a/build_oc.tool +++ b/build_oc.tool @@ -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