From: chaoskagami Date: Tue, 27 Sep 2016 02:57:54 +0000 (-0400) Subject: Update nfirm X-Git-Tag: v0.3.0~9 X-Git-Url: https://chaos.moe/g/?a=commitdiff_plain;h=152bd73b8540958f00801b1e348c6f69abe3af69;p=corbenik%2Fcorbenik.git Update nfirm --- diff --git a/Makefile.am b/Makefile.am index 5a908d9..abf9e32 100644 --- a/Makefile.am +++ b/Makefile.am @@ -31,14 +31,14 @@ all-local: cat host/generate_localeemu.sh | sed "s|\@localedir\@|@localedir@|g" > out/generate_localeemu.sh chmod +x out/generate_localeemu.sh echo "#!/bin/bash" > out/o3ds_firm.sh - echo "wget http://nus.cdn.c.shop.nintendowifi.net/ccs/download/0004013800000002/00000052 -O .@libdir@/firmware/native" >> out/o3ds_firm.sh + echo "wget http://nus.cdn.c.shop.nintendowifi.net/ccs/download/0004013800000002/00000056 -O .@libdir@/firmware/native" >> out/o3ds_firm.sh echo "wget http://nus.cdn.c.shop.nintendowifi.net/ccs/download/0004013800000002/cetk -O .@libdir@/firmware/native.cetk" >> out/o3ds_firm.sh echo "wget http://nus.cdn.c.shop.nintendowifi.net/ccs/download/0004013800000102/00000016 -O .@libdir@/firmware/twl" >> out/o3ds_firm.sh echo "wget http://nus.cdn.c.shop.nintendowifi.net/ccs/download/0004013800000102/cetk -O .@libdir@/firmware/twl.cetk" >> out/o3ds_firm.sh echo "wget http://nus.cdn.c.shop.nintendowifi.net/ccs/download/0004013800000202/0000000B -O .@libdir@/firmware/agb" >> out/o3ds_firm.sh echo "wget http://nus.cdn.c.shop.nintendowifi.net/ccs/download/0004013800000202/cetk -O .@libdir@/firmware/agb.cetk" >> out/o3ds_firm.sh echo "#!/bin/bash" > out/n3ds_firm.sh - echo "wget http://nus.cdn.c.shop.nintendowifi.net/ccs/download/0004013820000002/00000021 -O .@libdir@/firmware/native" >> out/n3ds_firm.sh + echo "wget http://nus.cdn.c.shop.nintendowifi.net/ccs/download/0004013820000002/00000026 -O .@libdir@/firmware/native" >> out/n3ds_firm.sh echo "wget http://nus.cdn.c.shop.nintendowifi.net/ccs/download/0004013820000002/cetk -O .@libdir@/firmware/native.cetk" >> out/n3ds_firm.sh echo "wget http://nus.cdn.c.shop.nintendowifi.net/ccs/download/0004013820000102/00000000 -O .@libdir@/firmware/twl" >> out/n3ds_firm.sh echo "wget http://nus.cdn.c.shop.nintendowifi.net/ccs/download/0004013820000102/cetk -O .@libdir@/firmware/twl.cetk" >> out/n3ds_firm.sh diff --git a/README.md b/README.md index d3e1c2d..d25bf20 100644 --- a/README.md +++ b/README.md @@ -27,21 +27,21 @@ Installing Copy the files to the root of your SD (and optionally, rename arm9loaderhax.bin and set it up with a bootloader.) -Without the FIRMs, it cannot boot up your system. You'll need to fetch the following at minimum, putting the firm at `/corbenik/lib/firmware/native` and cetk at `/corbenik/share/keys/native.cetk`. If you are using a POSIX shell and have the wget command available, you can run the shell scripts provided to automatically fetch for your console. +Without the FIRMs, it cannot boot up your system. You'll need to fetch the following at minimum, putting the firm at `/corbenik/lib/firmware/native` and cetk at `/corbenik/lib/firmware/native.cetk`. If you are using a POSIX shell and have the wget command available, you can run the shell scripts provided to automatically fetch for your console. Otherwise, manually fetching firmware should be done from the following URLs: Old 3DS (Native FIRM, 11.0): - * firm: http://nus.cdn.c.shop.nintendowifi.net/ccs/download/0004013800000002/00000052 + * firm: http://nus.cdn.c.shop.nintendowifi.net/ccs/download/0004013800000002/00000056 * cetk: http://nus.cdn.c.shop.nintendowifi.net/ccs/download/0004013800000002/cetk New 3DS (Native FIRM, 11.0): - * firm: http://nus.cdn.c.shop.nintendowifi.net/ccs/download/0004013820000002/00000021 + * firm: http://nus.cdn.c.shop.nintendowifi.net/ccs/download/0004013820000002/00000026 * cetk: http://nus.cdn.c.shop.nintendowifi.net/ccs/download/0004013820000002/cetk This is only a recommendation - you can supply near any valid firmware file for your console (it has only been tested until 9.2 backwards, however.) You can also supply a decrypted native_firm titlekey as `/corbenik/share/keys/native.key`, although this is no longer required and it can be automatically retrieved from the cetk. -You can also fetch the agb firm and twl firms to `/corbenik/lib/firmware/agb` and `/corbenik/lib/firmware/twl` respectively. You can fetch the cetk for each of them to `/corbenik/share/keys/agb.cetk` and `/corbenik/share/keys/twl.cetk`, or acquire decrypted titlekeys (firmkeys) for them. +You can also fetch the agb firm and twl firms to `/corbenik/lib/firmware/agb` and `/corbenik/lib/firmware/twl` respectively. You can fetch the cetk for each of them to `/corbenik/lib/firmware/agb.cetk` and `/corbenik/lib/firmware/twl.cetk`, or acquire decrypted titlekeys (firmkeys) for them. Old 3DS TWL_FIRM (Firmware for DS/DSi games): * cetk: http://nus.cdn.c.shop.nintendowifi.net/ccs/download/0004013800000102/cetk diff --git a/host/copy.sh b/host/copy.sh index bac751b..23ee49a 100755 --- a/host/copy.sh +++ b/host/copy.sh @@ -3,10 +3,8 @@ # This is just a helper script I use to copy shit to my own unit. # You don't and shouldn't need to use it. -mnt=/media/sd -dev=/dev/sdc - -mnt=/mnt/ext1 +mnt=/media +dev=/dev/mmcblk0p mount -t vfat ${dev}1 $mnt || exit 0 rm -rf $mnt/corbenik @@ -15,4 +13,3 @@ cp -r out/* $mnt/ || exit 0 mv $mnt/arm9loaderhax{,_si}.bin umount $mnt || exit 0 sync || exit 0 -eject ${dev} || exit 0