Skip to content

Instantly share code, notes, and snippets.

View GH0STP4WZ's full-sized avatar

Aurora GH0STP4WZ

View GitHub Profile
@xerpi
xerpi / make_3ds.sh
Last active October 5, 2025 01:56
Linux 3DS scripts
#!/bin/sh
TOOLCHAIN=/opt/armv6-eabihf--glibc--bleeding-edge-2020.02-2/bin/arm-buildroot-linux-gnueabihf-
cp arch/arm/configs/nintendo3ds_defconfig .config
make ARCH=arm CROSS_COMPILE=$TOOLCHAIN -j8
make ARCH=arm CROSS_COMPILE=$TOOLCHAIN nintendo3ds_ctr.dtb
echo "Output file: ./arch/arm/boot/zImage"