当前位置: 首页 > article >正文

debian 编译openwrt

镜像使用

debian-12.8.0-amd64-DVD-1.iso

切换到root
nano /etc/sudoers
在这里插入图片描述
加上这一行

改源
nano /etc/apt/sources.list

deb http://mirrors.163.com/debian/ bookworm main contrib non-free non-free-firmware
deb http://mirrors.163.com/debian/ bookworm-updates main contrib non-free non-free-firmware
deb http://mirrors.163.com/debian/ bookworm-backports main contrib non-free non-free-firmware
deb http://mirrors.163.com/debian-security/ bookworm-security main contrib non-free non-free-firmware

参考编译
https://github.com/coolsnowwolf/lede

sudo apt update -y
sudo apt full-upgrade -y
sudo apt install -y ack antlr3 asciidoc autoconf automake autopoint binutils bison build-essential \
bzip2 ccache clang cmake cpio curl device-tree-compiler flex gawk gettext gcc-multilib g++-multilib \
git gperf haveged help2man intltool libc6-dev-i386 libelf-dev libfuse-dev libglib2.0-dev libgmp3-dev \
libltdl-dev libmpc-dev libmpfr-dev libncurses-dev libncurses-dev libpython3-dev libreadline-dev \
libssl-dev libtool llvm lrzsz genisoimage msmtp ninja-build p7zip p7zip-full patch pkgconf python3 \
python3-pyelftools python3-setuptools qemu-utils rsync scons squashfs-tools subversion swig texinfo \
uglifyjs upx-ucl unzip vim wget xmlto xxd zlib1g-dev




su 回普通系统账号
su qq547176052

克隆仓库

git clone https://github.com/coolsnowwolf/lede
cd lede
./scripts/feeds update -a
./scripts/feeds install -a
make menuconfig

配置

编译

make download -j8
make V=s -j1

二次编译:

cd lede
git pull
./scripts/feeds update -a
./scripts/feeds install -a
make defconfig
make download -j8
make V=s -j$(nproc)

如果需要重新配置:

rm -rf .config
make menuconfig
make V=s -j$(nproc)

编译完成后输出路径:bin/targets


http://www.kler.cn/a/452168.html

相关文章:

  • React引入Echart水球图
  • RAG实战:构建基于本地大模型的智能问答系统
  • Y3编辑器教程8:资源管理器与存档、防作弊设置
  • Java技术专家视角解读:SQL优化与批处理在大数据处理中的应用及原理
  • 《Swift 字面量》
  • Vue.js前端框架教程11:Vue监听器watch和watchEffect
  • idea集合git使用
  • 单片机:实现LED亮度等级控制(附带源码)
  • Zookeeper常见面试题解析
  • Docker 快速搭建 GBase 8s数据库服务
  • 重温设计模式--6、享元模式
  • Android蓝牙通信
  • VR 动感单车身心调适系统的功能与作用
  • 前端 MYTED单篇TED词汇学习功能优化
  • Leetcode 695 Max Area of Island
  • Logback日志框架中的继承机制详解
  • 学习postman工具使用
  • 头歌-机器学习在 NLP 中的实战
  • Github 2024-12-25C开源项目日报 Top8
  • HTTP 协议、AJAX - 异步网络请求及跨域、同源策略
  • LabVIEW软件项目设计方案如何制定
  • 构建专属AI知识库:Obsidian Copilot + 硅基流动SiliconCloud API 实战指南
  • 汽车消费新旺季到来,联众优车年末冲刺把好服务关
  • 静态断言(Static Assertions)在 C++ 中的使用
  • PHP爬虫类的并发与多线程处理技巧
  • Sublime 安装 View in Browser 插件后,点击无反应的解决方法