FreeBSD Bugzilla – Attachment 171673 Details for
Bug 210463
release build; makefs: error: The Disk Label must be at most 32 characters long
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch truncates LABEL to 32 characters thus preventing the stop error described in the bug report
diff.txt (text/plain), 464 bytes, created by
Rick Miller
on 2016-06-22 13:15:58 UTC
(
hide
)
Description:
Patch truncates LABEL to 32 characters thus preventing the stop error described in the bug report
Filename:
MIME Type:
Creator:
Rick Miller
Created:
2016-06-22 13:15:58 UTC
Size:
464 bytes
patch
obsolete
>diff --git a/release/amd64/mkisoimages-uefi.sh b/release/amd64/mkisoimages-uefi.sh >index 9526ad7..0441dac 100644 >--- a/release/amd64/mkisoimages-uefi.sh >+++ b/release/amd64/mkisoimages-uefi.sh >@@ -50,7 +50,7 @@ if [ $# -lt 3 ]; then > exit 1 > fi > >-LABEL=`echo $1 | tr '[:lower:]' '[:upper:]'`; shift >+LABEL=`echo $1 | tr '[:lower:]' '[:upper:]' | cut -c 1-32`; shift > NAME=$1; shift > > publisher="The FreeBSD Project. http://www.FreeBSD.org/"
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 210463
: 171673