├── logo_rg300x.png
└── README.md
/logo_rg300x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Ninoh-FOX/RG300X-ROGUE-CFW/HEAD/logo_rg300x.png
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # RG300X-ROGUE
2 | ROGUE custom firmware for RG300X
3 |
4 |

5 |
6 | ROGUE firmware for RG300X, same feactures that RG350 (without sticks XD)
7 |
8 | # INSTALLATION
9 |
10 | If it is the first time you install the ROGUE CFW, please do not update from STOCK or another base system, use the sd_image.bin and burned in a new microsd (recommended a 16Gb of good speed), because if you can not have system failures.
11 |
12 | If you need to update your ROGUE CFW, then use the update .opk packages.
13 |
14 | # COMPILATION
15 |
16 | first check that your linux system has the packages installed:
17 |
18 | bison flex gettext texinfo wget cpio python unzip mercurial subversion libncurses5-dev libc6-dev-i386 bzr libssl-dev g ++ - multilib rsync java-wrappers mtools gcj-4.9-jdk
19 |
20 | clone the repository with the command:
21 |
22 | git clone --recursive https://github.com/Ninoh-FOX/toolchain
23 |
24 |
25 | If you don't have the GCW0 build environment installed on your system there are two steps.
26 |
27 | if you have debian 9 or 10, just download the binarion package at:
28 |
29 | https://github.com/Ninoh-FOX/toolchain/releases
30 |
31 | and extract this in /opt/gcw0-toolchain
32 |
33 | If you have a different Linux distribution, run the rebuild.sh script that is inside the toolchain folder to create the correct / opt / gcw0-toolchain for your system.
34 |
35 | Once all this is configured, the steps to compile the system are:
36 |
37 | ~/toolchain $ make rg300x_defconfig
38 |
39 | ~/toolchain $ make -f Makefile.rg300x -j4
40 |
41 | When the whole process is finished you can create the installation packages or the sd_imagen.bin with the following commands:
42 |
43 | ~/toolchain/updaters $ ./create_kernel_rg300x.sh (this creates a kernel update package)
44 |
45 | ~/toolchain/updaters $ ./create_updater_rg300x.sh (this creates a complete system update package)
46 |
47 | ~/toolchain/updaters/imager_rg300x $ sudo ./create_sdimage.sh (this creates the sd_image.bin file)
48 |
--------------------------------------------------------------------------------