mirror of
				https://gitlab.com/qemu-project/ipxe.git
				synced 2025-11-03 07:59:06 +08:00 
			
		
		
		
	Compare commits
	
		
			2 Commits
		
	
	
		
			efibridge
			...
			ubuntu2204
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 6c0335adf6 | |||
| 8450fa4a7b | 
							
								
								
									
										6
									
								
								.github/workflows/build.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								.github/workflows/build.yml
									
									
									
									
										vendored
									
									
								
							@ -6,7 +6,7 @@ jobs:
 | 
			
		||||
 | 
			
		||||
  x86:
 | 
			
		||||
    name: x86
 | 
			
		||||
    runs-on: ubuntu-20.04
 | 
			
		||||
    runs-on: ubuntu-22.04
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Check out code
 | 
			
		||||
        uses: actions/checkout@v3
 | 
			
		||||
@ -32,7 +32,7 @@ jobs:
 | 
			
		||||
 | 
			
		||||
  arm32:
 | 
			
		||||
    name: ARM32
 | 
			
		||||
    runs-on: ubuntu-20.04
 | 
			
		||||
    runs-on: ubuntu-22.04
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Check out code
 | 
			
		||||
        uses: actions/checkout@v3
 | 
			
		||||
@ -52,7 +52,7 @@ jobs:
 | 
			
		||||
 | 
			
		||||
  arm64:
 | 
			
		||||
    name: ARM64
 | 
			
		||||
    runs-on: ubuntu-20.04
 | 
			
		||||
    runs-on: ubuntu-22.04
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Check out code
 | 
			
		||||
        uses: actions/checkout@v3
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										2
									
								
								.github/workflows/coverity.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/coverity.yml
									
									
									
									
										vendored
									
									
								
							@ -8,7 +8,7 @@ on:
 | 
			
		||||
jobs:
 | 
			
		||||
  submit:
 | 
			
		||||
    name: Submit
 | 
			
		||||
    runs-on: ubuntu-20.04
 | 
			
		||||
    runs-on: ubuntu-22.04
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Check out code
 | 
			
		||||
        uses: actions/checkout@v3
 | 
			
		||||
 | 
			
		||||
@ -571,6 +571,10 @@ static void dhcp_request_rx ( struct dhcp_session *dhcp,
 | 
			
		||||
	if ( peer->sin_port != htons ( BOOTPS_PORT ) )
 | 
			
		||||
		return;
 | 
			
		||||
 | 
			
		||||
	/* Filter out non-selected servers */
 | 
			
		||||
	if ( server_id.s_addr != dhcp->server.s_addr )
 | 
			
		||||
		return;
 | 
			
		||||
 | 
			
		||||
	/* Handle DHCPNAK */
 | 
			
		||||
	if ( msgtype == DHCPNAK ) {
 | 
			
		||||
		dhcp_defer ( dhcp );
 | 
			
		||||
@ -580,8 +584,6 @@ static void dhcp_request_rx ( struct dhcp_session *dhcp,
 | 
			
		||||
	/* Filter out unacceptable responses */
 | 
			
		||||
	if ( msgtype /* BOOTP */ && ( msgtype != DHCPACK ) )
 | 
			
		||||
		return;
 | 
			
		||||
	if ( server_id.s_addr != dhcp->server.s_addr )
 | 
			
		||||
		return;
 | 
			
		||||
	if ( ip.s_addr != dhcp->offer.s_addr )
 | 
			
		||||
		return;
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user