mirror of
https://github.com/CyberMind-FR/secubox-deb.git
synced 2026-07-29 15:37:03 +00:00
- Add Tow-Boot source to tools/ with eMMC boot partition support - Enable CONFIG_SUPPORT_EMMC_BOOT via mmcBootIndex for MOCHAbin variants - Document boot mode jumpers J17-J22 (SPI 0x32, eMMC 0x2B) - Document Tow-Boot build and flashing procedures - Add known hardware issues (SPI intermittent, eMMC BootROM failure) - Remove incorrect microSD slot reference from MOCHAbin docs - Fix systemd service path (/lib → /usr/lib) in mitmproxy package Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
10 lines
339 B
Nix
10 lines
339 B
Nix
let
|
|
rev = "f292b4964cb71f9dfbbd30dc9f511d6165cd109b";
|
|
sha256 = "sha256:01yzrkrb60dd2y2y3fh4939z374hf5pa92q8axfcygqlnbk3jpb4";
|
|
tarball = builtins.fetchTarball {
|
|
url = "https://github.com/NixOS/nixpkgs/archive/${rev}.tar.gz";
|
|
inherit sha256;
|
|
};
|
|
in
|
|
builtins.trace "Using default Nixpkgs revision '${rev}'..." (import tarball)
|