Snap for 9930594 from 10a7e5a3cb to udc-release

Change-Id: I9b246c864f7cfa1354e3e7a0a66d16e2c6552056
This commit is contained in:
Android Build Coastguard Worker 2023-04-13 01:16:07 +00:00
commit 5e1f11079e
3 changed files with 3 additions and 38 deletions

View file

@ -16,6 +16,9 @@ on post-fs-data
# Modem MDS log folder
mkdir /data/vendor/radio/mds 0771 radio system
# Modem OTA UECap folder
mkdir /data/vendor/radio/ota_uecap 0773 radio system
# Unzipped modem images folder
mkdir /data/vendor/radio/image 0771 radio system

View file

@ -8,19 +8,3 @@ sh_binary {
vendor: true,
sub_dir: "dump",
}
cc_binary {
name: "dump_gs201",
srcs: ["dump_gs201.cpp"],
cflags: [
"-Wall",
"-Wextra",
"-Werror",
],
shared_libs: [
"libdump",
],
vendor: true,
relative_install_path: "dump",
}

View file

@ -1,22 +0,0 @@
/*
* Copyright 2022 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <dump/pixel_dump.h>
// Dump gs201 info
int main() {
dumpFileContent("Pixel trace", "/sys/kernel/tracing/instances/pixel/trace");
return 0;
}