Loading build/tasks/kernel.mk +2 −1 Original line number Diff line number Diff line Loading @@ -34,6 +34,7 @@ # BOARD_KERNEL_IMAGE_NAME = Built image name # for ARM use: zImage # for ARM64 use: Image.gz # for x86 use: bzImage # for uncompressed use: Image # If using an appended DT, append '-dtb' # to the end of the image name. Loading Loading @@ -448,7 +449,7 @@ $(KERNEL_CONFIG): $(KERNEL_OUT) $(ALL_KERNEL_DEFCONFIG_SRCS) $(TARGET_PREBUILT_INT_KERNEL): $(KERNEL_CONFIG) $(DEPMOD) $(DTC) @echo "Building Kernel Image ($(BOARD_KERNEL_IMAGE_NAME))" $(call make-kernel-target,$(BOARD_KERNEL_IMAGE_NAME)) $(hide) if grep -q '^CONFIG_OF=y' $(KERNEL_CONFIG); then \ $(hide) if [ -d "$(KERNEL_SRC)/arch/$(KERNEL_ARCH)/boot/dts/" ]; then \ echo "Building DTBs"; \ $(call make-kernel-target,dtbs); \ fi Loading build/tools/roomservice.py +9 −1 Original line number Diff line number Diff line Loading @@ -40,6 +40,10 @@ except ImportError: from xml.etree import ElementTree dryrun = os.getenv('ROOMSERVICE_DRYRUN') == "true" if dryrun: print("Dry run roomservice, no change will be made.") product = sys.argv[1] if len(sys.argv) > 2: Loading Loading @@ -180,6 +184,9 @@ def is_in_manifest(projectpath): return False def add_to_manifest(repositories): if dryrun: return try: lm = ElementTree.parse(".repo/local_manifests/roomservice.xml") lm = lm.getroot() Loading Loading @@ -243,6 +250,7 @@ def fetch_dependencies(repo_path): if len(syncable_repos) > 0: print('Syncing dependencies') if not dryrun: os.system('repo sync --force-sync %s' % ' '.join(syncable_repos)) for deprepo in verify_repos: Loading Loading
build/tasks/kernel.mk +2 −1 Original line number Diff line number Diff line Loading @@ -34,6 +34,7 @@ # BOARD_KERNEL_IMAGE_NAME = Built image name # for ARM use: zImage # for ARM64 use: Image.gz # for x86 use: bzImage # for uncompressed use: Image # If using an appended DT, append '-dtb' # to the end of the image name. Loading Loading @@ -448,7 +449,7 @@ $(KERNEL_CONFIG): $(KERNEL_OUT) $(ALL_KERNEL_DEFCONFIG_SRCS) $(TARGET_PREBUILT_INT_KERNEL): $(KERNEL_CONFIG) $(DEPMOD) $(DTC) @echo "Building Kernel Image ($(BOARD_KERNEL_IMAGE_NAME))" $(call make-kernel-target,$(BOARD_KERNEL_IMAGE_NAME)) $(hide) if grep -q '^CONFIG_OF=y' $(KERNEL_CONFIG); then \ $(hide) if [ -d "$(KERNEL_SRC)/arch/$(KERNEL_ARCH)/boot/dts/" ]; then \ echo "Building DTBs"; \ $(call make-kernel-target,dtbs); \ fi Loading
build/tools/roomservice.py +9 −1 Original line number Diff line number Diff line Loading @@ -40,6 +40,10 @@ except ImportError: from xml.etree import ElementTree dryrun = os.getenv('ROOMSERVICE_DRYRUN') == "true" if dryrun: print("Dry run roomservice, no change will be made.") product = sys.argv[1] if len(sys.argv) > 2: Loading Loading @@ -180,6 +184,9 @@ def is_in_manifest(projectpath): return False def add_to_manifest(repositories): if dryrun: return try: lm = ElementTree.parse(".repo/local_manifests/roomservice.xml") lm = lm.getroot() Loading Loading @@ -243,6 +250,7 @@ def fetch_dependencies(repo_path): if len(syncable_repos) > 0: print('Syncing dependencies') if not dryrun: os.system('repo sync --force-sync %s' % ' '.join(syncable_repos)) for deprepo in verify_repos: Loading