Skip to content
This repository was archived by the owner on May 11, 2026. It is now read-only.

Commit 21d2ab5

Browse files
committed
v3.0.2
1 parent 800ab23 commit 21d2ab5

3 files changed

Lines changed: 20 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
212212
### Known Problem
213213
- Missing instructions of how to build the boot.wim, boot.sdi and BCD from Microsoft ADK
214214

215+
## [3.0.2] - 2022-12-09
216+
### Changed
217+
- Fixed missing ESP IP Address IPXE Menu
218+
- Fixed missing build output path in the ESP DinD context
219+
220+
### Known Problem
221+
- Missing instructions of how to build the boot.wim, boot.sdi and BCD from Microsoft ADK
222+
215223

216224
[1.5.1]: https://github.com/intel/Edge-Software-Provisioner/compare/v1.5...v1.5.1
217225
[1.6.0]: https://github.com/intel/Edge-Software-Provisioner/compare/v1.5.1...v1.6
@@ -229,3 +237,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
229237
[2.5.4]: https://github.com/intel/Edge-Software-Provisioner/compare/v2.5.3...v2.5.4
230238
[3.0.0]: https://github.com/intel/Edge-Software-Provisioner/compare/v2.5.4...v3.0
231239
[3.0.1]: https://github.com/intel/Edge-Software-Provisioner/compare/v3.0...v3.0.1
240+
[3.0.2]: https://github.com/intel/Edge-Software-Provisioner/compare/v3.0.1...v3.0.2

scripts/fileutils.sh

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,14 @@ processBuild() {
441441

442442
local message=" Running Build process, this could take a very long time. In another terminal run 'docker logs ${container_name} -f' to watch progress."
443443
run "${message}" \
444-
"docker run -d --rm --privileged --name build-docker ${DOCKER_RUN_ARGS} -v $(pwd)/data/tmp/build:/var/run -v $(pwd)/data/lib/docker:/var/lib/docker docker:20.10.17-dind && \
444+
"docker run -d --rm --privileged --name build-docker ${DOCKER_RUN_ARGS} \
445+
-v $(pwd)/data/tmp/build:/var/run \
446+
-v $(pwd)/data/lib/docker:/var/lib/docker \
447+
${BASE_BIND} \
448+
-v ${WEB_PROFILE}/${profile_name}/build:/opt/build \
449+
-v ${WEB_FILES}/${profile_name}/build:/opt/output:shared \
450+
-v ${EMBEDDED_FILES}/${profile_name}:/opt/embedded \
451+
docker:20.10.17-dind && \
445452
sleep 7 && \
446453
echo 'Waiting for Docker'; \
447454
if ! docker -H unix:///$(pwd)/data/tmp/build/docker.sock ps > /dev/null ; then

scripts/pxemenuutils.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ updateIpxeMenu() {
6060
if [ -f "${WEB_ROOT}/tmp_menu.ipxe" ]; then
6161
mv "${WEB_ROOT}/tmp_menu.ipxe" "${WEB_ROOT}/menu.ipxe"
6262
fi
63+
if [ -f "${WEB_ROOT}/tmp_menu.ipxe.modified" ]; then
64+
mv "${WEB_ROOT}/tmp_menu.ipxe.modified" "${WEB_ROOT}/menu.ipxe"
65+
fi
6366
}
6467

6568
# The usage for this is a little strange.

0 commit comments

Comments
 (0)