Skip to content

Yocto based gateway images including LoRa Server components

Notifications You must be signed in to change notification settings

tonysmith55/lora-gateway-os

 
 

Repository files navigation

LoRa Gateway OS

The LoRa Gateway OS is an embedded OS for LoRa gateways. It is part of the open-source LoRa Server project.

The goal of the LoRa Gateway OS is to provide firmware images that are easy to setup, maintain and customize.

Images

lora-gateway-os-base

An image providing the Semtech packet-forwarder and LoRa Gateway Bridge.

Provides the following features:

lora-gateway-os-full

An image providing a complete LoRaWAN network-server running on the gateway.

Provides the following features:

Targets

Using

Login

The default username is admin with password admin.

Gateway configuration

Execute the following command as admin user:

sudo gateway-config

Building images

A Docker based build environment is provided for compiling the images.

Initial setup

Run the following command to fetch the git submodules and setup directory permissions (to write back from the Docker container):

# update the submodules
make submodules

# setup permissions
make permissions

Run the following command to set the /build folder permissions:

# on the host
docker-compose run --rm busybox

# within the container
chown 999:999 /build

Building

Run the following command to setup the build environment:

# on the host
docker-compose run --rm yocto bash

# within the container

# initialize the yocto / openembedded build environment
source oe-init-build-env /build/ /lora-gateway-os/bitbake/


# build the lora-gateway-os-base image
bitbake lora-gateway-os-base

Configuration

By default, Raspberry Pi3 is configured as the target platform. You need to update the following configuration files to configure a different target:

  • /build/config/local.conf
  • /build/config/bblayers.conf

Good to know

SD Card wearout

Although LoRa Server tries to minimize the number of database writes, there will be regular writes to the SD Card (PostgreSQL and Redis snapshots). According to Is it true that a SD/MMC Card does wear levelling with its own controller? it might make a difference which SD Card brand you use.

Updates

(Currently) the LoRa Server project does not provide package updates. However, each image includes the opkg package manager,

Versioning

The major version (major.minor.patch) of this project represents the major version of the provided LoRa Server components.

About

Yocto based gateway images including LoRa Server components

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 48.9%
  • Shell 24.6%
  • BitBake 12.7%
  • PHP 8.7%
  • C++ 4.2%
  • Makefile 0.5%
  • Dockerfile 0.4%