Pierre-Hugues Husson | c642be2 | 2018-07-07 23:43:53 +0200 | [diff] [blame^] | 1 | From 98c42d9a0f3bee91b8ff4715e00ab28db4cc26b3 Mon Sep 17 00:00:00 2001 |
| 2 | From: Pierre-Hugues Husson <phh@phh.me> |
| 3 | Date: Sun, 10 Jun 2018 23:23:31 +0200 |
| 4 | Subject: [PATCH 2/2] Say we support AVB 1.0 |
| 5 | |
| 6 | Change-Id: Ica39d42e7b5fc78bc476c413a97a1c488da51fa8 |
| 7 | --- |
| 8 | parse_xml.cpp | 1 + |
| 9 | 1 file changed, 1 insertion(+) |
| 10 | |
| 11 | diff --git a/parse_xml.cpp b/parse_xml.cpp |
| 12 | index 0094f81..5a6d7fa 100644 |
| 13 | --- a/parse_xml.cpp |
| 14 | +++ b/parse_xml.cpp |
| 15 | @@ -862,6 +862,7 @@ struct CompatibilityMatrixConverter : public XmlNodeConverter<CompatibilityMatri |
| 16 | appendChildren(root, matrixKernelConverter, m.framework.mKernels, d); |
| 17 | appendChild(root, sepolicyConverter(m.framework.mSepolicy, d)); |
| 18 | appendChild(root, avbConverter(m.framework.mAvbMetaVersion, d)); |
| 19 | + appendChild(root, avbConverter({1, 0}, d)); |
| 20 | } else if (m.mType == SchemaType::DEVICE) { |
| 21 | appendChild(root, vndkConverter(m.device.mVndk, d)); |
| 22 | } |
| 23 | -- |
| 24 | 2.7.4 |
| 25 | |