GithubHelp home page GithubHelp logo

97001 / redpill-tool-chain Goto Github PK

View Code? Open in Web Editor NEW

This project forked from tossp/redpill-tool-chain

0.0 0.0 0.0 66 KB

这是一个测试项目,可能会有不可预测的事情发生(比如:毁损数据、烧毁硬件等等),请谨慎使用。

Makefile 8.59% Dockerfile 12.15% Shell 79.25%

redpill-tool-chain's Introduction

RedPill Tool Chain

这是一个测试项目,可能会有不可预测的事情发生(比如:毁损数据、烧毁硬件等等),请谨慎使用

English

感谢 @haydibe 提供 RedPill Tool Chain

关于项目?

  • 基于RedPill-TTG源码制作
  • 为apollolake提供适当的DSM7支持 ( 感谢 @jumkey )
  • 整理社区扩展驱动 ( 感谢 @pocopico )
  • redpill_lkm_make_target字段的可选值有 dev-v6, dev-v7, test-v6, test-v7, prod-v6 或者 prod-v7, 需要注意后缀为-v6的值用于 DSM6 版本构建, 需要注意后缀为-v7的值用于 DSM7 版本构建. 默认使用的是 dev-v6dev-v7

PS: 由于toolkit dev缺少fs/proc所需的源代码,因此它们取自提取的DSM6.2.4内核源代码。 构建需要此单个文件夹的源代码,但不使用内核源代码构建redpill.ko模块。

如果您发现工具链的构建方式有问题或者有改进的想法,请让我知道。

对于所有其他问题:请向社区提出——我知道的并不比其他人多。

如何使用?

  1. 复制sample_user_config.jsonbromolow_user_config.json或者apollolake_user_config.json
  2. 编辑<platform>_user_config.json比如 918+ 就编辑 apollolake_user_config.json 文件
  3. 添加扩展驱动: 比如 redpill_tool_chain.sh add https://raw.githubusercontent.com/pocopico/rp-ext/master/mpt3sas/rpext-index.json
  4. 为你想要的平台和版本构建编译镜像:
    比如 redpill_tool_chain.sh build apollolake-7.0-41890
  5. 为你想要的平台和版本构建引导: 比如 redpill_tool_chain.sh auto apollolake-7.0-41890

redpill_tool_chain.sh auto运行结束之后,将会在宿主机的./image文件夹中生成 RedPill引导镜像。

<platform>_user_config.json文件中的extensions字段保持为空,会自动打包所有已安装的自定义驱动。 自定义驱动请按需添加,尽量不要加载无关驱动,否则会因为扩展驱动太大导致打包失败。

依赖: docker

快捷说明

  • docker/Dockerfile 中补入了阿里云镜像
  • redpill_tool_chain.sh add <URL>添加扩展驱动
  • redpill_tool_chain.sh del <ID>删除扩展驱动
  • redpill_tool_chain.sh run <platform_version>自定义引导构建过程
  • 使用synoboot.sh写入引导

自定义扩展驱动管理

  • 安装 thethorgroup.virtio : ./redpill_tool_chain.sh add https://github.com/jumkey/redpill-load/raw/develop/redpill-virtio/rpext-index.json
  • 安装 thethorgroup.boot-wait : ./redpill_tool_chain.sh add https://github.com/jumkey/redpill-load/raw/develop/redpill-boot-wait/rpext-index.json
  • 安装 pocopico.mpt3sas : ./redpill_tool_chain.sh add https://raw.githubusercontent.com/pocopico/rp-ext/master/mpt3sas/rpext-index.json
  • 移除 pocopico.mpt3sas : ./redpill_tool_chain.sh del pocopico.mpt3sas

获取更多扩展驱动...

构建工具链镜像

  • ./redpill_tool_chain.sh build bromolow-6.2.4-25556
  • ./redpill_tool_chain.sh build bromolow-7.0-41222
  • ./redpill_tool_chain.sh build apollolake-6.2.4-25556
  • ./redpill_tool_chain.sh build apollolake-7.0-41890

制作 redpill 引导镜像

  • ./redpill_tool_chain.sh auto bromolow-6.2.4-25556
  • ./redpill_tool_chain.sh auto bromolow-7.0-41222
  • ./redpill_tool_chain.sh auto apollolake-6.2.4-25556
  • ./redpill_tool_chain.sh auto apollolake-7.0-41890

Clean old redpill bootloader images and build cache

  • ./redpill_tool_chain.sh clean bromolow-6.2.4-25556
  • ./redpill_tool_chain.sh clean bromolow-7.0-41222
  • ./redpill_tool_chain.sh clean apollolake-6.2.4-25556
  • ./redpill_tool_chain.sh clean apollolake-7.0-41890
  • ./redpill_tool_chain.sh clean all

查看帮助文本

./redpill_tool_chain.sh
Usage: ./redpill_tool_chain.sh <action> <platform version>

Actions: build, auto, run, clean

- build:    Build the toolchain image for the specified platform version.

- auto:     Starts the toolchain container using the previosuly build toolchain image for the specified platform.
            Updates redpill sources and builds the bootloader image automaticaly. Will end the container once done.

- run:      Starts the toolchain container using the previously built toolchain image for the specified platform.
            Interactive Bash terminal.

- clean:    Removes old (=dangling) images and the build cache for a platform version.
            Use ‘all’ as platform version to remove images and build caches for all platform versions.

- add:      To install extension you need to know its index file location and nothing more.
            eg: add 'https://example.com/some-extension/rpext-index.json'

- del:      To remove an already installed extension you need to know its ID.
            eg: del 'example_dev.some_extension'

Available platform versions:
---------------------
bromolow-6.2.4-25556
bromolow-7.0-41222
bromolow-7.0.1-42218
apollolake-6.2.4-25556
apollolake-7.0-41890
apollolake-7.0.1-42218

Custom Extensions:
---------------------
pocopico.mpt3sas
thethorgroup.boot-wait
thethorgroup.virtio

redpill-tool-chain's People

Contributors

97001 avatar tossp avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.