1 /* 2 * Copyright (C) 2023 Rockchip Electronics Co., Ltd. 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef __RECOVERY_VERSION_H__ 18 #define __RECOVERY_VERSION_H__ 19 20 #include "recovery_autogenerate.h" 21 /* define in makefile 22 * GIT_COMMIT_INFO 23 * major.minor.revision-gX 24 * major:main version number, increase when there are significant changes 25 * minor:minor version number, increase when there is an increase in functionality or features 26 * revision:revised version number, increase when there are bug fixes or minor modifications 27 */ 28 #define PLAIN_VERSION "V1.0.1" 29 #define _CONS(str1,str2) str1 #str2 30 #define CONS(A,B) _CONS(A,B) 31 #define RECOVERY_VERSION_STRING CONS(PLAIN_VERSION, GIT_COMMIT_INFO) 32 33 #endif /* __RECOVERY_VERSION_H__ */