Skip to content

Latest commit

 

History

History
56 lines (38 loc) · 1.5 KB

README.md

File metadata and controls

56 lines (38 loc) · 1.5 KB

OpenWrt package feed for luainkernel

The feed is comprised by the following packages:

  • lunatik
  • lua5.4 (as a dependency)

Note

This feed has been tested only on OpenWrt 23.05.5.

Feed configuration

In order to use this feed into an OpenWrt build, simply add the following line to your feeds.conf.default:

src-git luainkernel https://github.com/luainkernel/openwrt_feed.git^<commit-hash>

Important

Make sure to set the <commit-hash> that corresponds to the lunatik release you'd like to use, which is defined at the package Makefile.

After that, update and install the feed:

./scripts/feeds update luainkernel
./scripts/feeds install -a -p luainkernel

Note

Refer to OpenWrt Feeds for more information.

Build

Configure buildroot

Setup the target platform configuration as usual but make sure to select kmod-lunatik under the following path:

Kernel modules --->
    Other modules  --->
        <*> kmod-lunatik

Important

Each platform may require some extra configuration. Some sample configuration may be found under ./config.

Build the image

time make -j$(nproc) V=s

Important

For build on WSL, make sure to follow Build system setup WSL.