导航

    全志在线开发者论坛

    • 注册
    • 登录
    • 搜索
    • 版块
    • 话题
    • 在线文档
    • 社区主页
    1. 主页
    2. mxlol233
    M
    • 资料
    • 关注 0
    • 粉丝 0
    • 我的积分 498
    • 主题 4
    • 帖子 11
    • 最佳 2
    • 群组 0

    mxlol233LV 3

    @mxlol233

    498
    积分
    4
    声望
    2
    资料浏览
    11
    帖子
    0
    粉丝
    0
    关注
    注册时间 最后登录

    mxlol233 取消关注 关注

    mxlol233 发布的最佳帖子

    • 让你的orangepi zero3 变成复古游戏机

      花了几个晚上把recalbox移植到了orangepi zero3。过程还是比较顺利,用主线的u-boot和linux-kernel,其他配置参考recalbox下其他boards的。

      官方仓库:https://gitlab.com/recalbox/recalbox/-/tree/master

      uboot: https://github.com/orangepi-xunlong/u-boot-orangepi/tree/v2021.07-sunxi

      linux-kernel: https://github.com/orangepi-xunlong/linux-orangepi/tree/orange-pi-6.1-sun50iw9

      我的修改参考:https://github.com/TuringKi/recalbox-opizero3

      视频: https://www.bilibili.com/video/BV1x94y1E7pC

      简单介绍:https://www.bilibili.com/video/BV15j411j7vF

      Screenshot from 2023-11-30 22-20-42.png

      发布在 H/F/TV Series
      M
      mxlol233
    • 回复: 让你的orangepi zero3 变成复古游戏机

      @clock333mhz 厉害,搞完能分享一下不?

      发布在 H/F/TV Series
      M
      mxlol233

    mxlol233 发布的最新帖子

    • 回复: 让你的orangepi zero3 变成复古游戏机

      @clock333mhz 厉害,搞完能分享一下不?

      发布在 H/F/TV Series
      M
      mxlol233
    • 让你的orangepi zero3 变成复古游戏机

      花了几个晚上把recalbox移植到了orangepi zero3。过程还是比较顺利,用主线的u-boot和linux-kernel,其他配置参考recalbox下其他boards的。

      官方仓库:https://gitlab.com/recalbox/recalbox/-/tree/master

      uboot: https://github.com/orangepi-xunlong/u-boot-orangepi/tree/v2021.07-sunxi

      linux-kernel: https://github.com/orangepi-xunlong/linux-orangepi/tree/orange-pi-6.1-sun50iw9

      我的修改参考:https://github.com/TuringKi/recalbox-opizero3

      视频: https://www.bilibili.com/video/BV1x94y1E7pC

      简单介绍:https://www.bilibili.com/video/BV15j411j7vF

      Screenshot from 2023-11-30 22-20-42.png

      发布在 H/F/TV Series
      M
      mxlol233
    • 回复: dragonsecboot有arm版本吗?

      @whycan
      x64-> x86-64 or a64
      arm-> aarch64
      ok ?
      无所谓,用qemu运行也能用。

      发布在 MR Series
      M
      mxlol233
    • dragonsecboot有arm版本吗?

      如题,这个工具只有x64版本?
      dragonsecboot: ELF 64-bit LSB executable, x86

      或者说-pack boot_package.cfg过程可以跳过吗?

      发布在 MR Series
      M
      mxlol233
    • 编译平头哥最新的riscv工具链

      最近换了个aarch64的板子做服务器。玩d1-h的时候发现平头哥没有提供aarch64下的工具链。

      #启动一个ubuntu 18.04 环境:
      docker run -it -v `pwd`:/work/ ubuntu:18.04 /bin/bash
      
      cd /work
      
      #clone平头哥编译器源码:
      git clone --recursive https://github.com/T-head-Semi/xuantie-gnu-toolchain
      
      cd xuantie-gnu-toolchain
      #第一趟编译,使用默认的linux-header:
      ./configure --prefix=`pwd`/.build/install/  \
      --with-arch=rv64imafdcv_zfh_xtheadc  --with-abi=lp64d
      
      cd ..
      
      #clone d1-linux源码:
      git clone https://github.com/TuringKi/d1-linux
      
      cd d1-linux
      
      #用第一趟编译好的riscv64工具链在指定的linux内核上编译出linux-header:
      PATH=/work/xuantie-gnu-toolchain/.build/install/bin/:$PATH \
      make ARCH=riscv CROSS_COMPILE=riscv64-unknown-linux-gnu-  \
      headers_install INSTALL_HDR_PATH=`pwd`/.build/install/usr -j8
      
      cd ../xuantie-gnu-toolchain
      
      #第二趟编译,使用指定内核的linux-header版本:
      ./configure --prefix=`pwd`/.build/install/  \
      --with-linux-headers-src=`pwd`/../d1-linux/.build/install/usr/include/ \
      --with-arch=rv64imafdcv_zfh_xtheadc  --with-abi=lp64d
      
      make -j8
      

      注意,vector扩展在march的描述字符应该为v0p7,即vector扩展的0.7版。
      比如,要使用向量扩展进行编译:

      riscv64-unknown-linux-gnu-ar -march=rv64gcv0p7 vector.S
      

      不要使用:

      riscv64-unknown-linux-gnu-ar -march=rv64gcv vector.S
      

      编译器不认。

      发布在 MR Series
      M
      mxlol233
    • 回复: 安装全志USB驱动那些事

      @whycan 嗯,也是个办法。
      我最后是在一个低版本的win10虚拟机里搞的。

      发布在 编译和烧写问题专区
      M
      mxlol233
    • 回复: 安装全志USB驱动那些事

      @yuzukitsuru
      8f43499b-42f9-4153-90db-7eac5a372874-image.png
      大佬,win11下安装不了。

      发布在 编译和烧写问题专区
      M
      mxlol233
    • 【D1-H】关于CLINT的地址映射问题

      在D1-H_User Manual_V1.1手册上的memory mapping章节中,没有描述CLINT寄存器的地址映射,请问这个应该在哪里找呢?

      发布在 MR Series
      M
      mxlol233
    • 回复: 【极简操作】使用builroot 2021一键编译生成D1 nezha 系统镜像!

      在下小白,请教一下各位,这个buildroot的流程,为什么没有烧写固件的步骤呢?
      因为按照道理来讲,是应该修过固件中bootloader的加载顺序的。拷贝到sd后,原来的固件怎么是知道去先去sd卡引导操作系统呢?

      发布在 MR Series
      M
      mxlol233
    • 回复: 【极简操作】使用builroot 2021一键编译生成D1 nezha 系统镜像!

      @yuzukitsuru 在 【极简操作】使用builroot 2021一键编译生成D1 nezha 系统镜像! 中说:

      @mxlol233 更新buildroot 2022.05就ok了

      请教一下怎么升级到2022.05版本?
      我直接从buildroot官网下载原始版本后,按照韦神gitee仓库的commits一步步把d1相关的文件拷贝过来。但是执行make nezha_d1_defconfig的时候,报错:
      “You have legacy configuration in your .config! ”
      是新版本移除了一些旧的Makefile定义吗?

      发布在 MR Series
      M
      mxlol233