4509e6f826
This element enables creation of Ubuntu deploy ramdisk and user images which could be used to deploy the HP Proliant Servers with Dynamic Smart Array Controllers. Without this driver the disk with the Dynamic Smart Array Controller is not visible to the ramdisk. Closes bug: #1492803 Change-Id: Ibb3b298cd379cd7333279484df6ae30e9d7f6aaa
12 lines
197 B
Bash
Executable File
12 lines
197 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "${DIB_DEBUG_TRACE:-0}" -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
# This is required for HPDSA driver to be included in the
|
|
# ramdisk of the image.
|
|
update-initramfs -u
|