mirror of
				https://github.com/fspc/gbootroot.git
				synced 2025-11-04 00:05:35 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			388 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			388 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
#
 | 
						|
# /etc/rc:  System initialization script.
 | 
						|
#
 | 
						|
 | 
						|
#  Compute module dependencies
 | 
						|
/sbin/depmod -a
 | 
						|
 | 
						|
#  Start up kerneld if desired
 | 
						|
#/sbin/kerneld
 | 
						|
 | 
						|
#  Mount everything mentioned in fstab
 | 
						|
/bin/mount -av
 | 
						|
 | 
						|
#  Set host name
 | 
						|
/bin/hostname Rescue
 | 
						|
 | 
						|
#  If you need to load a keyboard map, uncomment this line and
 | 
						|
#  fix the pathnames:
 | 
						|
#/usr/sbin/loadkeys /usr/lib/kbd/keytables/defkeymap.map
 |