https://github.com/burghardt/openwrt-feed
Krzysztof Burghardt's OpenWRT packages feed
https://github.com/burghardt/openwrt-feed
buildroot feed openwrt packages
Last synced: 18 days ago
JSON representation
Krzysztof Burghardt's OpenWRT packages feed
- Host: GitHub
- URL: https://github.com/burghardt/openwrt-feed
- Owner: burghardt
- License: bsd-2-clause
- Created: 2020-06-22T21:42:47.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-10T22:26:58.000Z (about 1 year ago)
- Last Synced: 2024-03-10T22:31:54.168Z (about 1 year ago)
- Topics: buildroot, feed, openwrt, packages
- Language: Makefile
- Size: 13.7 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Krzysztof Burghardt's OpenWRT packages feed
## Description
This is an OpenWrt package feed containing packages maintained by
Krzysztof Burghardt.## Usage
To use these packages, add the following line to the feeds.conf
in the OpenWrt buildroot:```
src-git burghardt https://github.com/burghardt/openwrt-feed.git
```To install all package definitions, run:
```
./scripts/feeds update burghardt
./scripts/feeds install -a -p burghardt
```New packages should now appear in menuconfig.
### Step-by-step guide for rahhid
#### Download and extract SDK
```
wget https://downloads.openwrt.org/releases/19.07.3/targets/mvebu/cortexa9/openwrt-sdk-19.07.3-mvebu-cortexa9_gcc-7.5.0_musl_eabi.Linux-x86_64.tar.xz
tar xf openwrt-sdk-19.07.3-mvebu-cortexa9_gcc-7.5.0_musl_eabi.Linux-x86_64.tar.xz
cd openwrt-sdk-19.07.3-mvebu-cortexa9_gcc-7.5.0_musl_eabi.Linux-x86_64/
```#### Setup feeds and build package
```
cp feeds.conf.default feeds.conf
echo 'src-git burghardt https://github.com/burghardt/openwrt-feed.git' >> feeds.conf
./scripts/feeds update -a
./scripts/feeds install -a -p burghardt
make package/rahhid/compile
```Binary package is located in directory `bin/packages/arm_cortex-a9_vfpv3-d16/burghardt` and named `rahhid_11812e3f1e0c81b9ab0f9cf8b03177d3b172c4a6-1_arm_cortex-a9_vfpv3-d16.ipk`.