commit 6574665f9d6c0757e8f55ccb465afbcaa90bf019 Author: Timotej Lazar Date: Wed Aug 19 19:36:02 2020 +0200 test: normalize flags reported by dumpe2fs Filesystem flags depend on the system – usually signed_directory_hash, but unsigned_directory_hash at least on arm64. Signed-off-by: Timotej Lazar diff --git a/test/basic-images.test b/test/basic-images.test index f6685e1..cb104c3 100755 --- a/test/basic-images.test +++ b/test/basic-images.test @@ -158,6 +158,8 @@ check_ext() { # format change csum2="Group 0: (Blocks 1-4095) \\[ITABLE_ZEROED\\]\| Checksum .*, unused inodes 205" dumpe2fs "${1}" | grep -v "^\($uuid\|$seed\|$csum1\|$csum2\)" > "dump" && + # some architectures (including arm64) use unsigned char + sed -i 's/un\(signed_directory_hash\)/\1/' "dump" && # fixup for ext3 journal size with old tune2fs sed -i 's/^\(Journal size: \)1029k$/\11024k/' "dump" && # output format changed with some version bs'> aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2023-01-18gnu: Add u-boot-ts7970-q-2g-1000mhz-c-bootloader....* gnu/bootloader/u-boot.scm (u-boot-ts7970-q-2g-1000mhz-c-bootloader): New variable. Maxim Cournoyer
2022-12-28gnu: u-boot-am335x-boneblack: Revert to old name....This reverts to the name this package had previous to commit c2c1dfdf5760873f1db86d14873f725a105f7feb ("gnu: bootloader: Add U-Boot packages for Raspberry Pi models."), which caused the package name to be derived from the board name. * gnu/packages/bootloaders.scm (u-boot-am335x-evm-boneblack): Remove the NAME-SUFFIX keyword argument. Specify the full name via the name field. * gnu/bootloader/u-boot.scm (u-boot-beaglebone-black-bootloader): Adjust to the renamed package. Reported-by: Vagrant Cascadian <vagrant@debian.org> Maxim Cournoyer
2022-12-20gnu: u-boot-am335x-evm-boneblack: Fix variable name....* gnu/packages/bootloaders.scm (u-boot-am335x-boneblack): Rename to... (u-boot-am335x-evm-boneblack), to match the package name. * gnu/bootloader/u-boot.scm (u-boot-beaglebone-black-bootloader): Adjust accordingly. Maxim Cournoyer