OpenWRT

作者: michael_jia | 来源:发表于2021-12-19 18:26 被阅读0次
    • 以 IPQ5018 Qualcomm-Atheros 高通创锐讯 为例。
    • github openwrt: 最新 v22.03.2。
    • QSDK @CodeLinaro Wiki: Qualcomm Atheros 芯片组,OpenWrt 构建。
    • 仓库 QSDK
    • 编译必要的工具
    'Target System', 'Subtarget' and 'Target Profile'. 也就是设备型号的基本参数。
    Package architecture: 比如 mips_24kc
    

    export PATH=/home/openwrt/source/staging_dir/host/bin:$PATH: 编译完毕,所需要的 target-independent tools 工具在 staging_dir/host/bin 下,请 exportPATH 变量以方便使用。同时编译出的 toolchain 部署在 staging_dir/toolchain/ 下。

    Board/Subtarget/Profile
    BOARD: SOC的名字,target/linux/${BOARD},是BOARD所在的目录。配置文件中的配置项: CONFIG_TARGET_BOARD。比如ramips。
    SUBTARGET: 子类型,配置项 CONFIG_TARGET_SUBTARGET。
    PROFILE: 具体的一个机型,配置项 CONFIG_TARGET_PROFILE。
    

    示例

    make menuconfig
    From the menu, choose the suitable 'Target System', 'Subtarget' and 'Target Profile'.
    The author of this article targets the P2812HNU-F1 router model, manufactured by Zyxel, and as such, 
    chooses 'Lantiq', 'XRX200' and 'P2812HNU-F1' as the corresponding values.
    

    WiFi Router: ZyXEL P-2812HNU-F1:

    • /home/openwrt/source/staging_dir/toolchain-mips_24kc_gcc-11.2.0_musl: 这里的 openwrt 对应官网 doc 的 buildbot。
      Lantiq XRX200 P2812HNU-F1

    WiFi Router: PHICOMM K2T

    WiFi Router: PHICOMM K2T

    相关文章

      网友评论

          本文标题:OpenWRT

          本文链接:https://www.haomeiwen.com/subject/mjuofrtx.html