File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 24
24
# :
25
25
# : [dependencies.xde]
26
26
# : job = "opte-xde"
27
+ # ;
28
+ # : [dependencies.opteadm]
29
+ # : job = "opteadm"
27
30
28
31
set -o errexit
29
32
set -o pipefail
@@ -48,9 +51,11 @@ header "move artifacts for packaging"
48
51
# Copy in just-built artifacts
49
52
DBG_SRC=target/x86_64-illumos/debug
50
53
DBG_LINK_SRC=target/i686-unknown-illumos/debug
54
+ DBG_ADM_SRC=target/debug
51
55
52
56
REL_SRC=target/x86_64-illumos/release
53
57
REL_LINK_SRC=target/i686-unknown-illumos/release
58
+ REL_ADM_SRC=target/release
54
59
55
60
mkdir -p $REL_SRC
56
61
cp /input/xde/work/release/xde $REL_SRC
@@ -62,6 +67,11 @@ cp /input/xde/work/release/xde_link.so $REL_LINK_SRC/libxde_link.so
62
67
mkdir -p $DBG_LINK_SRC
63
68
cp /input/xde/work/debug/xde_link.dbg.so $DBG_LINK_SRC /libxde_link.so
64
69
70
+ mkdir -p $REL_ADM_SRC
71
+ cp /input/opteadm/work/release/opteadm $REL_ADM_SRC
72
+ mkdir -p $DBG_ADM_SRC
73
+ cp /input/opteadm/work/debug/opteadm $DBG_ADM_SRC
74
+
65
75
header " package opte"
66
76
cargo xtask package --skip-build
67
77
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ cp ../target/i686-unknown-illumos/release/libxde_link.so proto/usr/lib/devfsadm/
20
20
21
21
if [ -z ${RELEASE_ONLY+x} ]; then
22
22
cp ../target/debug/opteadm proto/opt/oxide/opte/bin/opteadm.dbg
23
- cp ../target/x86_64-illumos/debug/xde.dbg proto/kernel/drv/amd64/xde.dbg
23
+ cp ../target/x86_64-illumos/debug/xde proto/kernel/drv/amd64/xde.dbg
24
24
INC_DEBUG=" "
25
25
else
26
26
INC_DEBUG=" #"
You can’t perform that action at this time.
0 commit comments