mirror of
https://github.com/openharmony/kernel_linux_common_modules.git
synced 2026-08-26 17:16:37 -04:00
!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:
@@ -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
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user