diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2017-03-21 22:32:13 +1100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2017-03-24 12:29:20 +1100 |
commit | 352b096851f773d842c2e7ef909034ca1696a594 (patch) | |
tree | f73a1aba357853e8fecfdaf2113da5e25be9c7e9 /external | |
parent | fc74d779c2187545f46a5d71bdbbdab9c546a74a (diff) | |
download | blackbird-skiboot-352b096851f773d842c2e7ef909034ca1696a594.tar.gz blackbird-skiboot-352b096851f773d842c2e7ef909034ca1696a594.zip |
mambo: No need to explicitly look for env(SKIBOOT)
We don't need to explicitly check for the SKIBOOT environment variable,
the existing code that does:
mconfig boot_image SKIBOOT ../../skiboot.lid
Will do that for us, using the content of SKIBOOT if it's set, otherwise
falling back to ../../skiboot.lid.
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'external')
-rw-r--r-- | external/mambo/skiboot.tcl | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/external/mambo/skiboot.tcl b/external/mambo/skiboot.tcl index 8ed0257d..35a8e37b 100644 --- a/external/mambo/skiboot.tcl +++ b/external/mambo/skiboot.tcl @@ -18,9 +18,6 @@ mconfig stop_on_ill MAMBO_STOP_ON_ILL false # Location of application binary to load mconfig boot_image SKIBOOT ../../skiboot.lid -if { [info exists env(SKIBOOT)] } { - mconfig boot_image SKIBOOT env(SKIBOOT) -} # Boot: Memory location to load boot_image, for binary or vmlinux mconfig boot_load MAMBO_BOOT_LOAD 0x30000000 |