# ubuntu_Customize **Repository Path**: TIANDAO-SPACE/ubuntu_customize ## Basic Information - **Project Name**: ubuntu_Customize - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: ubuntu18.04 - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-09-21 - **Last Updated**: 2024-09-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Introduction A set of shell scripts that will build GNU/Linux distribution rootfs image for rockchip platform. ## 适用板卡 此分支不是LubanCat维护的主要分支,建议使用ubuntu20.04分支 - 使用RK3566处理器的LubanCat板卡 - 使用RK3568处理器的LubanCat板卡 ## Available Distro * ubuntu 18.04 (Bionic-X11) ``` # 安装编译依赖的软件包 sudo apt-get install binfmt-support qemu-user-static sudo dpkg -i ubuntu-build-service/packages/* sudo apt-get install -f ``` ## Usage for 64bit ubuntu 18.04 如果需要构建lite版本(控制台版,无桌面),执行1.a、2.a、3。 如果需要构建desktop版本(带桌面),执行1.b、2.b、3。 ``` # 1.a 构建 lite 版本基础镜像 ./mk-base-lite-ubuntu.sh # 1.b 构建 desktop 版本基础镜像 ./mk-base-desktop-ubuntu.sh # 添加 rk overlay 层,并打包ubuntu-rootfs镜像 # 2.a VERSION=debug SOC=rk356x ./mk-lite-rootfs.sh # 2.b SOC参数根据实际情况选择,如rk356x VERSION=debug SOC=rk356x ./mk-desktop-rootfs.sh ```