Skip to content

Commit 5ceaf0f

Browse files
committed
Add op-build script
The current build instructions rely on sourcing op-build-env into the user's shell. But that assumes the user's shell is bash or sh. There's also no reason to pollute the user's shell with op-build related environment variables etc. So add an op-build script, which performs the same function and doesn't depend on what the user's shell is and is self contained. It just uses op-build-env, which is unchanged, so should have no impact on CI or other existing workflows. Update the build instructions to refer to it. Signed-off-by: Michael Ellerman <[email protected]>
1 parent ded8975 commit 5ceaf0f

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ To build an image for a Palmetto system:
2929
```
3030
git clone --recursive [email protected]:open-power/op-build.git
3131
cd op-build
32-
. op-build-env
33-
op-build palmetto_defconfig && op-build
32+
./op-build palmetto_defconfig && ./op-build
3433
```
3534

3635
There are also default configurations for other platforms in

op-build

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash
2+
3+
script_base="$(realpath $(dirname $0))"
4+
cd $script_base
5+
6+
. op-build-env
7+
8+
op-build $@

0 commit comments

Comments
 (0)