LAKITU: Revert "sys-fs/lvm2: Prune file list"

This reverts commit bbc9ae4885a78a9c217a9a8461f184e230d2031d.

COS depends on a few of these files existing. Let's not remove them
without deeper investigation into how COS customers are using LVM.

BUG=b/177232752
TEST=presubmit, validation test
RELEASE_NOTE=None

Change-Id: I82aa8da8d71eca221745345148c7b56483c140f6
Reviewed-on: https://cos-review.googlesource.com/c/third_party/overlays/chromiumos-overlay/+/11210
Reviewed-by: Vaibhav Rustagi <vaibhavrustagi@google.com>
Tested-by: Cusky Presubmit Bot <presubmit@cos-infra-prod.iam.gserviceaccount.com>
diff --git a/chromeos/config/env/sys-fs/lvm2 b/chromeos/config/env/sys-fs/lvm2
deleted file mode 100644
index 696f77d..0000000
--- a/chromeos/config/env/sys-fs/lvm2
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 2020 The Chromium OS Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-# Remove files that will not be used from targets.
-# /etc/lvm/lvm.conf is added by chromeos-init.
-if [[ $(cros_target) != "cros_host" ]]; then
-  lvm_mask="
-    /etc/dmtab
-    /etc/lvm/lvm.conf
-    /etc/lvm/profile/*
-    /lib*/liblvm2app.so*
-    /lib/udev/rules.d/11-dm-lvm.rules
-    /lib/udev/rules.d/69-dm-lvm-metad.rules
-    /usr/lib*/liblvm2app.so*
-    /usr/lib*/pkgconfig/lvm2app.pc
-    /usr/include/lvm2app.h
-    /sbin/lvmetad
-    /sbin/lvpolld
-  "
-
-  PKG_INSTALL_MASK+=" ${lvm_mask}"
-  INSTALL_MASK+=" ${lvm_mask}"
-  unset lvm_mask
-fi