From 218695a0a746eb5fc2875359dff3226c9709be4b Mon Sep 17 00:00:00 2001 From: Dennis Shen Date: Wed, 2 Nov 2022 14:47:38 +0000 Subject: [PATCH] AOSP: Make blkid host_supported We need blkid in deapexer to get the filesystem type of the payload image. However, blkid will not be installed to host out dir unless we make it host_supported which is what this change is about. BUG: b/255963179, b/240288941 TEST: m deapexer; then check out/host/linux-x86/bin Change-Id: I46c1e18b9dbdbeb41c7dfe4e26496004d1b2b3de From AOSP commit: f12ebffc345741380d9a30ddac528a9b995657cd --- misc/Android.bp | 1 + 1 file changed, 1 insertion(+) diff --git a/misc/Android.bp b/misc/Android.bp index 2b1620a..04301ae 100644 --- a/misc/Android.bp +++ b/misc/Android.bp @@ -236,6 +236,7 @@ cc_binary { cc_binary { name: "blkid", + host_supported: true, defaults: ["e2fsprogs-defaults"], srcs: ["blkid.c"], -- 1.8.3.1