Skip to content

Commit a5e3ed1

Browse files
committed
TRITON-xxxx Move iPXE build to 24.4.1
1 parent b0419dc commit a5e3ed1

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

Jenkinsfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@
77
/*
88
* Copyright 2021 Joyent, Inc.
99
* Copyright 2025 MNX Cloud, Inc.
10+
* Copyright 2026 Edgecast Cloud LLC.
1011
*/
1112

1213
@Library('jenkins-joylib@v1.0.8') _
1314

1415
pipeline {
1516

1617
agent {
17-
label joyCommonLabels(image_ver: '19.4.0')
18+
label joyCommonLabels(image_ver: '24.4.1', pi: '20210826T002459Z')
1819
}
1920

2021
options {

Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,15 @@ $(BOOT_ROOT)/ipxe.lkrn : FILEMODE = 755
6666
$(BOOT_ROOT)/default.ipxe : FILEMODE = 644
6767
$(BOOT_ROOT)/undionly.kpxe : FILEMODE = 644
6868

69-
# our base image is triton-origin-x86_64-19.4.0
70-
BASE_IMAGE_UUID = 59ba2e5e-976f-4e09-8aac-a4a7ef0395f5
71-
7269
ENGBLD_USE_BUILDIMAGE = false
7370
ENGBLD_REQUIRE := $(shell git submodule update --init deps/eng)
7471
include ./deps/eng/tools/mk/Makefile.defs
7572
TOP ?= $(error Unable to access eng.git submodule Makefiles.)
7673

74+
# our base image is triton-origin-x86_64-24.4.1
75+
BASE_IMAGE_UUID = 41bd4100-eb86-409a-85b0-e649aadf6f62
76+
BUILD_PLATFORM = 20210826T002459Z
77+
7778
.PHONY: all
7879
all: src/bin/ipxe.lkrn $(EFI_TARGETS)
7980

src/tests/bigint_test.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ void bigint_mod_exp_sample ( const bigint_element_t *base0,
232232
static const uint8_t addend_raw[] = addend; \
233233
static const uint8_t value_raw[] = value; \
234234
static const uint8_t expected_raw[] = expected; \
235-
uint8_t result_raw[ sizeof ( expected_raw ) ]; \
235+
uint8_t result_raw[ sizeof ( expected_raw ) ] = {0}; \
236236
unsigned int size = \
237237
bigint_required_size ( sizeof ( value_raw ) ); \
238238
bigint_t ( size ) addend_temp; \
@@ -251,7 +251,7 @@ void bigint_mod_exp_sample ( const bigint_element_t *base0,
251251
DBG_HDA ( 0, &value_temp, sizeof ( value_temp ) ); \
252252
bigint_done ( &value_temp, result_raw, sizeof ( result_raw ) ); \
253253
\
254-
ok ( memcmp ( result_raw, expected_raw, \
254+
ok ( memcmp ( (const void *)result_raw, expected_raw, \
255255
sizeof ( result_raw ) ) == 0 ); \
256256
} while ( 0 )
257257

0 commit comments

Comments
 (0)