aboutsummaryrefslogtreecommitdiffstats
path: root/patches/opnfv-fuel/0021-Build-bootstrap-image-for-arm64.patch
blob: 42218ad1ed791ca0d2111a8575ff4852b0c23ff5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
From: Stanislaw Kardach <stanislaw.kardach@caviumnetworks.com>
Date: Thu, 3 Mar 2016 19:04:07 +0100
Subject: [PATCH] Build bootstrap image for arm64

For now the arch is hardcoded for simplicity. We should detect this
but how? If we're multi-arch then one bootstrap image should be built
per supported arch. This requires Fuel refactoring.
---
 build/bootstrap_admin_node.sh.patch | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/build/bootstrap_admin_node.sh.patch b/build/bootstrap_admin_node.sh.patch
index aeef3f7..c66b497 100644
--- a/build/bootstrap_admin_node.sh.patch
+++ b/build/bootstrap_admin_node.sh.patch
@@ -53,6 +53,23 @@
   # Enable iptables
   systemctl enable iptables.service
 ***************
+*** 484,490 ****
+          local ret=1
+          echo ${bs_progress_message} >&2
+          set_ui_bootstrap_error "${bs_progress_message}" >&2
+!         if fuel-bootstrap -v --debug build --activate >>"$bs_build_log" 2>&1; then
+            ret=0
+            fuel notify --topic "done" --send "${bs_done_message}"
+          else
+--- 484,490 ----
+          local ret=1
+          echo ${bs_progress_message} >&2
+          set_ui_bootstrap_error "${bs_progress_message}" >&2
+!         if fuel-bootstrap -v --debug build --target_arch arm64 --activate >>"$bs_build_log" 2>&1; then
+            ret=0
+            fuel notify --topic "done" --send "${bs_done_message}"
+          else
+***************
 *** 529,534 ****
 --- 541,556 ----