summaryrefslogtreecommitdiff
path: root/recovery/recovery_extra/recovery_amlogic.h (plain)
blob: 7ab23cfa8220af4de8ac12fe3d2be0f7c34e589f
1#ifndef _RECOVERY_INSTALL_AMLOGIC_H_
2#define _RECOVERY_INSTALL_AMLOGIC_H_
3
4#include "common.h"
5#include "device.h"
6#include "roots.h"
7
8#include <android-base/file.h>
9#include <android-base/logging.h>
10#include <android-base/parseint.h>
11#include <android-base/properties.h>
12#include <android-base/stringprintf.h>
13#include <android-base/strings.h>
14#include <android-base/unique_fd.h>
15
16void amlogic_init();
17
18void amlogic_get_args(std::vector<std::string>& args);
19
20void setup_cache_mounts();
21
22int ensure_path_mounted_extra(Volume *v);
23
24#endif
25
26