 2fe8fb192f
			
		
	
	
		2fe8fb192f
		
	
	
	
	
		
			
			There is important information about booting non-ack images in docs/UPDATING. ack/aout-format images can't be built any more, and booting clang/ELF-format ones is a little different. Updating to the new boot monitor is recommended. Changes in this commit: . drop boot monitor -> allowing dropping ack support . facility to copy ELF boot files to /boot so that old boot monitor can still boot fairly easily, see UPDATING . no more ack-format libraries -> single-case libraries . some cleanup of OBJECT_FMT, COMPILER_TYPE, etc cases . drop several ack toolchain commands, but not all support commands (e.g. aal is gone but acksize is not yet). . a few libc files moved to netbsd libc dir . new /bin/date as minix date used code in libc/ . test compile fix . harmonize includes . /usr/lib is no longer special: without ack, /usr/lib plays no kind of special bootstrapping role any more and bootstrapping is done exclusively through packages, so releases depend even less on the state of the machine making them now. . rename nbsd_lib* to lib* . reduce mtree
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*	configfile.h - Generic configuration file format.
 | |
|  *							Author: Kees J. Bot
 | |
|  *								5 Jun 1999
 | |
|  */
 | |
| #ifndef _CONFIGFILE_H
 | |
| #define _CONFIGFILE_H
 | |
| 
 | |
| /* Data can only be modified inside the library. */
 | |
| #ifndef _c
 | |
| #define _c	const
 | |
| #endif
 | |
| 
 | |
| typedef _c struct config {	/* Contents of a generic configuration file. */
 | |
| _c	struct config	*next;		/* Next configuration file thing. */
 | |
| _c	struct config	*list;		/* For a { sublist }. */
 | |
| 	const char	*file;		/* File and line where this is found. */
 | |
| 	unsigned	line;
 | |
| 	int		flags;		/* Special flags. */
 | |
| 	char		word[1];	/* Payload. */
 | |
| } config_t;
 | |
| 
 | |
| #define CFG_CLONG	0x0001		/* strtol(word, &end, 0) is valid. */
 | |
| #define CFG_OLONG	0x0002		/* strtol(word, &end, 010). */
 | |
| #define CFG_DLONG	0x0004		/* strtol(word, &end, 10). */
 | |
| #define CFG_XLONG	0x0008		/* strtol(word, &end, 0x10). */
 | |
| #define CFG_CULONG	0x0010		/* strtoul(word, &end, 0). */
 | |
| #define CFG_OULONG	0x0020		/* strtoul(word, &end, 010). */
 | |
| #define CFG_DULONG	0x0040		/* strtoul(word, &end, 10). */
 | |
| #define CFG_XULONG	0x0080		/* strtoul(word, &end, 0x10). */
 | |
| #define CFG_STRING	0x0100		/* The word is enclosed in quotes. */
 | |
| #define CFG_SUBLIST	0x0200		/* This is a sublist, so no word. */
 | |
| #define CFG_ESCAPED	0x0400		/* Escapes are still marked with \. */
 | |
| 
 | |
| config_t *config_read(const char *_file, int flags, config_t *_cfg);
 | |
| void config_delete(config_t *_cfg);
 | |
| int config_renewed(config_t *_cfg);
 | |
| size_t config_length(config_t *_cfg);
 | |
| #define config_issub(cfg)	(!!((cfg)->flags & CFG_SUBLIST))
 | |
| #define config_isatom(cfg)	(!config_issub(cfg))
 | |
| #define config_isstring(cfg)	(!!((cfg)->flags & CFG_STRING))
 | |
| 
 | |
| #undef _c
 | |
| 
 | |
| #endif /* _CONFIGFILE_H */
 |