xref: /rk3399_rockchip-uboot/include/android_avb/avb_ops_user.h (revision 6c551138ca32fe8065f37a7a1dc1a0f3491313f1)
1 #ifndef AVB_OPS_USER_H_
2 #define AVB_OPS_USER_H_
3 
4 #include <android_avb/libavb.h>
5 #include <android_avb/avb_ab_flow.h>
6 
7 
8 
9 AvbOps* avb_ops_user_new(void);
10 void avb_ops_user_free(AvbOps* ops);
11 int read_slot_count(char *slot_count);
12 int read_slot_suffixes(char *slot_suffixes);
13 int set_slot_active(unsigned int *slot_number);
14 int get_current_slot(char *select_slot);
15 
16 #endif
17