diff options
author | Raphaël Hertzog <hertzog@debian.org> | 2017-08-10 14:53:51 +0200 |
---|---|---|
committer | Raphaël Hertzog <hertzog@debian.org> | 2017-08-10 14:53:53 +0200 |
commit | ff71712590a809d0f7ba680e787a9f091ed853b2 (patch) | |
tree | 2e2098b6e1afb48e5f26e7f40b3dfc7ad259762b | |
parent | 406dd066108f079eeee26de9cbeb7a121aac7b16 (diff) | |
download | vyos-live-build-ff71712590a809d0f7ba680e787a9f091ed853b2.tar.gz vyos-live-build-ff71712590a809d0f7ba680e787a9f091ed853b2.zip |
Add .disk/mkisofs file recording the xorriso command line
Thanks to Thomas Schmitt <scdbackup@gmx.net> for the suggestion.
-rw-r--r-- | debian/changelog | 7 | ||||
-rwxr-xr-x | scripts/build/binary_iso | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index b108c9e95..c4f06ac7b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +live-build (1:20170808) UNRELEASED; urgency=medium + + * Add .disk/mkisofs file recording the xorriso command line. Thanks + to Thomas Schmitt <scdbackup@gmx.net> for the suggestion. + + -- Raphaël Hertzog <hertzog@debian.org> Thu, 10 Aug 2017 14:53:06 +0200 + live-build (1:20170807) unstable; urgency=medium * Add keyboard shortcut on the "Advanced options" syslinux menu entry. diff --git a/scripts/build/binary_iso b/scripts/build/binary_iso index 2b381622a..6ddb9dd09 100755 --- a/scripts/build/binary_iso +++ b/scripts/build/binary_iso @@ -213,6 +213,8 @@ fi cat >> binary.sh << EOF +mkdir -p binary/.disk +echo "xorriso -as mkisofs ${XORRISO_OPTIONS} -o ${IMAGE} binary" > binary/.disk/mkisofs xorriso -as mkisofs ${XORRISO_OPTIONS} -o ${IMAGE} binary EOF |