Skip to content

Instantly share code, notes, and snippets.

@b00t0x
b00t0x / build.rb
Created October 22, 2023 12:57
itlwmで任意のファームウェアを個別にビルドする&指定ファームウェアを束ねてビルドする
#!/usr/bin/env ruby
require 'fileutils'
firmwares = {
# 'AX411NGW' => 'iwlwifi-so-a0-gf4-a0',
'AX210NGW' => 'iwlwifi-ty-a0-gf-a0',
'AX200NGW' => 'iwlwifi-cc-a0',
'9560NGW' => 'iwm-9000',
'8265NGW' => 'iwm-8265',
@b00t0x
b00t0x / wi-fi.md
Last active November 3, 2023 17:53
Wi-Fi規格ごとの通信速度

規格

11be / Wi-Fi 7

2.4 GHz

1x1 2x2 4x4 8x8 16x16
20 MHz 172 344 688
40 MHz 344 688 1376

5 / 6 GHz

| | 1x1| 2x2| 4x4| 8x8|16x16|

@b00t0x
b00t0x / build_RyzenAdj_macos.md
Last active April 9, 2024 16:30
RyzenAdj for macOS

Description

How to build RyzenAdj for macOS

Limitations

  • Monitoring functions like ./ryzenadj --info not working
    • adjustment only

Prerequisite

  • cmake (via Homebrew)
@b00t0x
b00t0x / CpuTopologySync.cpp.txt
Last active January 10, 2022 15:40
CpuTopologySync for 16c24t, 8c24t, 8c16t(HT disabled+E-Core) recognition ( ProvideCurrentCpuInfo=true required )
moved to https://github.com/b00t0x/CpuTopologyRebuild
@b00t0x
b00t0x / cpu_name.sh
Last active November 4, 2019 11:22
change cpu name script for macOS 10.15 Catalina
#!/bin/bash
locale=`defaults read -g AppleLocale | cut -c 1-2`
cpu_name=`sysctl -n machdep.cpu.brand_string | sed -e 's/ *$//'`
target="/System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/Resources/${locale}.lproj/AppleSystemInfo.strings"
if [ $# -ge 1 ]; then
cpu_name=$1
fi