mirror of
https://github.com/drasko/codezero.git
synced 2026-02-26 16:53:14 +01:00
Removed unnecessary print messages from few build scripts
This commit is contained in:
@@ -50,7 +50,6 @@ def build_posix_container(projpaths, container):
|
|||||||
images = []
|
images = []
|
||||||
cwd = os.getcwd()
|
cwd = os.getcwd()
|
||||||
os.chdir(POSIXDIR)
|
os.chdir(POSIXDIR)
|
||||||
print POSIXDIR
|
|
||||||
print '\nBuilding the Posix Container...'
|
print '\nBuilding the Posix Container...'
|
||||||
scons_cmd = 'scons ' + 'cont=' + str(container.id)
|
scons_cmd = 'scons ' + 'cont=' + str(container.id)
|
||||||
#print "Issuing scons command: %s" % scons_cmd
|
#print "Issuing scons command: %s" % scons_cmd
|
||||||
|
|||||||
@@ -74,7 +74,6 @@ def generate_image_S(target_path, images):
|
|||||||
fbody = ''
|
fbody = ''
|
||||||
with open(target_path, 'w+') as images_S:
|
with open(target_path, 'w+') as images_S:
|
||||||
for img in images:
|
for img in images:
|
||||||
print os.path.basename(img.path)
|
|
||||||
if os.path.basename(img.path) == kern_fname:
|
if os.path.basename(img.path) == kern_fname:
|
||||||
fbody += decl_sect_asm % ('.kernel', img)
|
fbody += decl_sect_asm % ('.kernel', img)
|
||||||
if os.path.basename(img.path) == conts_fname:
|
if os.path.basename(img.path) == conts_fname:
|
||||||
|
|||||||
Reference in New Issue
Block a user