Skip to content
This repository has been archived by the owner on Feb 19, 2025. It is now read-only.

Latest commit

 

History

History
61 lines (41 loc) · 1.64 KB

README.md

File metadata and controls

61 lines (41 loc) · 1.64 KB

OpenWrt package feed for luainkernel

Warning

This repository has been discontinued. Please refer to https://github.com/luainkernel/openwrt_feed for the actual feed.

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/marcelstanley/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.