The overlay has not affected the writability of /sys.sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
The error "Invalid argument" basically means "User is doing something wrong". You should not use nano to "edit" a "file" in /proc or /sys. These are not regular files stored on disk, but kernel interfaces. nano wants to call fsync(), which is not supported. You should access them in basic ways, such as:
Code:
pi@pi64:~ $ cat /sys/kernel/debug/bluetooth/hci0/adv_max_interval 2048pi@pi64:~ $ echo 4096 |sudo tee /sys/kernel/debug/bluetooth/hci0/adv_max_interval 4096
Statistics: Posted by jojopi — Thu Sep 26, 2024 12:37 pm