Index: soft/giet_vm/giet_python/genmap
===================================================================
--- soft/giet_vm/giet_python/genmap	(revision 328)
+++ soft/giet_vm/giet_python/genmap	(revision 338)
@@ -8,16 +8,10 @@
 # This generic script maps one or several multi-tasks applications on a specific 
 # instance of the multi-processors/multi-clusters TSAR architecture. 
-#
 # It generates the files required for hardware and software compilation:
-#
 # 1) The "hard_config.h" file is used to generate the top.cppnetbsd file (hardware),
 #    and to compile the tsar_preloader.elf, the GietVM boot.elf and kernel.elf files.
-#
 # 2) The optionals "map.bin" and vsegs.ld" files are used to configure the GietVM.
-#
 # 3) The optional "netbsd.dts" file can be used to configure NetBSD.
-#
 # 4) The optional "arch.bib" file can be used to configure ALMOS.
-#
 # 5) An optional "map.xml" file can be generated for debug. 
 #######################################################################################
@@ -94,5 +88,5 @@
                    help = 'map the "sort" application for the GietVM' )
 
-parser.add_option( '--convol', action = 'store_true', dest = 'filt',     
+parser.add_option( '--convol', action = 'store_true', dest = 'convol',     
                    default = False,
                    help = 'map the "convol" application for the GietVM' )
@@ -120,5 +114,5 @@
 map_transpose = options.transpose   # map "transpose" application if True
 map_sort      = options.sort        # map "sort" application if True
-map_convol    = options.filt        # map "convol" application if True
+map_convol    = options.convol      # map "convol" application if True
 
 ######################################################################################
@@ -134,8 +128,8 @@
 
 # dynamically import the PYTHON mapping generator module (file name)
-select = __import__( 'genmap' )
+select = __import__( 'arch' )
 
 # build mapping calling the function (function name)
-mapping = select.genmap( x_size, y_size, nprocs )
+mapping = select.arch( x_size, y_size, nprocs )
 print '[genmap] platform %s build' % mapping.name 
 
