--- a/imgtools/buildrom/tools/buildrom.pl Mon Sep 13 14:04:04 2010 +0100
+++ b/imgtools/buildrom/tools/buildrom.pl Wed Oct 13 16:27:55 2010 +0800
@@ -53,13 +53,15 @@
# Processes the buildrom command line parameters.
&process_cmdline_arguments;
- &image_content_processing_phase;
+ my $ignoreconfig = &isIgnoreConfig;
+
+ &image_content_processing_phase if(!$ignoreconfig);
#Processes intermediate oby files. Also processes any new option added to the buildrom in future.
- &processobyfiles;
+ &processobyfiles if(!$ignoreconfig);
# Suppress ROM/ROFS/DataDrive Image creation if "-noimage" option is provided.
- &suppress_image_generation;
+ &suppress_image_generation if(!$ignoreconfig);
#Invokes ROMBUILD and ROFSBUILD
&invoke_rombuild;