Removed unnecessary print messages from few build scripts

This commit is contained in:
Bahadir Balban
2009-10-09 00:58:07 +03:00
parent 7e38e70f93
commit a8a4b5ce6c
2 changed files with 0 additions and 2 deletions

View File

@@ -50,7 +50,6 @@ def build_posix_container(projpaths, container):
images = []
cwd = os.getcwd()
os.chdir(POSIXDIR)
print POSIXDIR
print '\nBuilding the Posix Container...'
scons_cmd = 'scons ' + 'cont=' + str(container.id)
#print "Issuing scons command: %s" % scons_cmd

View File

@@ -74,7 +74,6 @@ def generate_image_S(target_path, images):
fbody = ''
with open(target_path, 'w+') as images_S:
for img in images:
print os.path.basename(img.path)
if os.path.basename(img.path) == kern_fname:
fbody += decl_sect_asm % ('.kernel', img)
if os.path.basename(img.path) == conts_fname: