# emsw **Repository Path**: soc-esl/emsw ## Basic Information - **Project Name**: emsw - **Description**: This project is SW of emodel including kernel, rootfs, drivers and test applications. - **Primary Language**: C - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-08-10 - **Last Updated**: 2022-11-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # emsw #### 介绍 本项目为emodel的软件开发,包括kernel,rootfs,driver和测试应用等。 #### 软件架构 1. kernel基于linux 5.10 LTS 2. rootfs构建于buildroot 2021.05 3. device-tree/driver/user-apps分别独立维护 #### 安装教程 执行成功后, 生成的output/image可用于emodel项目. ``` $ mkdir output $ cd output $ cmake .. $ make toolchain_arm64 (or toolchain_riscv64) # 只执行一次 $ make -j install ``` emodel目前支持arm64和riscv64两种CPU,可以用CPU_ARCH来选择。默认为arm64, ``` $ cmake -DCPU_ARCH=riscv64 .. $ make -j install ``` #### 使用说明 请参看emodel项目的使用. #### 参与贡献 1. ...