Changes between Version 8 and Version 9 of OpenWrt/Packages


Ignore:
Timestamp:
07/27/2020 04:37:29 PM (4 years ago)
Author:
Tim Harvey
Comment:

minor updates

Legend:

Unmodified
Added
Removed
Modified
  • OpenWrt/Packages

    v8 v9  
    1616
    1717= OpenWrt Package feeds =
    18 The opkg application has a configuration file on the target at /etc/opkg.conf (this is the only configuration file) which is used to point to and describe various package feeds.  Often it is useful to add a package feed that points to your development host's OpenWrt bin directory with an HTTP server behind it.
     18The opkg application has a configuration file on the target at {{{/etc/opkg.conf}}} (this is the only configuration file) which is used to point to and describe various package feeds.  Often it is useful to add a package feed that points to your development host's OpenWrt bin directory with an HTTP server behind it.
    1919
    2020For example, if your OpenWrt development host is at 192.168.1.10 and on the same IP network as your target board you can install something like the 'lightthpd' HTTP server with the following at the end of its config file in /etc/lighttpd/lighttpd.conf:
    2121{{{
    22 
    2322alias.url += (
    2423  "/openwrt" => "/home/openwrt/gateworks/trunk/bin",
     
    2625}}}
    2726
    28 Your target board could have an opkg.conf file that looked like (for the laguna family which uses the cns3xxx architecture):
     27Your target board could have an {{{/etc/opkg.conf}}} file that looked like (for the Newport family which uses the {{{octeontx}}} architecture):
    2928{{{
    30 src/gz local http://192.168.1.10/openwrt/cns3xxx/packages
     29src/gz local http://192.168.1.10/openwrt/octeontx/packages
    3130dest root /
    3231dest ram /tmp
     
    3534}}}
    3635
    37 Another example:
    38 
    39 {{{#!bash
    40 
    41 
    42 src/gz snapshots http://dev.gateworks.com/openwrt/16.02/imx6/packages/packages/
     36Another example for {{{imx6}}} based ventana pointing to the package repository at http://dev.gateworks.com:
     37{{{
     38src/gz snapshots http://dev.gateworks.com/openwrt/20.06/imx6/packages/packages/
    4339dest root /
    4440dest ram /tmp