Luoyuan Xiao
Luoyuan Xiao
I figured it out. The dependency package onedrivesdk (2.0) is deprecated, so we shoud install `onedrivesdk=30.0.0 colorama>=0.3.7 click>=6.6 -onedrivesdk +onedrivesdk=10.1 send2trash zgitignore ```
上面写了patch噢。 修改文件requirements.txt中的行”onedrivesdk”改为”onedrivesdk
Found this Project description on https://pypi.org/project/onedrivesdk/ ``` This package has been deprecated and should no longer be used. To continue using the old version of this package, please install onedrivesdk...
> I have compiled gdb this way: > > ``` > git clone https://github.com/richfelker/musl-cross-make.git > > cat >musl-cross-make/config.mak MUSL_VER=git-v1.2.2 > GCC_VER=10.3.0 > # Not needed libs > COMMON_CONFIG += --disable-nls...
> The snippet in my answer is from a longer article. If you are still unable to get gdb working, perhaps the section on "Debugging" could be of interest to...
+1 https 建议不要等到一次407返回,才带上用户名密码去请求
@pythonlearninger https://github.com/pythonlearninger/os-tutorial-summer-of-code-2021-daily @void-echo https://github.com/void-echo/rust-RISC-V-daily @smallzhong https://github.com/smallzhong/DailySchedule @liminggangRs https://github.com/liminggangRs/os-summer-daily @primeNumberAndMe https://github.com/primeNumberAndMe/OsSummerCamp-Log @fadedzipper https://codechina.csdn.net/fadedzipper/rcore-zcore-summer-camp/-/tree/master
Thanks ! It works
对于里面提到的真机板子crash如何重启的这个功能,在fu740上可以通过额外接到GPIO口来控制reset的功能,应该可以作为一个参照 https://github.com/nubbi3/graduation-projects/blob/2022-06-15/Log/FU740%E7%B7%9A%E4%B8%8A%E7%B3%BB%E7%B5%B1%E6%90%AD%E5%BB%BA%E6%96%87%E6%AA%94.md#fu740
### 关于交叉编译busybox `busybox` 默认会编译成 `dynamically linked`的`DYN (Shared object file)`的类型; 而当加入参数`-no-pie`后,会编译成`statically linked`的`EXEC (Executable file)`类型; 两种类型都可由rCore加载进入sh