Skip to content

Instantly share code, notes, and snippets.

View riptidewave93's full-sized avatar

Chris Blake riptidewave93

View GitHub Profile
cat .config | grep INFINIBAND
CONFIG_INFINIBAND=m
CONFIG_INFINIBAND_USER_MAD=m
CONFIG_INFINIBAND_USER_ACCESS=m
CONFIG_INFINIBAND_USER_MEM=y
CONFIG_INFINIBAND_ON_DEMAND_PAGING=y
CONFIG_INFINIBAND_ADDR_TRANS=y
CONFIG_INFINIBAND_ADDR_TRANS_CONFIGFS=y
CONFIG_INFINIBAND_MTHCA=m
# CONFIG_INFINIBAND_MTHCA_DEBUG is not set
### Keybase proof
I hereby claim:
* I am riptidewave93 on github.
* I am riptide_wave (https://keybase.io/riptide_wave) on keybase.
* I have a public key ASClkACnpqRB6Ps4el1uA4DtpubUVC0SivF0bwNHuYSsTgo
To claim this, I am signing this object:
From 2158e288d82e70e80568cfa33d7294f4bf8de910 Mon Sep 17 00:00:00 2001
From: Chris Blake <chrisrblake93@gmail.com>
Date: Sun, 5 May 2019 12:56:03 -0500
Subject: [PATCH] ath79: add support for Aruba AP-105
SoC: Atheros AR7161-8C1A @ 680 MHz
RAM: 128MB - 2x Etron Technology EM6AB160TSA-5G
NOR: 16MB - 1x MXIC MX25L12845EMI-10G (SPI-NOR)
WI1: Atheros AR9223-AC1A 802.11bgn
WI2: Atheros AR9220-AC1A 802.11an
root@debian:~# dmesg | grep dwmac-sun8i
[ 1.267777] dwmac-sun8i 1c30000.ethernet: PTP uses main clock
[ 1.765817] dwmac-sun8i 1c30000.ethernet: PTP uses main clock
[ 1.882146] dwmac-sun8i 1c30000.ethernet: Current syscon value is not the default 50006 (expect 58000)
[ 1.891477] dwmac-sun8i 1c30000.ethernet: No HW DMA feature register supported
[ 1.898700] dwmac-sun8i 1c30000.ethernet: RX Checksum Offload Engine supported
[ 1.905927] dwmac-sun8i 1c30000.ethernet: COE Type 2
[ 1.910894] dwmac-sun8i 1c30000.ethernet: TX Checksum insertion supported
[ 1.917681] dwmac-sun8i 1c30000.ethernet: Normal descriptors
[ 1.923342] dwmac-sun8i 1c30000.ethernet: Chain mode enabled
@riptidewave93
riptidewave93 / quartzpro64-android.dts
Created August 5, 2023 16:08
QuartzPro64 Android Device Tree (dts)
/dts-v1/;
/ {
compatible = "rockchip,rk3588-evb1-lp4-v10\0rockchip,rk3588";
interrupt-parent = <0x01>;
#address-cells = <0x02>;
#size-cells = <0x02>;
model = "Rockchip RK3588 EVB1 LP4 V10 Board";
aliases {
@riptidewave93
riptidewave93 / ubnt-fw-parse.py
Last active May 18, 2024 19:16
Ubiquiti Unifi Dream Machine Firmware file Dumper
#!/usr/bin/python3
import argparse
import binascii
import mmap
import sys
import zlib
from io import BytesIO
from pathlib import Path