From 3af9b1814910cdb7b3ecebe588f91ba02f2e1acd Mon Sep 17 00:00:00 2001 From: gitee-bot Date: Tue, 4 Nov 2025 02:48:27 +0000 Subject: [PATCH] Add README.md --- README.en.md | 35 +++++++++++++++++++++++++++++++++++ README.md | 35 +++++++++++++++++++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 README.en.md create mode 100644 README.md diff --git a/README.en.md b/README.en.md new file mode 100644 index 0000000..d826260 --- /dev/null +++ b/README.en.md @@ -0,0 +1,35 @@ +# U-Boot Project Overview + +This project is an example introductory repository for U-Boot (Universal Boot Loader), designed to help developers quickly understand and build U-Boot firmware tailored for specific hardware platforms. U-Boot is an open-source, processor-independent bootloader widely used in embedded systems. + +## Project Features + +- Supports multiple embedded processor architectures. +- Provides flexible build scripts for customized development. +- Ideal for learning and developing bootloader software for embedded systems. + +## File Description + +- `build-u-boot-lsmips.sh`: A script file used to build U-Boot firmware for the Loongson MIPS architecture. + +## Quick Start + +### Build Process + +1. Ensure that the necessary build tools and dependencies are installed on your system. +2. Execute the build script: + ```bash + ./build-u-boot-lsmips.sh + ``` +3. After the build completes, the generated firmware file can be flashed and tested on the target device. + +## Contribution Guidelines + +Contributions of code and documentation are welcome to help improve this project. Please follow these steps: +1. Fork this repository. +2. Create a new branch and commit your changes. +3. Submit a Pull Request and wait for review. + +## License + +This project is licensed under the GNU General Public License v2.0. See the [LICENSE](LICENSE) file for more details. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..d687d47 --- /dev/null +++ b/README.md @@ -0,0 +1,35 @@ +# U-Boot 项目简介 + +本项目是 U-Boot(Universal Boot Loader)的一个示例入门仓库,旨在帮助开发者快速了解和构建适用于特定硬件平台的 U-Boot 固件。U-Boot 是一个开源的处理器独立引导加载程序,广泛用于嵌入式系统中。 + +## 项目特点 + +- 支持多种嵌入式处理器架构。 +- 提供灵活的构建脚本,便于定制化开发。 +- 适用于学习和开发嵌入式系统的引导程序。 + +## 文件说明 + +- `build-u-boot-lsmips.sh`: 用于构建适用于龙芯 MIPS 架构的 U-Boot 固件的脚本文件。 + +## 快速开始 + +### 构建流程 + +1. 确保系统中已安装必要的构建工具和依赖项。 +2. 执行构建脚本: + ```bash + ./build-u-boot-lsmips.sh + ``` +3. 构建完成后,生成的固件文件将可用于目标设备的烧录和测试。 + +## 贡献指南 + +欢迎贡献代码和文档,帮助完善本项目。请遵循以下步骤: +1. Fork 本仓库。 +2. 创建新分支并提交您的更改。 +3. 提交 Pull Request 并等待审核。 + +## 许可证 + +本项目遵循 GNU General Public License v2.0,请查看 [LICENSE](LICENSE) 文件了解更多细节。 \ No newline at end of file -- Gitee