定制编译openWrt

  • 修改密码
    默认情况下root是没有密码的,需设定密码才能开启ssh。
    修改shadow文件,位于 package/base-files/files/etc
    root:$1$wEehtjxj$YBu4quNfVUjzfv8p/PBo5.:0:0:99999:7:::
    密码经过加密,将密码修改成admin

  • 默认中文
    修改feeds/luci/libs/web/root/etc/config
    option lang auto

    改为
    option lang zh_cn

    并添加

    config internal languages
            option en 'English'
            option zh_cn 'chinese'
    
  • 添加主题

    • 打开trunk/feeds/luci/themes这个目录,你会发现里面有很多主题(除了base为基础包外)每一个文件夹就是一个主题

    • 我们得修改makefile文件,使其制定编译的时候能找到openwrtcn这个主题

      找到路径为 trunk/feeds/luci/contrib/package/luci下面的makefile文件双击打开

      搜索OpenWrt.org这样很快就定位到添加主题的地方了,在下面空白处增加一句

      效果如下

      $(eval $(call theme,base,Common base for all themes))
      $(eval $(call theme,openwrt,OpenWrt.org ))
      $(eval $(call theme,bootstrap,Bootstrap Theme))
      $(eval $(call theme,openwrtcn,openwrtcn Theme (default),,,1))
        
      $(eval $(call theme,freifunk-bno,Freifunk Berlin Nordost Theme,\
          Stefan Pirwitz ))
        
      $(eval $(call theme,freifunk-generic,Freifunk Generic Theme,\
          Manuel Munz ))
      

      保存退出即可。

  • 修改默认主题
    修改 feeds/luci/libs/web/root/etc/config
    option mediaurlbase /luci-static/openwrt.org
    `可根据需要将openwrt.org修改为

    • Bootstap
    • openwrtcn
    • freifunk-bno
    • freifunk-generic
  • 修改主机名,设定时区
    修改 package/base-files/files/etc/config/system

    config system
    option conloglevel 8
    option cronloglevel 8
    option hostname Openwrt   ## 设定主机名
    option timezone Asia/Shanghai   ##时区设置为亚洲/上海
    option timezone CST-8   ##正8区
    config timeserver ntp
    list server 0.openwrt.pool.ntp.org    ##就是ntp服务器了。 自动更新时间
    list server 1.openwrt.pool.ntp.org
    list server 2.openwrt.pool.ntp.org
    list server 3.openwrt.pool.ntp.org
    option enable_server 0
    

你可能感兴趣的:(定制编译openWrt)