Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
webeos-tests
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
webservices
webeos
webeos-tests
Merge requests
!12
Add a squashfs package
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add a squashfs package
test-squashfs
into
master
Overview
5
Commits
7
Pipelines
8
Changes
3
Merged
Chrysoula Dikonimaki
requested to merge
test-squashfs
into
master
1 year ago
Overview
5
Commits
7
Pipelines
8
Changes
3
Expand
Add a squashfs package to test directory in EOS
0
0
Merge request reports
Compare
master
version 9
aec5b7df
1 year ago
version 8
c3d35aec
1 year ago
version 7
7b75a6b9
1 year ago
version 6
c33a9ad4
1 year ago
version 5
7b75a6b9
1 year ago
version 4
9270d4a3
1 year ago
version 3
7b75a6b9
1 year ago
version 2
50f6722b
1 year ago
version 1
7b75a6b9
1 year ago
master (base)
and
latest version
latest version
5efa0153
7 commits,
1 year ago
version 9
aec5b7df
6 commits,
1 year ago
version 8
c3d35aec
5 commits,
1 year ago
version 7
7b75a6b9
4 commits,
1 year ago
version 6
c33a9ad4
5 commits,
1 year ago
version 5
7b75a6b9
4 commits,
1 year ago
version 4
9270d4a3
5 commits,
1 year ago
version 3
7b75a6b9
4 commits,
1 year ago
version 2
50f6722b
5 commits,
1 year ago
version 1
7b75a6b9
4 commits,
1 year ago
3 files
+
51
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
.gitlab/squashfs.sh
0 → 100644
+
14
−
0
Options
# Create squashfs package with the contents of a EOS directory in an EOS path
# Input:
# $1: The EOS directory of the package
# $2: The subdirectory to copy into the package
echo
"Input params: "
echo
"Package path:
$1
"
echo
"Copied Directory:
$2
"
eos root://eoshome.cern.ch squash
rm
$1
eos root://eoshome.cern.ch squash new
$1
cp
-r
$2
/.
$1
/
eos root://eoshome.cern.ch squash pack
$1
Loading