Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(config): add Raspberry Pi 4 architecture config and additional packages #207

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -9,6 +9,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

**Device with a unique ethernet interface are no more supported**

## [v0.9.6] - 2024-10-03
### Added
- luci: add help section, with links to ovhcloud & openwrt documentation
- luci: MPTCP status is visible in overview

### Fixed
- luci: Remove service preload limit

## [v0.9.5] - 2024-08-08
### Added
- luci: serviceID can now be copy/paste on register page

### Fixed
- luci: Replace deprecated ovh theme by bootstrap on upgrade
- system: File rc.local.user is no more override on upgrade

## [v0.9.4] - 2024-06-05
### Fixed
- luci: Registration don't block if a service doesn't have an associated device
16 changes: 16 additions & 0 deletions CHANGELOG_fr.md
Original file line number Diff line number Diff line change
@@ -9,6 +9,22 @@ et le projet adhère au [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

**Les appareils avec un port ethernet unique ne sont plus supportés**

## [v0.9.6] - 2024-10-03
### Ajouts
- luci: Ajout d'une section aide avec les liens vers la documentation ovhcloud et openwrt
- luci: Le status de MPTCP est visible dans l'overview

### Corrections
- luci: Suppression de la limite de préchargement sur la page register

## [v0.9.5] - 2024-08-08
### Ajouts
- luci: le serviceID peut maintenant être copié/collé sur la page d'enregistrement

### Corrections
- luci: Le theme déprécié ovh est remplacé automatiquement par le theme boostrap lors de la mise à jour
- system: Le fichier rc.local.user n'est plus écrasé en cas de mise à jour

## [v0.9.4] - 2024-06-05
### Corrections
- luci: La section enregistrement ne se bloque plus si un service n'a pas d'appareil associé
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OverTheBox

Version: v0.9.4
Version: v0.9.6

OverTheBox is an open source solution developed by OVHcloud to aggregate and encrypt multiple internet connections and terminates it over OVHcloud infrastructure which make clients benefit security, reliability, net neutrality, as well as dedicated public IPv4.

5 changes: 5 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -108,6 +108,11 @@ cp .config.keep .config
echo "$OTB_PKGS_I18N" >> .config

make defconfig

if [ "$(df . | awk 'NR==2 {print $1}')" = "grpcfuse" ]; then
sed -i 's/CP:=cp -fpR/CP:=cp -fR/g' ./rules.mk
fi

if ! make "$@"; then
make "$@" -j1 V=s 2>&1 | tee error.log
exit 1
6 changes: 6 additions & 0 deletions config/arch_rpi4
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
CONFIG_TARGET_bcm27xx=y
CONFIG_TARGET_bcm27xx_bcm2711=y
CONFIG_TARGET_bcm27xx_bcm2711_DEVICE_rpi-4=y
CONFIG_EXPERIMENTAL=y
CONFIG_BCMGENET=y
CONFIG_MDIO_BCM_UNIMAC=y
3 changes: 3 additions & 0 deletions config/package_optionnal
Original file line number Diff line number Diff line change
@@ -37,6 +37,9 @@ collectd-mod-uptime
collectd-mod-write-graphite
collectd-mod-write-http
kmod-pcengines-apuv2
liblzma
libnetsnmp
libpam
prometheus-node-exporter-lua
prometheus-node-exporter-lua-nat_traffic
prometheus-node-exporter-lua-netstat
12 changes: 0 additions & 12 deletions root/etc/rc.local

This file was deleted.