导航

    全志在线开发者论坛

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

    taotieren 发布的最佳帖子

    • Arch Linux 下使用 xfel 调试

      打包到 AUR 仓库的 xfel-git
      PKGBUILD

      # Maintainer: taotieren <admin@taotieren.com>
      
      pkgname=xfel-git
      pkgver=b2b4856
      pkgrel=1
      pkgdesc="Tiny FEL tools for allwinner SOC, support RISC-V D1 chip."
      arch=('any')
      url="https://github.com/xboot/xfel"
      license=('MIT')
      provides=(${pkgname})
      conflicts=(${pkgname} ${pkgname%-git})
      #replaces=(${pkgname})
      depends=('libusb')
      makedepends=('git')
      backup=()
      options=('!strip')
      #install=${pkgname}.install
      source=("${pkgname%-git}::git+${url}.git")
      sha256sums=('SKIP')
      
      pkgver() {
          cd "${srcdir}/${pkgname%-git}"
          git describe --always | sed 's|-|.|g'
      }
      
      build() {
          cd "${srcdir}/${pkgname%-git}"
          make
      }
      
      package() {
          install -Dm755 "${srcdir}/${pkgname%-git}/${pkgname%-git}" "${pkgdir}/usr/bin/${pkgname%-git}"
          install -Dm644 "${srcdir}/${pkgname%-git}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname%-git}/LICENSE"
      }
      
      

      打包到 AUR 仓库的 xfel
      PKGBUILD

      # Maintainer: taotieren <admin@taotieren.com>
      
      pkgname=xfel
      pkgver=1.0.1
      pkgrel=1
      pkgdesc="Tiny FEL tools for allwinner SOC, support RISC-V D1 chip."
      arch=('any')
      url="https://github.com/xboot/xfel"
      license=('MIT')
      provides=(${pkgname})
      conflicts=(${pkgname} ${pkgname}-git)
      #replaces=(${pkgname})
      depends=('libusb')
      makedepends=()
      backup=()
      options=('!strip')
      #install=${pkgname}.install
      source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz")
      sha256sums=('85b8f1fe6a58149c9eb5c270e279f0dbedb882a349799a70105e4e415182aa9a')
      
      build() {
          cd "${srcdir}/${pkgname}-${pkgver}"
          make
      }
      
      package() {
          install -Dm755 "${srcdir}/${pkgname}-${pkgver}/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
          install -Dm644 "${srcdir}/${pkgname}-${pkgver}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
      }
      

      xfel 功能

      xfel 
      xfel(v1.0.1) - https://github.com/xboot/xfel
      usage:
          xfel help                                   - Print this usage
          xfel version                                - Show brom version
          xfel hexdump <address> <length>             - Dumps memory region in hex
          xfel dump <address> <length>                - Binary memory dump to stdout
          xfel exec <address>                         - Call function address
          xfel read32 <address>                       - Read 32-bits value from device memory
          xfel write32 <address> <value>              - Write 32-bits value to device memory
          xfel read <address> <length> <file>         - Read memory to file
          xfel write <address> <file>                 - Write file to memory
          xfel reset                                  - Reset device using watchdog
          xfel sid                                    - Show 128-bits sid information
          xfel jtag                                   - Enable jtag debug
          xfel ddr [type]                             - Initial ddr controller with optional type
          xfel spinor                                 - Detect spi nor flash
          xfel spinor read <address> <length> <file>  - Read spi nor flash to file
          xfel spinor write <address> <file>          - Write file to spi nor flash
          xfel spinand                                - Detect spi nand flash
          xfel spinand read <address> <length> <file> - Read spi nand flash to file
          xfel spinand write <address> <file>         - Write file to spi nand flash
      
      

      Arch Linux 可以通过 yay -S xfel 安装 xfel 软件

      发布在 Linux
      taotieren
      taotieren
    • 1 / 1