diff options
author | Jo-Philipp Wich <jo@mein.io> | 2024-01-23 09:13:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-23 09:13:51 +0100 |
commit | 87734b841d4de8385fe4a1d0c11440be01ccc7d8 (patch) | |
tree | 46a644b478e5d051409b1c76fd244d653e840292 /applications/luci-app-example/BUILDING.md | |
parent | fe543de80956405085997014fd347f869013953c (diff) | |
parent | 1a027696b762756efba404f11f7917e37fe76784 (diff) |
Merge pull request #6859 from stokito/luci-mod-example
[minor] chore JsDoc and luci-app-example
Diffstat (limited to 'applications/luci-app-example/BUILDING.md')
-rw-r--r-- | applications/luci-app-example/BUILDING.md | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/applications/luci-app-example/BUILDING.md b/applications/luci-app-example/BUILDING.md index 3ed65e3a0d..4a48841f31 100644 --- a/applications/luci-app-example/BUILDING.md +++ b/applications/luci-app-example/BUILDING.md @@ -1,6 +1,10 @@ # Building a LuCI package -Essentially, you follow the [build system](https://openwrt.org/docs/guide-developer/toolchain/use-buildsystem) instructions to fetch the OpenWrt repository, update the `feeds.conf.default` to point `luci` at a local directory, build out the full toolchain, and then follow the instructions for a [single package](https://openwrt.org/docs/guide-developer/toolchain/single.package) to build the `.opkg` file for the example app. +Essentially, you follow the [build system](https://openwrt.org/docs/guide-developer/toolchain/use-buildsystem) instructions: +1. Fetch the OpenWrt repository. +2. Update the `feeds.conf.default` to point `luci` at a local directory +3. Build out the full toolchain +4. Then follow the instructions for a [single package](https://openwrt.org/docs/guide-developer/toolchain/single.package) to build the `.opkg` file for the example app. Wiki documentation overrides this file. @@ -32,7 +36,8 @@ If you're doing a whole new application, instead of editing this one, you can us ## Toolchain build -Even though you're only building a simple JS + Lua package, you'll need the whole toolchain. Though the command says "install", nothing is actually installed outside of the working directory (`~/src/openwrt` in this case). +Even though you're only building a simple JS + Lua package, you'll need the whole toolchain. +Though the command says "install", nothing is actually installed outside of the working directory (`~/src/openwrt` in this case). * Run `make tools/install` * Run `make toolchain/install` |