Catalin Patulea
Catalin Patulea
Tried to manually build arm_now directory using mips32--musl--stable-2021.11-1-rootfs.ext2 but having some issue.. ``` $ mkdir arm_now $ cd arm_now arm_now$ echo -n mips32 >arch arm_now$ curl -o rootfs.ext2 https://toolchains.bootlin.com/downloads/releases/toolchains/mips32/test-system/mips32--musl--stable-2021.11-1-rootfs.ext2 arm_now$...
However with directly launching qemu on the rootfs.ext2, it seems to work: ``` arm_now$ curl -o rootfs.ext2 https://toolchains.bootlin.com/downloads/releases/toolchains/mips32/test-system/mips32--musl--stable-2021.11-1-rootfs.ext2 $ qemu-system-mips -M malta -kernel kernel -drive file=rootfs.ext2,format=raw -append "rootwait root=/dev/hda "...
Ugh, and another complication: hardfloat vs softfloat. The bootlin image looks like hardfloat: ``` # cd /lib lrwxrwxrwx 1 root root 14 Dec 27 10:04 ld-musl-mips.so.1 -> ../lib/libc.so ``` while...
However, as an alternative, OpenWrt initramfs works quite well under QEMU, and has opkg: https://openwrt.org/docs/guide-user/virtualization/qemu#openwrt_in_qemu_mips ``` $ wget https://downloads.openwrt.org/releases/18.06.1/targets/malta/be/openwrt-18.06.1-malta-be-vmlinux-initramfs.elf $ qemu-system-mips -kernel openwrt-18.06.1-malta-be-vmlinux-initramfs.elf -nographic -m 256 [ 0.000000] Linux version...
We hit this as well, we built an integration with Mattermost OAuth service provider (https://github.com/FOULAB/matterid) and this stopped working due to the double-escaping (our OAuth app needs the state parameter...
Mac OS Ventura 13.6.3 arm64, now running into: ``` unsquashfs.c:36:10: fatal error: 'sys/sysmacros.h' file not found #include ^~~~~~~~~~~~~~~~~ ``` and if just deleting that line, ``` unsquashfs_info.c:109:10: error: call to...
We're still running into this, even after disabling autoreconnect [edit] and adding a manual reconnect loop using `irccon.Reconnect()` (https://github.com/FOULAB/foubot2/commit/c5e90db13e29fc86d5ccb435b431e9be5ddb5f79): ``` IRC: 01:36 -!- foubot [~foubot2@foulab/bot/foubot] has quit [Ping timeout: 258...
This happened again for us, so there's definitely a bug. I'll take another stab at a workaround next week.
Reverse engineered. It's just their 'ajax' API between the web page and backend PHP scripts. It has a lot of rough edges, like no exact file size, mtime to minute...
I'm working on the unit tests: https://github.com/rclone/rclone/blob/master/CONTRIBUTING.md#unit-tests This backend is read-only, does not support operations like Mkdir. This makes the test fail: ``` === NAME TestIntegration fstests.go:522: Error Trace: /Users/catalinp/src/rclone/fstest/fstests/fstests.go:522...