Skip to content

Commit 557e30a

Browse files
authored
Disable IPv6 (#47)
Snorca does not support IPv6 yet, which breaks the camera in LAN mode.
1 parent 162df8a commit 557e30a

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ OUTPUT_FILE := firmware/firmware.bin
88

99
ifeq (basic,$(PROFILE))
1010
OVERLAYS += store-version kernel-modules
11-
OVERLAYS += enable-ssh enable-usb-eth-hotplug disable-wlan-power-save
11+
OVERLAYS += enable-ssh enable-usb-eth-hotplug disable-wlan-power-save disable-ipv6
1212
OVERLAYS += enable-native-camera-fluidd
1313
else ifeq (extended,$(PROFILE))
1414
OVERLAYS += store-version kernel-modules
15-
OVERLAYS += enable-ssh enable-usb-eth-hotplug disable-wlan-power-save
15+
OVERLAYS += enable-ssh enable-usb-eth-hotplug disable-wlan-power-save disable-ipv6
1616
OVERLAYS += stub-fluidd-timelapse camera-v4l2-mpp fluidd-upgrade
1717
OVERLAYS += enable-klipper-includes enable-moonraker-apprise
1818
endif

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ and the [release notes](https://github.com/paxx12/SnapmakerU1/releases/latest).
2121
- [USB Ethernet Adapters](docs/usb_ethernet.md) - Hot-plug support for USB ethernet devices
2222
- [Data Persistence](docs/data_persistence.md) - Persistent storage across firmware updates
2323
- Enable fluidd automatically with camera feed.
24+
- Disable IPv6 to fix camera issues with Snorca app in LAN mode.
2425

2526
### Extended Firmware
2627

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Disable IPv6 because SnOrca does not support it
2+
net.ipv6.conf.all.disable_ipv6 = 1

0 commit comments

Comments
 (0)