diff options
author | FreeArtMan <dos21h@gmail.com> | 2023-02-04 14:10:26 +0000 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2023-02-04 14:10:26 +0000 |
commit | 380f0fe40b1ab20790e75dac779e73667cc5ac72 (patch) | |
tree | 9fa3b9c93b58c966daa22f955282bc3c181d909a /md/writeup/building_openwrt_for_rtl8196c.md | |
parent | df881efab146ca3ee61bf8936f948dd976fc4740 (diff) | |
download | md-content-380f0fe40b1ab20790e75dac779e73667cc5ac72.tar.gz md-content-380f0fe40b1ab20790e75dac779e73667cc5ac72.zip |
Update all content to new pygmentize
Diffstat (limited to 'md/writeup/building_openwrt_for_rtl8196c.md')
-rw-r--r-- | md/writeup/building_openwrt_for_rtl8196c.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/md/writeup/building_openwrt_for_rtl8196c.md b/md/writeup/building_openwrt_for_rtl8196c.md index e3825d7..284b025 100644 --- a/md/writeup/building_openwrt_for_rtl8196c.md +++ b/md/writeup/building_openwrt_for_rtl8196c.md @@ -16,7 +16,7 @@ Fits of all need to get sources from git server. There is some branches in git. But only one of them intended to be used for non development purposes its "realtek-unstable" -``` +```sh git clone http://git.advem.lv/rtl819xx cd ./rtl819xx/ git branch -a @@ -28,7 +28,7 @@ git checkout realtek-unstable There is supported only compilation with binutils 2.21.1 and gcc-4.6.x-linaro. Now you should setup that options with menuconfig. -``` +```sh make menuconfig ``` @@ -45,7 +45,7 @@ __Binutils Version__ as (binutils 2.21.1) __GCC compiler Version__ as (gcc 4.6.x with Linaro enhancements) Last option to switch of is in main menu __Network__ -``` +```text firewall3 odhcp6c ``` @@ -56,17 +56,17 @@ odhcp6c It could take some time to compile image. With some compiling output -``` +```sh make V=s ``` Without extra output -``` +```sh make ``` Compile in many threads -``` +```sh make -j8 ``` |