This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
user_guide:mikrotik:openwrt_rb750gr3_sdk_19 [2021/02/16 12:15] – [Install the required packages] admin | user_guide:mikrotik:openwrt_rb750gr3_sdk_19 [2021/03/15 09:14] (current) – [Select required packages] admin | ||
---|---|---|---|
Line 265: | Line 265: | ||
</ | </ | ||
+ | ===== Select target system and model ===== | ||
+ | * Under the **openwrt** folder type: | ||
+ | <code bash> | ||
+ | make menuconfig | ||
+ | </ | ||
+ | * For **Target System** select **MediaTek Ralink MIPS** | ||
+ | * For **Subtarget** select **MT7621based boards** | ||
+ | * For **Profile** select **Mikrotik RouterBOARD 750Gr3** | ||
+ | |||
+ | Next we will select the packages to include | ||
+ | |||
+ | |||
+ | ===== Select required packages ===== | ||
+ | * The default package selection by OpenWRT is pretty good to get a standard working firmware done. | ||
+ | * We will do the following additional selections | ||
+ | |||
+ | ^ Package | ||
+ | | coova-chilli | ||
+ | | luci | Luci -> Collections | Required for web management | ||
+ | | luci-theme-material | ||
+ | |||
+ | * After that you can save and exit | ||
+ | |||
+ | ===== Kick off the built ===== | ||
+ | * Everything is now in place to start the firmware built | ||
+ | * Enter the following under the **openwrt** folder | ||
+ | <code bash> | ||
+ | make | ||
+ | </ | ||
+ | * If the build completes with success it will be located here: | ||
+ | <code bash> | ||
+ | ls -l bin/ | ||
+ | total 9412 | ||
+ | -rw-r--r-- 1 system system | ||
+ | -rw-r--r-- 1 system system | ||
+ | -rw-r--r-- 1 system system | ||
+ | -rwxr-xr-x 1 system system 4692436 Feb 16 15:41 openwrt-ramips-mt7621-mikrotik_rb750gr3-initramfs-kernel.bin | ||
+ | -rw-r--r-- 1 system system 4915980 Feb 16 15:41 openwrt-ramips-mt7621-mikrotik_rb750gr3-squashfs-sysupgrade.bin | ||
+ | drwxr-xr-x 2 system system | ||
+ | -rw-r--r-- 1 system system | ||
+ | -rw-r--r-- 1 system system | ||
+ | |||
+ | </ | ||
+ | |||