mirror of
				https://git.proxmox.com/git/grub2
				synced 2025-10-31 10:15:17 +00:00 
			
		
		
		
	 5a869940de
			
		
	
	
		5a869940de
		
	
	
	
	
		
			
			grub-core/osdep/blocklist.c and add windows implementation since generic version doesn't work on NTFS on Windows due to aggressive unflushable cache.
		
			
				
	
	
		
			8 lines
		
	
	
		
			173 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			173 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #ifdef __linux__
 | |
| #include "linux/blocklist.c"
 | |
| #elif defined (__MINGW32__) || defined (__CYGWIN__)
 | |
| #include "windows/blocklist.c"
 | |
| #else
 | |
| #include "generic/blocklist.c"
 | |
| #endif
 |