# userapps **Repository Path**: jjqqcc/userapps ## Basic Information - **Project Name**: userapps - **Description**: No description available - **Primary Language**: C - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-02-24 - **Last Updated**: 2024-02-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 介绍与快速入门 > 本文档环境为 `ubuntu 20.04` ## 介绍 ### RT-Thread-Smart RT-Thread Smart(以下简称 Smart) 是基于 RT-Thread 操作系统上的混合操作系统,简称为 rt-smart,它把应用从内核中独立出来,形成独立的用户态应用程序,并具备独立的地址空间(32 位系统上是 4G 的独立地址空间)。详细信息请见 [RT-Thread 文档中心](https://www.rt-thread.org/document/site/#/rt-thread-version/rt-thread-smart/introduction/rt-smart-intro/rt-smart-intro) ### Xmake xmake 是一个基于 Lua 的轻量级跨平台构建工具,使用 xmake.lua 维护项目构建,相比 makefile/CMakeLists.txt,配置语法更加简洁直观,对新手非常友好,短时间内就能快速入门,能够让用户把更多的精力集中在实际的项目开发上。详细信息请见 [Xmake 文档中心](https://xmake.io/#/zh-cn/about/introduction) ## 快速入门 > 此次以 qemu-virt64-aarch64 为例讲解 1. **克隆仓库** 将 Smart 的 userapps 仓库克隆下来: ```shell git clone https://github.com/RT-Thread/userapps.git ``` 2. **安装 xmake** 请根据[xmake 官方文档](https://xmake.io/#/zh-cn/guide/installation?id=ubuntu)进行安装 以下为 ubuntu 安装方式 ```shell sudo add-apt-repository ppa:xmake-io/xmake sudo apt update sudo apt install xmake ``` 3. **编译** 由于 smart 采用 xmake 编译用户态环境,因此 smart 的编译方式非常简单。 首先运行 env.sh 添加一下环境变量 ```shell source env.sh ``` 进入 apps 目录进行编译 ```shell cd apps xmake f -a aarch64 # 配置为 aarch64平台 xmake -j8 ``` ![image-20230531173059551](./assets/image-20230531173059551.png) 4. **镜像制作** 运行 `xmake smart-rootfs` 制作 rootfs ,运行 `xmake smart-image` 制作镜像 ```shell xmake smart-rootfs xmake smart-image -f ext4 #制作 ext4 镜像 ``` ![image-20230531173829621](./assets/image-20230531173829621.png) ## prebuilt 的版本 会在每天凌晨生成 aarch64/riscv64 for qemu 的 prebuilt 版本,包括内核和 rootfs 文件系统: - [aarch64](https://download-redirect.rt-thread.org/download/rt-smart/prebuilt/qemu-virt64-aarch64_latest.tar.gz) - [riscv64](https://download-redirect.rt-thread.org/download/rt-smart/prebuilt/qemu-virt64-riscv_latest.tar.gz) 可以使用 qemu 来运行起来。