diff --git a/CHANGELOG.md b/CHANGELOG.md index d1ba44a38c..cb8ee0079f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/CHANGELOG_fr.md b/CHANGELOG_fr.md index 3380e2182b..bf5b09437d 100644 --- a/CHANGELOG_fr.md +++ b/CHANGELOG_fr.md @@ -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é diff --git a/README.md b/README.md index 14b6f40e82..96cbb951fa 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/build.sh b/build.sh index c009f7a5a8..2e4ebf4a4d 100755 --- a/build.sh +++ b/build.sh @@ -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 diff --git a/config/arch_rpi4 b/config/arch_rpi4 new file mode 100644 index 0000000000..421ea73a26 --- /dev/null +++ b/config/arch_rpi4 @@ -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 diff --git a/config/package_optionnal b/config/package_optionnal index 78898a9c9f..2103165e27 100644 --- a/config/package_optionnal +++ b/config/package_optionnal @@ -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 diff --git a/feeds/overthebox b/feeds/overthebox index df434fd7d9..05716f66a6 160000 --- a/feeds/overthebox +++ b/feeds/overthebox @@ -1 +1 @@ -Subproject commit df434fd7d9d94c8a1284a367299d1b32cb1509ac +Subproject commit 05716f66a60bc3ca28d257e7e1efcc6d8621585f diff --git a/root/etc/rc.local b/root/etc/rc.local deleted file mode 100644 index 22929d5224..0000000000 --- a/root/etc/rc.local +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh -# vim: set noexpandtab tabstop=4 shiftwidth=4 softtabstop=4 : - -# This script will be executed once -# the system init finished. - -# force usb switch in order to switch 4G key from CD-ROM to usb-cdc -/sbin/usbmode -l -/bin/sleep 2 -/sbin/usbmode -s - -exit 0