!202 merge dev into master

#150 Fix container_escape_detection and xpm apply scripts

Created-by: handyohos
Commit-by: handyohos
Merged-by: openharmony_ci
Description: #150

## Summary
- Fix path quoting issue in container_escape_detection/apply_ced.sh
- Add xpm header symlinks in xpm/apply_xpm.sh  
- Use mkdir -p for safer directory creation
- Add ohoe_headers directory for OpenHarmony specific headers

## Test plan
- [ ] Test container escape detection build
- [ ] Test XPM module build

See merge request: openharmony/kernel_linux_common_modules!202
This commit is contained in:
openharmony_ci
2026-05-19 16:59:35 +08:00
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -15,8 +15,8 @@ function main()
{
pushd .
if [ ! -d " $KERNEL_BUILD_ROOT/security/container_escape_detection" ]; then
mkdir $KERNEL_BUILD_ROOT/security/container_escape_detection
if [ ! -d "$KERNEL_BUILD_ROOT/security/container_escape_detection" ]; then
mkdir -p $KERNEL_BUILD_ROOT/security/container_escape_detection
fi
cd $KERNEL_BUILD_ROOT/security/container_escape_detection
+2 -2
View File
@@ -15,8 +15,8 @@ function main()
{
pushd .
if [ ! -d " $KERNEL_BUILD_ROOT/security/xpm" ]; then
mkdir $KERNEL_BUILD_ROOT/security/xpm
if [ ! -d "$KERNEL_BUILD_ROOT/security/xpm" ]; then
mkdir -p $KERNEL_BUILD_ROOT/security/xpm
fi
cd $KERNEL_BUILD_ROOT/security/xpm