* [gentoo-commits] proj/catalyst:master commit in: targets/support/, examples/, doc/, targets/embedded/
@ 2020-05-05 0:38 Matt Turner
0 siblings, 0 replies; only message in thread
From: Matt Turner @ 2020-05-05 0:38 UTC (permalink / raw
To: gentoo-commits
commit: 23e9ea1052e819d0737e020ba1bd48023c4697b0
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Fri May 1 06:14:44 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Mon May 4 02:41:07 2020 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=23e9ea10
targets: Use gensquashfs instead of mksquashfs
We're using tar2sqfs from squashfs-tools-ng, so let's replace the usage
of mksquashfs (from squashfs-tools) with gensquashfs.
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
doc/catalyst-spec.5.txt | 4 ++--
examples/livecd-stage2_template.spec | 2 --
targets/embedded/fs-runscript.sh | 6 +++---
targets/support/filesystem-functions.sh | 4 ++--
4 files changed, 7 insertions(+), 9 deletions(-)
diff --git a/doc/catalyst-spec.5.txt b/doc/catalyst-spec.5.txt
index f87bd69e..e269e16d 100644
--- a/doc/catalyst-spec.5.txt
+++ b/doc/catalyst-spec.5.txt
@@ -180,8 +180,8 @@ CD. Possible values are as follows:
*livecd/fsops*::
The fsops are a list of optional parameters that can be passed to the
tool which will create the filesystem specified in *livecd/fstype*
-(example: `-root-owned`). It is valid for the following fstypes:
-`squashfs`, `jffs`, `jffs2`, and `cramfs`.
+It is valid for the following fstypes: `squashfs`, `jffs`, `jffs2`,
+and `cramfs`.
*livecd/iso*::
This is the full path and filename to the ISO image that the
diff --git a/examples/livecd-stage2_template.spec b/examples/livecd-stage2_template.spec
index 4cb94d40..3b9ca1da 100644
--- a/examples/livecd-stage2_template.spec
+++ b/examples/livecd-stage2_template.spec
@@ -95,8 +95,6 @@ livecd/fstype:
# The fsops are a list of optional parameters that can be passed to the tool
# which will create the filesystem specified in livecd/fstype. It is valid for
# the following fstypes: squashfs, jffs, jffs2, cramfs
-# example:
-# livecd/fsops: -root-owned
livecd/fsops:
# The cdtar is essentially the bootloader for the CD. It also holds the main
diff --git a/targets/embedded/fs-runscript.sh b/targets/embedded/fs-runscript.sh
index 8d5abab1..4746a909 100755
--- a/targets/embedded/fs-runscript.sh
+++ b/targets/embedded/fs-runscript.sh
@@ -32,9 +32,9 @@ case ${1} in
;;
squashfs)
- fs_check /usr/bin/mksquashfs squashfs sys-fs/squashfs-tools
- mksquashfs ${root_fs_path} ${clst_image_path}/root.img \
- ${clst_embedded_fs_ops} || \
+ fs_check /usr/bin/gensquashfs squashfs sys-fs/squashfs-tools-ng
+ gensquashfs -D ${root_fs_path} -q ${clst_embedded_fs_ops} \
+ ${clst_image_path}/root.img ||
die "Could not create a squashfs filesystem"
;;
diff --git a/targets/support/filesystem-functions.sh b/targets/support/filesystem-functions.sh
index 0c144ba8..a4d31b4e 100755
--- a/targets/support/filesystem-functions.sh
+++ b/targets/support/filesystem-functions.sh
@@ -55,8 +55,8 @@ create_noloop() {
create_squashfs() {
echo "Creating squashfs..."
export loopname="image.squashfs"
- mksquashfs "${clst_destpath}" "$1/${loopname}" ${clst_fsops} -noappend \
- || die "mksquashfs failed, did you emerge squashfs-tools?"
+ gensquashfs -D "${clst_destpath}" -q ${clst_fsops} "$1/${loopname}" \
+ || die "gensquashfs failed, did you emerge squashfs-tools-ng?"
}
create_jffs() {
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2020-05-05 0:38 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-05 0:38 [gentoo-commits] proj/catalyst:master commit in: targets/support/, examples/, doc/, targets/embedded/ Matt Turner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox