# hy3576-kernel **Repository Path**: clint315/hy3576-kernel ## Basic Information - **Project Name**: hy3576-kernel - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-04-12 - **Last Updated**: 2026-04-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Linux kernel ============ There are several guides for kernel developers and users. These guides can be rendered in a number of formats, like HTML and PDF. Please read Documentation/admin-guide/README.rst first. In order to build the documentation, use ``make htmldocs`` or ``make pdfdocs``. The formatted documentation can also be read online at: https://www.kernel.org/doc/html/latest/ There are various text files in the Documentation/ subdirectory, several of them using the Restructured Text markup notation. Please read the Documentation/process/changes.rst file, as it contains the requirements for building and running the kernel, and information about the problems which may result by upgrading your kernel. ## 编译步骤 ### 修改编译链路径 ```bash vim ./compile-kernel.sh // 修改`CROSS_COMPILE="[工具链路径]"` ``` ### 修改编译配置文件 ```bash vim ./compile-kernel.sh // 修改`DECONFIG="[config配置文件]"` ``` ### 编译 ```txt # ================================================ # RK3576 内核编译脚本 # 使用方法: # ./compile-kernel.sh # 增量式完整编译 # ./compile-kernel.sh full # 强制重新配置并编译 # ./compile-kernel.sh clean # 清理 # ./compile-kernel.sh config # 只配置 # ./compile-kernel.sh menu # 进入菜单配置 # ================================================ ```