All Projects → Boos4721 → openwrt

Boos4721 / openwrt

Licence: other
Base on lede, merge with openwrt. btw, dont fork it, pls gib meme star.

Programming Languages

c
50402 projects - #5 most used programming language
Makefile
30231 projects
shell
77523 projects
Roff
2310 projects
perl
6916 projects
assembly
5116 projects

Labels

Projects that are alternatives of or similar to openwrt

OpenWRT-x86 64-Install
Create and deploy a LEGACY or EFI OpenWRT bootable image for x86_64 processors
Stars: ✭ 15 (-80.77%)
Mutual labels:  openwrt
pulsertp-multiroom
Synchronized multiroom audio with PulseAudio RTP
Stars: ✭ 25 (-67.95%)
Mutual labels:  openwrt
firmware-core
nodewatcher firmware.
Stars: ✭ 26 (-66.67%)
Mutual labels:  openwrt
koolcenter
提供评测文章,固件教程,插件使用说明等。
Stars: ✭ 189 (+142.31%)
Mutual labels:  openwrt
HandsomeMod
IOT freedom for end users!
Stars: ✭ 39 (-50%)
Mutual labels:  openwrt
OpenAppFilter
基于OpenWrt的App过滤(上网管控)模块,支持抖音、斗鱼、王者荣耀、腾讯视频等上百款App过滤
Stars: ✭ 32 (-58.97%)
Mutual labels:  openwrt
openwrt
OpenWrt Stable 1907 with lean's package
Stars: ✭ 55 (-29.49%)
Mutual labels:  openwrt
OpenWrt-Buildbot
Customized Pure OpenWrt & Self-Build OpenWrt Packages Project.
Stars: ✭ 305 (+291.03%)
Mutual labels:  openwrt
openwrt-vm-tools
vmware tools open-vm-tools for OpenWRT, segfault and crashes free😊😊
Stars: ✭ 45 (-42.31%)
Mutual labels:  openwrt
slim-wrt
Armor for Openwrt
Stars: ✭ 66 (-15.38%)
Mutual labels:  openwrt
OpenWrtAction
Openwrt automatic compilation project of github action
Stars: ✭ 28 (-64.1%)
Mutual labels:  openwrt
YAWAC
Yet Another Wifi Auto Connect (YAWAC) is a shell script to connect to a dataset of wireless connection and free hotspot like FreeWifi. It's works on OpenWrt.
Stars: ✭ 22 (-71.79%)
Mutual labels:  openwrt
aliyun-ddns
[Go] Update Aliyun DDNS record from OpenWRT or CLI. 阿里云域名动态解析客户端, 万网, 云解析, Windows, Linux
Stars: ✭ 17 (-78.21%)
Mutual labels:  openwrt
feed-netkeeper
Openwrt闪讯插件
Stars: ✭ 107 (+37.18%)
Mutual labels:  openwrt
VPS OpenWrt
Deploy OpenWrt onto VPS
Stars: ✭ 47 (-39.74%)
Mutual labels:  openwrt
ucode
JavaScript-like language with optional templating
Stars: ✭ 27 (-65.38%)
Mutual labels:  openwrt
OpenWrts
OPENWRT 固件(Raspberry Pi4B/3B+,NanoPi R4S,Orange Pi R1Plus,x86) 依源码更新自动编译
Stars: ✭ 100 (+28.21%)
Mutual labels:  openwrt
xiaomi-r3g-openwrt-builder
OpenWrt builder for any supported routers using Docker. Scheduled to run weekly
Stars: ✭ 25 (-67.95%)
Mutual labels:  openwrt
openwrt-mwan-config
OpenWrt multi wan working configuration on a TP-Link Archer C7 v2 router
Stars: ✭ 17 (-78.21%)
Mutual labels:  openwrt
zsun-resources
Zsun SD100 OpenWrt Resources
Stars: ✭ 25 (-67.95%)
Mutual labels:  openwrt

如何编译自己需要的 OpenWrt 固件

注意:

  1. 不要root 用户进行编译!!! 非必要 请输入 export FORCE_UNSAFE_CONFIGURE=1&& exportFORCE=1
  2. 国内用户编译前最好准备好梯子
  3. 默认登陆IP 10.10.10.1 密码 boos

编译命令如下:

  1. 若你是 Ubuntu 20.04 LTS x64

    命令行输入 sudo apt-get update ,然后输入

    sudo apt-get -y install build-essential asciidoc binutils bzip2 gawk gettext git libncurses5-dev libz-dev patch python3 python2.7 unzip zlib1g-dev lib32gcc1 libc6-dev-i386 subversion flex uglifyjs git-core gcc-multilib p7zip p7zip-full msmtp libssl-dev texinfo libglib2.0-dev xmlto qemu-utils upx libelf-dev autoconf automake libtool autopoint device-tree-compiler g++-multilib antlr3 gperf wget curl swig rsync
    

    若你是 Ubuntu 21.10 LTS x64

    命令行输入 sudo apt-get update ,然后输入

    sudo apt-get -y install build-essential asciidoc binutils bzip2 gawk gettext git libncurses5-dev libz-dev patch python3 python2.7 unzip zlib1g-dev lib32gcc-s1 libc6-dev-i386 subversion flex uglifyjs git-core gcc-multilib p7zip p7zip-full msmtp libssl-dev texinfo libglib2.0-dev xmlto qemu-utils upx libelf-dev autoconf automake libtool autopoint device-tree-compiler g++-multilib antlr3 gperf wget curl swig rsync
    
  2. 使用 git clone https://github.com/Boos4721/openwrt 命令下载好源代码,然后 cd openwrt 进入目录

  3. ./scripts/feeds update -a
    ./scripts/feeds install -a -f
    make menuconfig
  4. make -j8 download V=s 下载dl库(国内请尽量全局科学上网)

  5. 输入 make -j1 V=s (-j1 后面是线程数。第一次编译推荐用单线程)即可开始编译你要的固件了。

本套代码保证肯定可以编译成功。里面包括了 R22 所有源代码,包括 IPK 的。

你可以自由使用,但源码编译二次发布请注明我的 GitHub 仓库链接。谢谢合作!

如果你使用WSL或WSL2进行编译:

由于wsl的PATH路径中包含带有空格的Windows路径,有可能会导致编译失败,请在将make -j1 V=s或make -j$(($(nproc) + 1)) V=s改为

首次编译:

PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin make -j1 V=s 

二次编译:

PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin make -j$(($(nproc) + 1)) V=s
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].