summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYabin Cui <yabinc@google.com>2016-03-30 01:53:26 +0200
committerandroid-build-merger <android-build-merger@google.com>2016-03-30 01:53:26 +0200
commit2286b23373fd3dc5b032df8e1b7bcf3a65e05f76 (patch)
tree04629db86cecb6b49e3add57a39afa469ecf923f
parentAdd string for Installing_security_update am: 1ee0ff3 (diff)
parentresolve merge conflicts of 61799ba to nyc-dev-plus-aosp (diff)
downloadandroid_bootable_recovery-2286b23373fd3dc5b032df8e1b7bcf3a65e05f76.tar
android_bootable_recovery-2286b23373fd3dc5b032df8e1b7bcf3a65e05f76.tar.gz
android_bootable_recovery-2286b23373fd3dc5b032df8e1b7bcf3a65e05f76.tar.bz2
android_bootable_recovery-2286b23373fd3dc5b032df8e1b7bcf3a65e05f76.tar.lz
android_bootable_recovery-2286b23373fd3dc5b032df8e1b7bcf3a65e05f76.tar.xz
android_bootable_recovery-2286b23373fd3dc5b032df8e1b7bcf3a65e05f76.tar.zst
android_bootable_recovery-2286b23373fd3dc5b032df8e1b7bcf3a65e05f76.zip
-rw-r--r--uncrypt/uncrypt.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/uncrypt/uncrypt.cpp b/uncrypt/uncrypt.cpp
index 2986606e1..f569bcedc 100644
--- a/uncrypt/uncrypt.cpp
+++ b/uncrypt/uncrypt.cpp
@@ -423,24 +423,6 @@ static std::string get_misc_blk_device() {
return "";
}
-static int read_bootloader_message(bootloader_message* out) {
- std::string misc_blk_device = get_misc_blk_device();
- if (misc_blk_device.empty()) {
- ALOGE("failed to find /misc partition.");
- return -1;
- }
- android::base::unique_fd fd(open(misc_blk_device.c_str(), O_RDONLY));
- if (fd == -1) {
- ALOGE("failed to open %s: %s", misc_blk_device.c_str(), strerror(errno));
- return -1;
- }
- if (!android::base::ReadFully(fd, out, sizeof(*out))) {
- ALOGE("failed to read %s: %s", misc_blk_device.c_str(), strerror(errno));
- return -1;
- }
- return 0;
-}
-
static int write_bootloader_message(const bootloader_message* in) {
std::string misc_blk_device = get_misc_blk_device();
if (misc_blk_device.empty()) {
@@ -568,23 +550,11 @@ static bool setup_bcb(const int socket) {
return true;
}
-static int read_bcb() {
- bootloader_message boot;
- if (read_bootloader_message(&boot) != 0) {
- ALOGE("failed to get bootloader message");
- return 1;
- }
- printf("bcb command: %s\n", boot.command);
- printf("bcb recovery:\n%s\n", boot.recovery);
- return 0;
-}
-
static void usage(const char* exename) {
fprintf(stderr, "Usage of %s:\n", exename);
fprintf(stderr, "%s [<package_path> <map_file>] Uncrypt ota package.\n", exename);
fprintf(stderr, "%s --clear-bcb Clear BCB data in misc partition.\n", exename);
fprintf(stderr, "%s --setup-bcb Setup BCB data by command file.\n", exename);
- fprintf(stderr, "%s --read-bcb Read BCB data from misc partition.\n", exename);
}
int main(int argc, char** argv) {
@@ -596,8 +566,6 @@ int main(int argc, char** argv) {
action = CLEAR_BCB;
} else if (argc == 2 && strcmp(argv[1], "--setup-bcb") == 0) {
action = SETUP_BCB;
- } else if (argc ==2 && strcmp(argv[1], "--read-bcb") == 0) {
- return read_bcb();
} else if (argc == 1) {
action = UNCRYPT;
} else if (argc == 3) {