Re: [Toybox] [PATCH 2/2] BLKID: Fix SEC_TYPE for vfat and iso9660

2023-02-08 Thread Eric Molitor
On Wed, 8 Feb 2023 at 05:23, Rob Landley wrote: > It's after mkfs.vfat in my todo list because of rock ridge weirdness. > Right. > I might take a look at that as I need mkfs.vfat (or mtools) to create the ESP for UEFI bootable images. And now I need to go back and add a couple extra paremeters,

Re: [Toybox] [PATCH 2/2] BLKID: Fix SEC_TYPE for vfat and iso9660

2023-02-07 Thread Rob Landley
Test assumes a test image you want me to create with a tool I don't have installed, and I'm not near net access at the moment. Huh, I thought busybox had a mkisofs. I guess that was just on my todo heap to implement way back when. (I haven't got one installed either, it seems...) Where are my

[Toybox] [PATCH 2/2] BLKID: Fix SEC_TYPE for vfat and iso9660

2023-02-06 Thread Eric Molitor
Move SEC_TYPE for vfat to not display when searching by label Remove SEC_TYPE from iso9660 --- tests/blkid.test | 6 +++--- toys/other/blkid.c | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/tests/blkid.test b/tests/blkid.test index 4c385dcb..37bce67a 100755 ---