Project Home
Project Home
Trackers
Trackers
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - Is comment comment?: (1 Item)
   
Is comment comment?  
Hello

I do try to add comments with my notices into .bsh file and I have got special knowing

If I add into .bsh file comment like

#		device \{									## it is device
#		  drivername=mpc5121						## we use this driver
#		  vid=0										## vendor ID is 0
#		  did=0										## device ID is 0
#		  modeopts=/etc/system/config/mpc5121.conf  ## mpc configuration is 
#													## located in this file
#		  display \{									## display definition is
#			xres=1024								## x resolution
#			yres=768								## y resolution
#			refresh=60								## refresh rate
#			pixel_format=rgb888						## pixel format
#			\}
#		  \}
#

everything is OK and target image is created.

 If I add comment like

#		device {									## it is device
#		  drivername=mpc5121						## we use this driver
#		  vid=0										## vendor ID is 0
#		  did=0										## device ID is 0
#		  modeopts=/etc/system/config/mpc5121.conf  ## mpc configuration is 
#													## located in this file
#		  display {									## display definition is
#			xres=1024								## x resolution
#			yres=768								## y resolution
#			refresh=60								## refresh rate
#			pixel_format=rgb888						## pixel format
#			}
#		  }
#

I get mistake into build process 

Line 278: Unknown attribute: +session.


It looks like comments are not comments if there are some { or } into comments lines