Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
create-iso
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
le6
create-iso
Merge requests
!15
SCRUM#585
: Remove unused code
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
SCRUM#585
: Remove unused code
issue/585
into
develop
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Lucas Sulzbach
requested to merge
issue/585
into
develop
6 years ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
develop
version 1
27d1be49
6 years ago
develop (base)
and
latest version
latest version
27d1be49
1 commit,
6 years ago
version 1
27d1be49
3 commits,
6 years ago
1 file
+
14
−
20
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
scripts-available/make-initrd.sh
+
14
−
20
Options
@@ -51,27 +51,21 @@ version="$(basename "${initrd_path}" | cut --delimiter='-' --fields=2,3)"
cp
"
${
CHROOTDIR
}
/boot/vmlinuz-
${
version
}
-generic"
"
${
TMP
}
/image/casper/vmlinuz"
||
createIsoLogger
--message
"Unable to copy kernel to image"
--tag
"cp"
# The initrd is converted from gzip to lzma
if
!
test
-f
initrd.lz
;
then
if
[
!
-d
"
${
PREFIX
}
/initrd"
]
;
then
mkdir
"
${
PREFIX
}
/initrd"
else
rm
--recursive
--force
"
${
PREFIX
:?
}
"
/initrd/
*
fi
createIsoLogger
--message
"Using '
$(
basename
"
${
initrd_path
}
"
)
'"
--type
info
initrd_type
=
"
$(
file
"
${
initrd_path
}
"
)
"
pushd
"
${
PREFIX
}
/initrd"
||
createIsoLogger
--message
"Unable to change directory"
--tag
"pushd"
if
grep
--quiet
--ignore-case
"gzip"
<<<
"
${
initrd_type
}
"
;
then
gzip
--decompress
--stdout
"
${
initrd_path
}
"
| cpio
--extract
||
createIsoLogger
--message
"Unable to decompress initrd"
--tag
"gzip"
elif
grep
--quiet
--ignore-case
"ascii"
<<<
"
${
initrd_type
}
"
;
then
block_size
=
"
$(
binwalk
--include
=
"compressed data"
"
${
initrd_path
}
"
|
cut
--delimiter
=
" "
--fields
=
1 |
grep
-E
"[0-9]+"
)
"
dd
if
=
"
${
initrd_path
}
"
bs
=
"
${
block_size
}
"
skip
=
1 |
gunzip
| cpio
--extract
--make-directories
else
createIsoLogger
--message
"Invalid initrd format"
fi
find
.
| cpio
--quiet
--create
-H
newc | lzma
-7
>
../initrd.lz
||
createIsoLogger
--message
"Unable to compress initrd"
--tag
"lzma"
popd
||
createIsoLogger
--message
"Unable to change directory"
--tag
"popd"
rm
--recursive
--force
"
${
PREFIX
:?
}
/initrd"
createIsoLogger
--message
"Using '
$(
basename
"
${
initrd_path
}
"
)
'"
--type
info
initrd_type
=
"
$(
file
"
${
initrd_path
}
"
)
"
mkdir
"
${
PREFIX
}
/initrd"
pushd
"
${
PREFIX
}
/initrd"
||
createIsoLogger
--message
"Unable to change directory"
--tag
"pushd"
if
grep
--quiet
--ignore-case
"gzip"
<<<
"
${
initrd_type
}
"
;
then
gzip
--decompress
--stdout
"
${
initrd_path
}
"
| cpio
--extract
||
createIsoLogger
--message
"Unable to decompress initrd"
--tag
"gzip"
elif
grep
--quiet
--ignore-case
"ascii"
<<<
"
${
initrd_type
}
"
;
then
block_size
=
"
$(
binwalk
--include
=
"compressed data"
"
${
initrd_path
}
"
|
cut
--delimiter
=
" "
--fields
=
1 |
grep
-E
"[0-9]+"
)
"
dd
if
=
"
${
initrd_path
}
"
bs
=
"
${
block_size
}
"
skip
=
1 |
gunzip
| cpio
--extract
--make-directories
else
createIsoLogger
--message
"Invalid initrd format"
fi
find
.
| cpio
--quiet
--create
-H
newc | lzma
-7
>
../initrd.lz
||
createIsoLogger
--message
"Unable to compress initrd"
--tag
"lzma"
popd
||
createIsoLogger
--message
"Unable to change directory"
--tag
"popd"
rm
--recursive
--force
"
${
PREFIX
:?
}
/initrd"
||
createIsoLogger
--message
"Unable to remove dir
\"
${
PREFIX
}
/initrd
\"
"
--tag
"rm"
mv
initrd.lz
"
${
TMP
}
/image/casper/initrd.lz"
||
createIsoLogger
--message
"Unable to move initrd to image"
--tag
"mv"
Loading