Upgrade OC 0.8.8 (*.efi, *.kext, *.plist)
This commit is contained in:
@@ -1,5 +1,20 @@
|
|||||||
OpenCore Changelog
|
OpenCore Changelog
|
||||||
==================
|
==================
|
||||||
|
#### v0.8.8
|
||||||
|
- Updated underlying EDK II package to edk2-stable202211
|
||||||
|
- Updated AppleKeyboardLayouts.txt from macOS 13.1
|
||||||
|
- Updated builtin firmware versions for SMBIOS and the rest
|
||||||
|
- Updated ocvalidate to allow duplicate tool if FullNvramAccess is different
|
||||||
|
- Fixed `Kernel` -> `Block` entries not being processed if one was skipped due to `Arch`
|
||||||
|
- Fixed intermittent prelinking failures caused by XML corruption when kext blocking is enabled
|
||||||
|
- Removed magic Acidanthera sequence from OpenCore files used for picker hiding
|
||||||
|
- Added `.contentVisibility` to hide and disable boot entries
|
||||||
|
- Added Linux support to QemuBuild.command used for Duet debugging
|
||||||
|
- Built in new secure PE/COFF loader
|
||||||
|
- Added prebuilt mtoc universal binary with Apple Silicon support
|
||||||
|
- Corrected OpenDuet build on Apple Silicon
|
||||||
|
- Added SD card device path support for boot device selection
|
||||||
|
|
||||||
#### v0.8.7
|
#### v0.8.7
|
||||||
- Removed unwanted clear screen when launching non-text boot entry
|
- Removed unwanted clear screen when launching non-text boot entry
|
||||||
- Fixed TSC/FSB for AMD CPUs in ProvideCurrentCpuInfo, thx @Shaneee
|
- Fixed TSC/FSB for AMD CPUs in ProvideCurrentCpuInfo, thx @Shaneee
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -3,7 +3,7 @@
|
|||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict>
|
<dict>
|
||||||
<key>BuildMachineOSBuild</key>
|
<key>BuildMachineOSBuild</key>
|
||||||
<string>20G730</string>
|
<string>21G320</string>
|
||||||
<key>CFBundleDevelopmentRegion</key>
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
<string>en</string>
|
<string>en</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>KEXT</string>
|
<string>KEXT</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>1.6.2</string>
|
<string>1.6.3</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleSupportedPlatforms</key>
|
<key>CFBundleSupportedPlatforms</key>
|
||||||
@@ -25,23 +25,23 @@
|
|||||||
<string>MacOSX</string>
|
<string>MacOSX</string>
|
||||||
</array>
|
</array>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>1.6.2</string>
|
<string>1.6.3</string>
|
||||||
<key>DTCompiler</key>
|
<key>DTCompiler</key>
|
||||||
<string>com.apple.compilers.llvm.clang.1_0</string>
|
<string>com.apple.compilers.llvm.clang.1_0</string>
|
||||||
<key>DTPlatformBuild</key>
|
<key>DTPlatformBuild</key>
|
||||||
<string>13C100</string>
|
<string>13F100</string>
|
||||||
<key>DTPlatformName</key>
|
<key>DTPlatformName</key>
|
||||||
<string>macosx</string>
|
<string>macosx</string>
|
||||||
<key>DTPlatformVersion</key>
|
<key>DTPlatformVersion</key>
|
||||||
<string>12.1</string>
|
<string>12.3</string>
|
||||||
<key>DTSDKBuild</key>
|
<key>DTSDKBuild</key>
|
||||||
<string>21C46</string>
|
<string>21E226</string>
|
||||||
<key>DTSDKName</key>
|
<key>DTSDKName</key>
|
||||||
<string>macosx12.1</string>
|
<string>macosx12.3</string>
|
||||||
<key>DTXcode</key>
|
<key>DTXcode</key>
|
||||||
<string>1321</string>
|
<string>1341</string>
|
||||||
<key>DTXcodeBuild</key>
|
<key>DTXcodeBuild</key>
|
||||||
<string>13C100</string>
|
<string>13F100</string>
|
||||||
<key>IOKitPersonalities</key>
|
<key>IOKitPersonalities</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>as.vit9696.Lilu</key>
|
<key>as.vit9696.Lilu</key>
|
||||||
|
|||||||
Binary file not shown.
@@ -93,6 +93,7 @@ namespace CPUInfo {
|
|||||||
CPU_MODEL_ROCKETLAKE_S = 0xA7, /* desktop RocketLake */
|
CPU_MODEL_ROCKETLAKE_S = 0xA7, /* desktop RocketLake */
|
||||||
CPU_MODEL_TIGERLAKE_U = 0x8C,
|
CPU_MODEL_TIGERLAKE_U = 0x8C,
|
||||||
CPU_MODEL_ALDERLAKE_S = 0x97,
|
CPU_MODEL_ALDERLAKE_S = 0x97,
|
||||||
|
CPU_MODEL_RAPTORLAKE_S = 0xB7,
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -126,6 +127,7 @@ namespace CPUInfo {
|
|||||||
RocketLake,
|
RocketLake,
|
||||||
TigerLake,
|
TigerLake,
|
||||||
AlderLake,
|
AlderLake,
|
||||||
|
RaptorLake,
|
||||||
MaxGeneration
|
MaxGeneration
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict>
|
<dict>
|
||||||
<key>BuildMachineOSBuild</key>
|
<key>BuildMachineOSBuild</key>
|
||||||
<string>21G217</string>
|
<string>21G320</string>
|
||||||
<key>CFBundleDevelopmentRegion</key>
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
<string>en</string>
|
<string>en</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>KEXT</string>
|
<string>KEXT</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>1.6.2</string>
|
<string>1.6.3</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleSupportedPlatforms</key>
|
<key>CFBundleSupportedPlatforms</key>
|
||||||
@@ -25,11 +25,11 @@
|
|||||||
<string>MacOSX</string>
|
<string>MacOSX</string>
|
||||||
</array>
|
</array>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>1.6.2</string>
|
<string>1.6.3</string>
|
||||||
<key>DTCompiler</key>
|
<key>DTCompiler</key>
|
||||||
<string>com.apple.compilers.llvm.clang.1_0</string>
|
<string>com.apple.compilers.llvm.clang.1_0</string>
|
||||||
<key>DTPlatformBuild</key>
|
<key>DTPlatformBuild</key>
|
||||||
<string>14A400</string>
|
<string>13F100</string>
|
||||||
<key>DTPlatformName</key>
|
<key>DTPlatformName</key>
|
||||||
<string>macosx</string>
|
<string>macosx</string>
|
||||||
<key>DTPlatformVersion</key>
|
<key>DTPlatformVersion</key>
|
||||||
@@ -39,9 +39,9 @@
|
|||||||
<key>DTSDKName</key>
|
<key>DTSDKName</key>
|
||||||
<string>macosx12.3</string>
|
<string>macosx12.3</string>
|
||||||
<key>DTXcode</key>
|
<key>DTXcode</key>
|
||||||
<string>1401</string>
|
<string>1341</string>
|
||||||
<key>DTXcodeBuild</key>
|
<key>DTXcodeBuild</key>
|
||||||
<string>14A400</string>
|
<string>13F100</string>
|
||||||
<key>IOKitPersonalities</key>
|
<key>IOKitPersonalities</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>NVHDAEnabler</key>
|
<key>NVHDAEnabler</key>
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -3,7 +3,7 @@
|
|||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict>
|
<dict>
|
||||||
<key>BuildMachineOSBuild</key>
|
<key>BuildMachineOSBuild</key>
|
||||||
<string>20G730</string>
|
<string>21G320</string>
|
||||||
<key>CFBundleDevelopmentRegion</key>
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
<string>en</string>
|
<string>en</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>KEXT</string>
|
<string>KEXT</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>1.6.2</string>
|
<string>1.6.3</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleSupportedPlatforms</key>
|
<key>CFBundleSupportedPlatforms</key>
|
||||||
@@ -25,23 +25,23 @@
|
|||||||
<string>MacOSX</string>
|
<string>MacOSX</string>
|
||||||
</array>
|
</array>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>1.6.2</string>
|
<string>1.6.3</string>
|
||||||
<key>DTCompiler</key>
|
<key>DTCompiler</key>
|
||||||
<string>com.apple.compilers.llvm.clang.1_0</string>
|
<string>com.apple.compilers.llvm.clang.1_0</string>
|
||||||
<key>DTPlatformBuild</key>
|
<key>DTPlatformBuild</key>
|
||||||
<string>13C100</string>
|
<string>13F100</string>
|
||||||
<key>DTPlatformName</key>
|
<key>DTPlatformName</key>
|
||||||
<string>macosx</string>
|
<string>macosx</string>
|
||||||
<key>DTPlatformVersion</key>
|
<key>DTPlatformVersion</key>
|
||||||
<string>12.1</string>
|
<string>12.3</string>
|
||||||
<key>DTSDKBuild</key>
|
<key>DTSDKBuild</key>
|
||||||
<string>21C46</string>
|
<string>21E226</string>
|
||||||
<key>DTSDKName</key>
|
<key>DTSDKName</key>
|
||||||
<string>macosx12.1</string>
|
<string>macosx12.3</string>
|
||||||
<key>DTXcode</key>
|
<key>DTXcode</key>
|
||||||
<string>1321</string>
|
<string>1341</string>
|
||||||
<key>DTXcodeBuild</key>
|
<key>DTXcodeBuild</key>
|
||||||
<string>13C100</string>
|
<string>13F100</string>
|
||||||
<key>IOKitPersonalities</key>
|
<key>IOKitPersonalities</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>as.vit9696.Lilu</key>
|
<key>as.vit9696.Lilu</key>
|
||||||
|
|||||||
Binary file not shown.
@@ -3,7 +3,7 @@
|
|||||||
<plist version="1.0">
|
<plist version="1.0">
|
||||||
<dict>
|
<dict>
|
||||||
<key>BuildMachineOSBuild</key>
|
<key>BuildMachineOSBuild</key>
|
||||||
<string>21G217</string>
|
<string>21G320</string>
|
||||||
<key>CFBundleDevelopmentRegion</key>
|
<key>CFBundleDevelopmentRegion</key>
|
||||||
<string>en</string>
|
<string>en</string>
|
||||||
<key>CFBundleExecutable</key>
|
<key>CFBundleExecutable</key>
|
||||||
@@ -17,7 +17,7 @@
|
|||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>KEXT</string>
|
<string>KEXT</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>1.6.2</string>
|
<string>1.6.3</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleSupportedPlatforms</key>
|
<key>CFBundleSupportedPlatforms</key>
|
||||||
@@ -25,11 +25,11 @@
|
|||||||
<string>MacOSX</string>
|
<string>MacOSX</string>
|
||||||
</array>
|
</array>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>1.6.2</string>
|
<string>1.6.3</string>
|
||||||
<key>DTCompiler</key>
|
<key>DTCompiler</key>
|
||||||
<string>com.apple.compilers.llvm.clang.1_0</string>
|
<string>com.apple.compilers.llvm.clang.1_0</string>
|
||||||
<key>DTPlatformBuild</key>
|
<key>DTPlatformBuild</key>
|
||||||
<string>14A400</string>
|
<string>13F100</string>
|
||||||
<key>DTPlatformName</key>
|
<key>DTPlatformName</key>
|
||||||
<string>macosx</string>
|
<string>macosx</string>
|
||||||
<key>DTPlatformVersion</key>
|
<key>DTPlatformVersion</key>
|
||||||
@@ -39,9 +39,9 @@
|
|||||||
<key>DTSDKName</key>
|
<key>DTSDKName</key>
|
||||||
<string>macosx12.3</string>
|
<string>macosx12.3</string>
|
||||||
<key>DTXcode</key>
|
<key>DTXcode</key>
|
||||||
<string>1401</string>
|
<string>1341</string>
|
||||||
<key>DTXcodeBuild</key>
|
<key>DTXcodeBuild</key>
|
||||||
<string>14A400</string>
|
<string>13F100</string>
|
||||||
<key>IOKitPersonalities</key>
|
<key>IOKitPersonalities</key>
|
||||||
<dict>
|
<dict>
|
||||||
<key>NVHDAEnabler</key>
|
<key>NVHDAEnabler</key>
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -4,8 +4,8 @@ Note|Description
|
|||||||
:----|:----
|
:----|:----
|
||||||
Initial macOS Support|macOS 10.15, Catalina.
|
Initial macOS Support|macOS 10.15, Catalina.
|
||||||
|
|
||||||
- Opencore version: 0.8.7
|
- Opencore version: 0.8.8
|
||||||
- Release date: 06/12/2022 (late a day)
|
- Release date: 02/01/2023
|
||||||
|
|
||||||
# Basic Steps
|
# Basic Steps
|
||||||
|
|
||||||
|
|||||||
@@ -1,31 +1,31 @@
|
|||||||
{
|
{
|
||||||
"Mac-EE2EBD4B90B839A8": "latest",
|
"Mac-EE2EBD4B90B839A8": "latest",
|
||||||
"Mac-BE0E8AC46FE800CC": "11.7.1",
|
"Mac-BE0E8AC46FE800CC": "11.7.2",
|
||||||
"Mac-9AE82516C7C6B903": "12.6.1",
|
"Mac-9AE82516C7C6B903": "12.6.2",
|
||||||
"Mac-942452F5819B1C1B": "10.13.6",
|
"Mac-942452F5819B1C1B": "10.13.6",
|
||||||
"Mac-942C5DF58193131B": "10.13.6",
|
"Mac-942C5DF58193131B": "10.13.6",
|
||||||
"Mac-C08A6BB70A942AC2": "10.13.6",
|
"Mac-C08A6BB70A942AC2": "10.13.6",
|
||||||
"Mac-742912EFDBEE19B3": "10.13.6",
|
"Mac-742912EFDBEE19B3": "10.13.6",
|
||||||
"Mac-66F35F19FE2A0D05": "10.15.7",
|
"Mac-66F35F19FE2A0D05": "10.15.7",
|
||||||
"Mac-2E6FAB96566FE58C": "10.15.7",
|
"Mac-2E6FAB96566FE58C": "10.15.7",
|
||||||
"Mac-35C1E88140C3E6CF": "11.7.1",
|
"Mac-35C1E88140C3E6CF": "11.7.2",
|
||||||
"Mac-7DF21CB3ED6977E5": "11.7.1",
|
"Mac-7DF21CB3ED6977E5": "11.7.2",
|
||||||
"Mac-9F18E312C5C2BF0B": "12.6.1",
|
"Mac-9F18E312C5C2BF0B": "12.6.2",
|
||||||
"Mac-937CB26E2E02BB01": "12.6.1",
|
"Mac-937CB26E2E02BB01": "12.6.2",
|
||||||
"Mac-827FAC58A8FDFA22": "latest",
|
"Mac-827FAC58A8FDFA22": "latest",
|
||||||
"Mac-226CB3C6A851A671": "latest",
|
"Mac-226CB3C6A851A671": "latest",
|
||||||
"Mac-0CFF9C7C2B63DF8D": "latest",
|
"Mac-0CFF9C7C2B63DF8D": "latest",
|
||||||
"Mac-C3EC7CD22292981F": "10.15.7",
|
"Mac-C3EC7CD22292981F": "10.15.7",
|
||||||
"Mac-AFD8A9D944EA4843": "10.15.7",
|
"Mac-AFD8A9D944EA4843": "10.15.7",
|
||||||
"Mac-189A3D4F975D5FFC": "11.7.1",
|
"Mac-189A3D4F975D5FFC": "11.7.2",
|
||||||
"Mac-3CBD00234E554E41": "11.7.1",
|
"Mac-3CBD00234E554E41": "11.7.2",
|
||||||
"Mac-2BD1B31983FE1663": "11.7.1",
|
"Mac-2BD1B31983FE1663": "11.7.2",
|
||||||
"Mac-06F11FD93F0323C5": "12.6.1",
|
"Mac-06F11FD93F0323C5": "12.6.2",
|
||||||
"Mac-06F11F11946D27C5": "12.6.1",
|
"Mac-06F11F11946D27C5": "12.6.2",
|
||||||
"Mac-E43C1C25D4880AD6": "12.6.1",
|
"Mac-E43C1C25D4880AD6": "12.6.2",
|
||||||
"Mac-473D31EABEB93F9B": "12.6.1",
|
"Mac-473D31EABEB93F9B": "12.6.2",
|
||||||
"Mac-66E35819EE2D0D05": "12.6.1",
|
"Mac-66E35819EE2D0D05": "12.6.2",
|
||||||
"Mac-A5C67F76ED83108C": "12.6.1",
|
"Mac-A5C67F76ED83108C": "12.6.2",
|
||||||
"Mac-B4831CEBD52A0C4C": "latest",
|
"Mac-B4831CEBD52A0C4C": "latest",
|
||||||
"Mac-CAD6701F7CEA0921": "latest",
|
"Mac-CAD6701F7CEA0921": "latest",
|
||||||
"Mac-551B86E5744E2388": "latest",
|
"Mac-551B86E5744E2388": "latest",
|
||||||
@@ -43,7 +43,7 @@
|
|||||||
"Mac-942459F5819B171B": "10.13.6",
|
"Mac-942459F5819B171B": "10.13.6",
|
||||||
"Mac-4B7AC7E43945597E": "10.15.7",
|
"Mac-4B7AC7E43945597E": "10.15.7",
|
||||||
"Mac-6F01561E16C75D06": "10.15.7",
|
"Mac-6F01561E16C75D06": "10.15.7",
|
||||||
"Mac-F60DEB81FF30ACF6": "12.6.1",
|
"Mac-F60DEB81FF30ACF6": "12.6.2",
|
||||||
"Mac-27AD2F918AE68F61": "latest",
|
"Mac-27AD2F918AE68F61": "latest",
|
||||||
"Mac-F2208EC8": "10.13.6",
|
"Mac-F2208EC8": "10.13.6",
|
||||||
"Mac-8ED6AF5B48C039E1": "10.13.6",
|
"Mac-8ED6AF5B48C039E1": "10.13.6",
|
||||||
@@ -51,7 +51,7 @@
|
|||||||
"Mac-7BA5B2794B2CDB12": "10.13.6",
|
"Mac-7BA5B2794B2CDB12": "10.13.6",
|
||||||
"Mac-031AEE4D24BFF0B1": "10.15.7",
|
"Mac-031AEE4D24BFF0B1": "10.15.7",
|
||||||
"Mac-F65AE981FFA204ED": "10.15.7",
|
"Mac-F65AE981FFA204ED": "10.15.7",
|
||||||
"Mac-35C5E08120C7EEAF": "12.6.1",
|
"Mac-35C5E08120C7EEAF": "12.6.2",
|
||||||
"Mac-7BA5B2DFE22DDD8C": "latest",
|
"Mac-7BA5B2DFE22DDD8C": "latest",
|
||||||
"Mac-942B5BF58194151B": "10.13.6",
|
"Mac-942B5BF58194151B": "10.13.6",
|
||||||
"Mac-942B59F58194171B": "10.13.6",
|
"Mac-942B59F58194171B": "10.13.6",
|
||||||
@@ -61,13 +61,13 @@
|
|||||||
"Mac-031B6874CF7F642A": "10.15.7",
|
"Mac-031B6874CF7F642A": "10.15.7",
|
||||||
"Mac-27ADBB7B4CEE8E61": "10.15.7",
|
"Mac-27ADBB7B4CEE8E61": "10.15.7",
|
||||||
"Mac-77EB7D7DAF985301": "10.15.7",
|
"Mac-77EB7D7DAF985301": "10.15.7",
|
||||||
"Mac-81E3E92DD6088272": "11.7.1",
|
"Mac-81E3E92DD6088272": "11.7.2",
|
||||||
"Mac-42FD25EABCABB274": "11.7.1",
|
"Mac-42FD25EABCABB274": "11.7.2",
|
||||||
"Mac-A369DDC4E67F1C45": "12.6.1",
|
"Mac-A369DDC4E67F1C45": "12.6.2",
|
||||||
"Mac-FFE5EF870D7BA81A": "12.6.1",
|
"Mac-FFE5EF870D7BA81A": "12.6.2",
|
||||||
"Mac-DB15BD556843C820": "12.6.1",
|
"Mac-DB15BD556843C820": "12.6.2",
|
||||||
"Mac-65CE76090165799A": "12.6.1",
|
"Mac-65CE76090165799A": "12.6.2",
|
||||||
"Mac-B809C3757DA9BB8D": "12.6.1",
|
"Mac-B809C3757DA9BB8D": "12.6.2",
|
||||||
"Mac-4B682C642B45593E": "latest",
|
"Mac-4B682C642B45593E": "latest",
|
||||||
"Mac-77F17D7DA9285301": "latest",
|
"Mac-77F17D7DA9285301": "latest",
|
||||||
"Mac-BE088AF8C5EB4FA2": "latest",
|
"Mac-BE088AF8C5EB4FA2": "latest",
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user