2014-01-20 12:00:21 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Copyright 2014 Hewlett-Packard Development Company, L.P.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
# not use this file except in compliance with the License. You may obtain
|
|
|
|
# a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
|
|
|
|
2014-09-04 04:56:29 +00:00
|
|
|
if [ ${DIB_DEBUG_TRACE:-0} -gt 0 ]; then
|
|
|
|
set -x
|
|
|
|
fi
|
2014-04-03 02:24:15 +00:00
|
|
|
set -eu
|
|
|
|
set -o pipefail
|
2014-01-20 12:00:21 +00:00
|
|
|
|
|
|
|
[ -n "$TARGET_ROOT" ]
|
|
|
|
|
2014-03-12 07:23:00 +00:00
|
|
|
source $_LIB/img-functions
|
2014-01-20 12:00:21 +00:00
|
|
|
|
2014-03-12 07:23:00 +00:00
|
|
|
# Dig up the initrd and kernel to use.
|
|
|
|
select_boot_kernel_initrd $TARGET_ROOT
|
2014-01-20 12:00:21 +00:00
|
|
|
sudo cp $BOOTDIR/$KERNEL ${IMAGE_NAME}.vmlinuz
|
|
|
|
sudo cp $BOOTDIR/$RAMDISK ${IMAGE_NAME}.initrd
|
|
|
|
sudo chmod a+r ${IMAGE_NAME}.vmlinuz
|
|
|
|
sudo chmod a+r ${IMAGE_NAME}.initrd
|
2015-04-10 08:58:19 +00:00
|
|
|
|
|
|
|
if [ -f $TARGET_ROOT/dib-signed-kernel-version ] ; then
|
|
|
|
echo "Removing $TARGET_ROOT/dib-signed-kernel-version"
|
|
|
|
sudo rm -f $TARGET_ROOT/dib-signed-kernel-version
|
|
|
|
fi
|