Skip to content

Commit

Permalink
article 13 compliant memes
Browse files Browse the repository at this point in the history
  • Loading branch information
Reisyukaku committed Sep 16, 2018
1 parent 117857a commit a670a4e
Show file tree
Hide file tree
Showing 30 changed files with 1,161 additions and 1,043 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -5,4 +5,5 @@ ReiNXSettings.*
*.pfs0 *.pfs0
*.nso *.nso
*.nacp *.nacp
*.nsp *.nsp
*.npdm
695 changes: 674 additions & 21 deletions LICENSE

Large diffs are not rendered by default.

35 changes: 35 additions & 0 deletions README.md
@@ -0,0 +1,35 @@
# ReiNX Toolkit
[![License (GPL version 3)](https://img.shields.io/badge/license-GNU%20GPL%20version%203-red.svg?style=flat-square)](http://opensource.org/licenses/GPL-3.0)

*A toolkit to be used with the ReiNX CFW*


**Compiling:**

You'll need latest devkitpro and switch-sdl. You can install dependencies by running `pacman -S switch-sdl2 switch-sdl2_mixer switch-sdl2_gfx switch-sdl2_image switch-sdl2_ttf`.


**Features:**

* Update the ReiNX CFW

* Toggle AutoRCM

* Kip manager

* Dump NAND/Cal0/Boot0/Boot1

* Convert splash screen given a jpg/png/bmp to splash.bin

* Reboot / shutdown


**Credits:**

Calypso and Crusatyr for NAND functions

fgsds for utilies code

neonsea for kip manager and various other fixes/contributions

The ReiSwitched community for being my beta testers!
18 changes: 18 additions & 0 deletions source/FS.cpp
@@ -1,3 +1,21 @@
/*
* ReiNX Toolkit
* Copyright (C) 2018 Team ReiSwitched
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include <dirent.h> #include <dirent.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <unistd.h> #include <unistd.h>
Expand Down
18 changes: 18 additions & 0 deletions source/FS.hpp
@@ -1,3 +1,21 @@
/*
* ReiNX Toolkit
* Copyright (C) 2018 Team ReiSwitched
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once #pragma once
#include <iostream> #include <iostream>
#include <string> #include <string>
Expand Down
18 changes: 18 additions & 0 deletions source/Net/Request.cpp
@@ -1,3 +1,21 @@
/*
* ReiNX Toolkit
* Copyright (C) 2018 Team ReiSwitched
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include <switch.h> #include <switch.h>
#include "Request.hpp" #include "Request.hpp"


Expand Down
18 changes: 18 additions & 0 deletions source/Net/Request.hpp
@@ -1,3 +1,21 @@
/*
* ReiNX Toolkit
* Copyright (C) 2018 Team ReiSwitched
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once #pragma once
#include <string> #include <string>
#include <sys/select.h> #include <sys/select.h>
Expand Down
18 changes: 18 additions & 0 deletions source/Power.cpp
@@ -1,3 +1,21 @@
/*
* ReiNX Toolkit
* Copyright (C) 2018 Team ReiSwitched
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include "Services/bpc.h" #include "Services/bpc.h"
#include "Power.hpp" #include "Power.hpp"


Expand Down
18 changes: 18 additions & 0 deletions source/Power.hpp
@@ -1,3 +1,21 @@
/*
* ReiNX Toolkit
* Copyright (C) 2018 Team ReiSwitched
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once #pragma once
#include <switch.h> #include <switch.h>


Expand Down
18 changes: 18 additions & 0 deletions source/Tools/autorcm.cpp
@@ -1,3 +1,21 @@
/*
* ReiNX Toolkit
* Copyright (C) 2018 Team ReiSwitched
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include "autorcm.hpp" #include "autorcm.hpp"


int Tools::toggle_rcm() { int Tools::toggle_rcm() {
Expand Down
18 changes: 18 additions & 0 deletions source/Tools/autorcm.hpp
@@ -1,3 +1,21 @@
/*
* ReiNX Toolkit
* Copyright (C) 2018 Team ReiSwitched
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once #pragma once
#include <switch.h> #include <switch.h>
#include <stdio.h> #include <stdio.h>
Expand Down
18 changes: 18 additions & 0 deletions source/Tools/configmanager.cpp
@@ -1,3 +1,21 @@
/*
* ReiNX Toolkit
* Copyright (C) 2018 Team ReiSwitched
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include "configmanager.hpp" #include "configmanager.hpp"


ConfigManager * ConfigManager::mInstance = 0; ConfigManager * ConfigManager::mInstance = 0;
Expand Down
18 changes: 18 additions & 0 deletions source/Tools/configmanager.hpp
@@ -1,3 +1,21 @@
/*
* ReiNX Toolkit
* Copyright (C) 2018 Team ReiSwitched
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once #pragma once
#include <iostream> #include <iostream>
#include <fstream> #include <fstream>
Expand Down
18 changes: 18 additions & 0 deletions source/Tools/kipmanager.cpp
@@ -1,3 +1,21 @@
/*
* ReiNX Toolkit
* Copyright (C) 2018 Team ReiSwitched
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include "kipmanager.hpp" #include "kipmanager.hpp"


std::string smdDir ("/ReiNX/sysmodules"); std::string smdDir ("/ReiNX/sysmodules");
Expand Down
18 changes: 18 additions & 0 deletions source/Tools/kipmanager.hpp
@@ -1,3 +1,21 @@
/*
* ReiNX Toolkit
* Copyright (C) 2018 Team ReiSwitched
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include <stdio.h> #include <stdio.h>
#include <algorithm> #include <algorithm>
#include <switch.h> #include <switch.h>
Expand Down
18 changes: 18 additions & 0 deletions source/Tools/nandDump.cpp
@@ -1,3 +1,21 @@
/*
* ReiNX Toolkit
* Copyright (C) 2018 Team ReiSwitched
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include "nandDump.hpp" #include "nandDump.hpp"
#include "../Power.hpp" #include "../Power.hpp"
extern "C" { extern "C" {
Expand Down
18 changes: 18 additions & 0 deletions source/Tools/nandDump.hpp
@@ -1,3 +1,21 @@
/*
* ReiNX Toolkit
* Copyright (C) 2018 Team ReiSwitched
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#pragma once #pragma once
#include <string> #include <string>
#include <sstream> #include <sstream>
Expand Down
19 changes: 18 additions & 1 deletion source/UI.cpp
@@ -1,9 +1,26 @@
/*
* ReiNX Toolkit
* Copyright (C) 2018 Team ReiSwitched
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include <switch.h> #include <switch.h>
#include "Net/Request.hpp" #include "Net/Request.hpp"
#include "Tools/autorcm.hpp" #include "Tools/autorcm.hpp"
#include "Tools/kipmanager.hpp" #include "Tools/kipmanager.hpp"
#include "Utils/unzip_utils.hpp" #include "Utils/unzip_utils.hpp"
#include "Utils/json11.hpp"
#include "FS.hpp" #include "FS.hpp"
#include "UI.hpp" #include "UI.hpp"
#include "Power.hpp" #include "Power.hpp"
Expand Down

0 comments on commit a670a4e

Please sign in to comment.