/usr/share/dell/scripts/oem_config.sh is in dell-recovery 1.31.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | #!/bin/sh
#
# <oem_config.sh>
#
# Setup the early env before oem config or cleanup after
#
# Copyright 2010-2011 Dell Inc.
# Mario Limonciello <Mario_Limonciello@Dell.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
# vim:ts=8:sw=8:et:tw=0
#
# $1 -> early/late
#
# for early:
# $2 -> /cdrom or /isodevice
if [ "$1" = "early" ]; then
DEVICE=$(python3 << EOF
from Dell.recovery_common import find_partitions
print(find_partitions()[1])
EOF
)
mkdir -p $2
mount $DEVICE $2
if [ -f "$2/factory/grubenv" ]; then
grub-editenv $2/factory/grubenv unset install_finished
fi
mount -o remount,ro $2
if [ -f "$2/ubuntu.iso" ]; then
mount -o loop $2/ubuntu.iso /cdrom
fi
/usr/share/dell/scripts/pool.sh
elif [ "$1" = "late" ]; then
if [ -d "/isodevice" ]; then
umount /isodevice
rm -rf /isodevice
fi
rm -f /etc/apt/sources.list.d/dell.list
else
echo "Unknown arguments $1 $2"
fi
|