├── README.md ├── logo_rg280v.png └── screenshot001.png /README.md: -------------------------------------------------------------------------------- 1 | # RG280V_ROGUE 2 | 3 |

4 | 5 | ROGUE firmware for RG280V, same feactures that RG350 (without sticks XD) 6 | 7 | # INSTALLATION 8 | 9 | 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. 10 | 11 | If you need to update your ROGUE CFW, then use the update .opk packages. 12 | 13 | # COMPILATION 14 | 15 | first check that your linux system has the packages installed: 16 | 17 | 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 18 | 19 | clone the repository with the command: 20 | 21 | git clone --recursive https://github.com/Ninoh-FOX/toolchain 22 | 23 | 24 | If you don't have the GCW0 build environment installed on your system there are two steps. 25 | 26 | if you have debian 9, just download the binarion package at: 27 | 28 | https://github.com/Ninoh-FOX/toolchain/releases 29 | 30 | and extract this in /opt/gcw0-toolchain 31 | 32 | 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. 33 | 34 | Once all this is configured, the steps to compile the system are: 35 | 36 | ~/toolchain $ make rg280v_defconfig 37 | 38 | ~/toolchain $ make -f Makefile.rg280v -j4 39 | 40 | When the whole process is finished you can create the installation packages or the sd_imagen.bin with the following commands: 41 | 42 | ~/toolchain/updaters $ ./create_kernel_rg280v.sh (this creates a kernel update package) 43 | 44 | ~/toolchain/updaters $ ./create_updater_rg280v.sh (this creates a complete system update package) 45 | 46 | ~/toolchain/updaters/imager_rg280v $ sudo ./create_sdimage.sh (this creates the sd_image.bin file) 47 | -------------------------------------------------------------------------------- /logo_rg280v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ninoh-FOX/RG280V_ROGUE/bba39bf02994f837e3c5db39b0be5629cf263d03/logo_rg280v.png -------------------------------------------------------------------------------- /screenshot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ninoh-FOX/RG280V_ROGUE/bba39bf02994f837e3c5db39b0be5629cf263d03/screenshot001.png --------------------------------------------------------------------------------