Skip to content

shawnking07/AirSane-openwrt

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GITHUB-BADGE

AirSane for OpenWRT

This repository contains OpenWRT package for the AirSane project at https://github.com/SimulPiscator/AirSane

Usage

Build

Build the package for yourself using the OpenWRT SDK. The easiest way is to use the Docker image from
https://hub.docker.com/r/openwrtorg/sdk

docker run --rm -v "$(pwd)"/bin/:/home/build/openwrt/bin -it openwrtorg/sdk:<target>-<subtarget>[-<branch>]

Example for latest (at time of writing) for Xiaomi router 3g (non v2):

docker run --rm -v "$(pwd)"/bin/:/home/build/openwrt/bin -it openwrtorg/sdk:ramips-mt7621-21.02.1

or for the Raspberry Pi Zero for OpenWrt 22.03.2:

docker run --rm -v "$(pwd)"/bin/:/home/build/openwrt/bin -it openwrtorg/sdk:bcm27xx-bcm2708-22.03.2

The continuous integration in this repository also builds some packages as artifacts. See "Actions" tab.

Prepare

Add repository

echo "src-git airsaned https://github.com/cmangla/AirSane-openwrt.git" >> feeds.conf.default

Update feeds

./scripts/feeds update base packages airsaned && make defconfig && ./scripts/feeds install airsaned

Compile

make package/airsaned/compile V=s -j <CORES_NUM>

Install

  1. Copy package to temp folder on your router
scp bin/packages/<ARCH>/airsaned/airsaned-<VERSION>.ipk root@<YOUR_ROUTER_IP>:/tmp
  1. Login via ssh
ssh root@<YOUR_ROUTER_IP>
  1. Install package via opkg
opkg install /tmp/airsaned-<VERSION>.ipk

Configure

You can edit configuration here
/etc/config/airsaned

Use

Run
/etc/init.d/airsaned start

Run at startup
/etc/init.d/airsaned enable

Acknowledgements

This is a fork of the original implementation by polikasov, with changes by nevian427 and ypopovych merged in.

About

OpenWRT AirSane package

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 63.2%
  • Makefile 36.8%