build: drop bash from fwcheck target
This commit is contained in:
		
							parent
							
								
									bdfc6d28fc
								
							
						
					
					
						commit
						1e9f438872
					
				
							
								
								
									
										6
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								Makefile
									
									
									
									
									
								
							| @ -146,8 +146,10 @@ fwlist-${KVNAME}: data | |||||||
| fwcheck: fwlist-${KVNAME} fwlist-previous | fwcheck: fwlist-${KVNAME} fwlist-previous | ||||||
| 	@echo "checking fwlist for changes since last built firmware package.." | 	@echo "checking fwlist for changes since last built firmware package.." | ||||||
| 	@echo "if this check fails, add fwlist-${KVNAME} to the pve-firmware repository and upload a new firmware package together with the ${KVNAME} kernel" | 	@echo "if this check fails, add fwlist-${KVNAME} to the pve-firmware repository and upload a new firmware package together with the ${KVNAME} kernel" | ||||||
| 	bash -c "diff -up -N <(sort fwlist-previous | uniq) <(sort fwlist-${KVNAME} | uniq) > fwlist.diff" | 	sort fwlist-previous | uniq > fwlist-previous.sorted | ||||||
| 	rm fwlist.diff | 	sort fwlist-${KVNAME} | uniq > fwlist-${KVNAME}.sorted | ||||||
|  | 	diff -up -N fwlist-previous.sorted fwlist-${KVNAME}.sorted > fwlist.diff | ||||||
|  | 	rm fwlist.diff fwlist-previous.sorted fwlist-${KVNAME}.sorted | ||||||
| 	@echo "done, no need to rebuild pve-firmware" | 	@echo "done, no need to rebuild pve-firmware" | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Fabian Grünbichler
						Fabian Grünbichler