mirror of
				https://github.com/vyos/vyos-build.git
				synced 2025-10-01 20:28:40 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			338 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			338 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
# this was a "local patch" but patch generates a .orig file if it doesn't
 | 
						|
# apply cleanly, which is not good when all files in the hook directory are
 | 
						|
# executed. just use sed to hack the udev hook here.
 | 
						|
 | 
						|
sed -i 's/^\(mount -n -o move \/dev .*\/dev\)$/\1 2>\/dev\/null/' \
 | 
						|
  /usr/share/initramfs-tools/scripts/init-bottom/udev
 | 
						|
 |