From ffe1d5a576372805d818e21650c6bd97b8f4bfa0 Mon Sep 17 00:00:00 2001 From: Xie XiuQi Date: Wed, 20 Aug 2025 22:03:16 +0800 Subject: [PATCH] add a initial README for kernel repo Signed-off-by: Xie XiuQi --- README.md | 36 ++++++++++++++++++++++++++++++++++++ kernel.spec | 5 ++++- readme | 0 3 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 README.md delete mode 100644 readme diff --git a/README.md b/README.md new file mode 100644 index 00000000..5c617d7e --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +# openEuler Kernel Packaging Repository + +This repository contains RPM packaging specifications for building Linux +kernel packages for the openEuler distribution, including spec files, +patches, and build configurations. + +## Source Code Management + +- **Source repository**: [openeuler/kernel](https://gitee.com/openeuler/kernel) +- **Source tags**: Specified in the `SOURCE` file within this repository + +## Branch Policy + +### master Branch +- Tracking upstream kernel periodically (kernel.org) +- Minimal local modifications (primarily packaging changes) +- For build and experimentation only - no production use, no general support + +### LTS Branches +- Used for openEuler LTS releases +- Each branch is based on a specific major upstream kernel version +- Includes: + - Critical security fixes (backported) + - Hardware enablement patches + - Selected stable tree patches + - openEuler-specific enhancements + +### Innovation Branches +- Used for openEuler Innovation releases +- Experimental branches for community innovation +- Purpose: + - Feature development and prototyping + - Cutting-edge technology evaluation +- Characteristics: + - Based on upstream versions or newer openEuler LTS kernels + - Used for testing and validation only - NOT for production diff --git a/kernel.spec b/kernel.spec index eb4c96ab..627b5123 100644 --- a/kernel.spec +++ b/kernel.spec @@ -42,7 +42,7 @@ rm -f test_openEuler_sign.ko test_openEuler_sign.ko.sig %global upstream_sublevel 33 %global devel_release 0 %global maintenance_release .0.0 -%global pkg_release .1 +%global pkg_release .2 %global openeuler_lts 0 %global openeuler_major 0 @@ -1076,6 +1076,9 @@ fi %endif %changelog +* Thu 21 Aug 2025 Xie XiuQi - 6.12.33-0.0.0.2 +- add README + * Wed Jun 18 2025 laokz - 6.12.33-0.0.0.1 - upgrade to upstream v6.12.33 - reset %with_debuginfo diff --git a/readme b/readme deleted file mode 100644 index e69de29b..00000000 -- Gitee