From 79ce35e94414c8ef298ef9bcb9a7e067a11bb638 Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Wed, 31 Aug 2022 14:12:26 +0200 Subject: [PATCH] Fix endianness of vid/pid patcher. Signed-off-by: Pol Henarejos --- patch_vidpid.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/patch_vidpid.sh b/patch_vidpid.sh index 5d4a622..d688493 100755 --- a/patch_vidpid.sh +++ b/patch_vidpid.sh @@ -1,19 +1,19 @@ #!/bin/bash -# +# # This file is part of the Pico OpenPGP distribution (https://github.com/polhenarejos/pico-openpgp). # Copyright (c) 2022 Pol Henarejos. -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by # the Free Software Foundation, version 3. # -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # -# You should have received a copy of the GNU General Public License +# You should have received a copy of the GNU General Public License # along with this program. If not, see . # @@ -87,7 +87,7 @@ fi LITTLE_VID="\x${VID:2:2}\x${VID:0:2}" LITTLE_PID="\x${PID:2:2}\x${PID:0:2}" -perl -pi -e "s/\xff\xfe\xfd\xfc\x$VERSION_MINOR\x$VERSION_MAJOR\x01\x02\x03\x01/$LITTLE_VID$LITTLE_PID\x$VERSION_MINOR\x$VERSION_MAJOR\x01\x02\x03\x01/" $UF2_FILE_OF +perl -pi -e "s/\xfe\xff\xfc\xfd\x$VERSION_MINOR\x$VERSION_MAJOR\x01\x02\x03\x01/$LITTLE_VID$LITTLE_PID\x$VERSION_MINOR\x$VERSION_MAJOR\x01\x02\x03\x01/" $UF2_FILE_OF echo "Done!" echo ""