Skip to content

Commit

Permalink
OTA: Add hboot version check to install
Browse files Browse the repository at this point in the history
  • Loading branch information
Lloir committed Apr 24, 2017
1 parent 0903170 commit 199a1ce
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions releasetools.py
@@ -0,0 +1,31 @@
# Copyright (C) 2013 The Android Open Source Project
# Copyright (C) 2013 The CyanogenMod 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.

"""Custom OTA commands for z4u"""

import common
import os
import shutil

#TARGET_DIR = os.getenv('OUT')
#UTILITIES_DIR = os.path.join(TARGET_DIR, 'utilities')

def FullOTA_Assertions(info):
info.script.AppendExtra(
('assert('
'getprop("ro.bootloader") == "1.03.0001"'
');'))


1 comment on commit 199a1ce

@Lloir
Copy link

@Lloir Lloir commented on 199a1ce Apr 24, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Restrict to 1.0.3 for the time being due to the the vendor files being mixed 1.?? and 1.03

vendor files NEED to be 1.0.3 then to test on 1.0.2

Please sign in to comment.