2017-05-26 20:26:25 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
source_deviceinfo()
|
|
|
|
{
|
|
|
|
if [ ! -e "/etc/deviceinfo" ]; then
|
|
|
|
echo "ERROR: Missing /etc/deviceinfo!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
. /etc/deviceinfo
|
|
|
|
if [ -z "${deviceinfo_modules_initfs}" ]; then
|
|
|
|
echo "WARNING: deviceinfo_modules_initfs is empty!"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
parse_commandline()
|
|
|
|
{
|
|
|
|
if [ "$1" != "-o" ]; then
|
|
|
|
echo "postmarketos-mkinitfs"
|
2017-07-28 18:51:21 +00:00
|
|
|
echo "usage: $(basename "$0") -o OUTFILE KERNELVERSION"
|
2017-05-26 20:26:25 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
outfile=$2
|
2017-07-28 18:51:21 +00:00
|
|
|
outfile_extra=$2-extra
|
2017-05-26 20:26:25 +00:00
|
|
|
kernel=$3
|
|
|
|
modules_path="/lib/modules/${kernel}"
|
|
|
|
}
|
|
|
|
|
|
|
|
create_folders()
|
|
|
|
{
|
|
|
|
for dir in /bin /sbin /usr/bin /usr/sbin /proc /sys /dev /tmp /lib \
|
2017-08-09 21:54:01 +00:00
|
|
|
/boot /sysroot /etc; do
|
2017-05-26 20:26:25 +00:00
|
|
|
mkdir -p "$tmpdir$dir"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
get_modules_by_globs()
|
|
|
|
{
|
|
|
|
globs="
|
|
|
|
# base.modules
|
|
|
|
kernel/drivers/block/loop.ko
|
|
|
|
kernel/fs/overlayfs
|
|
|
|
|
|
|
|
# cryptsetup.modules
|
|
|
|
kernel/crypto/*
|
|
|
|
kernel/arch/*/crypto/*
|
|
|
|
kernel/drivers/md/dm-crypt.ko
|
|
|
|
|
|
|
|
# required for modprobe
|
|
|
|
modules.*
|
|
|
|
"
|
|
|
|
|
|
|
|
for glob in $globs; do
|
|
|
|
for file in /lib/modules/$kernel/$glob; do
|
|
|
|
if [ -d "$file" ]; then
|
2017-07-28 18:51:21 +00:00
|
|
|
find "$file" -type f
|
2017-05-26 20:26:25 +00:00
|
|
|
elif [ -e "$file" ]; then
|
2017-07-28 18:51:21 +00:00
|
|
|
echo "$file"
|
2017-05-26 20:26:25 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# NOTE: This does not work with busybox' modprobe
|
|
|
|
# That's why postmarketos-mkinitfs depends on kmod
|
|
|
|
get_modules_by_name()
|
|
|
|
{
|
|
|
|
MODULES="drm_kms_helper drm dm_crypt ext4 \
|
|
|
|
${deviceinfo_modules_initfs}"
|
|
|
|
modprobe \
|
|
|
|
-a \
|
|
|
|
--dry-run \
|
|
|
|
--show-depends \
|
|
|
|
--set-version="$kernel" \
|
|
|
|
$MODULES \
|
|
|
|
| sort -u \
|
|
|
|
| cut -d ' ' -f 2
|
|
|
|
}
|
|
|
|
|
|
|
|
get_modules()
|
|
|
|
{
|
|
|
|
get_modules_by_globs
|
|
|
|
get_modules_by_name
|
|
|
|
}
|
|
|
|
|
|
|
|
# Get the paths to all binaries and their dependencies
|
2017-10-22 21:00:39 +00:00
|
|
|
BINARIES="/bin/busybox /bin/busybox-extras /usr/sbin/telnetd /sbin/kpartx"
|
|
|
|
BINARIES_EXTRA="
|
|
|
|
/sbin/cryptsetup
|
|
|
|
/sbin/dmsetup
|
|
|
|
/usr/sbin/parted
|
|
|
|
/sbin/e2fsck
|
|
|
|
/usr/sbin/resize2fs
|
|
|
|
/usr/bin/osk-sdl
|
|
|
|
/usr/lib/libGL.so.1
|
|
|
|
/usr/lib/ts/*
|
|
|
|
/usr/lib/libts*
|
|
|
|
$(find /usr/lib/directfb-* -name '*.so')
|
|
|
|
/lib/libz.so.1
|
|
|
|
"
|
2017-05-26 20:26:25 +00:00
|
|
|
get_binaries()
|
|
|
|
{
|
2017-09-18 19:17:30 +00:00
|
|
|
if [ "${deviceinfo_msm_refresher}" == "true" ]; then
|
|
|
|
BINARIES="${BINARIES} /usr/sbin/msm-fb-refresher"
|
|
|
|
fi
|
2017-05-26 20:26:25 +00:00
|
|
|
lddtree -l $BINARIES | sort -u
|
|
|
|
}
|
|
|
|
|
2017-10-14 18:10:12 +00:00
|
|
|
# Collect non-binary files for osk-sdl and its dependencies
|
|
|
|
# This gets called as $(get_osk_config), so the exit code can be checked/handled.
|
|
|
|
get_osk_config()
|
|
|
|
{
|
|
|
|
fontpath=$(awk '/^keyboard-font/{print $3}' /etc/osk.conf)
|
|
|
|
if [ ! -f $fontpath ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
ret="
|
|
|
|
/etc/osk.conf
|
|
|
|
/etc/ts.conf
|
|
|
|
/etc/pointercal
|
|
|
|
/etc/fb.modes
|
|
|
|
$fontpath
|
|
|
|
"
|
|
|
|
echo "${ret}"
|
|
|
|
}
|
|
|
|
|
2017-07-28 18:51:21 +00:00
|
|
|
get_binaries_extra()
|
|
|
|
{
|
|
|
|
tmp1=$(mktemp /tmp/mkinitfs.XXXXXX)
|
|
|
|
get_binaries > "$tmp1"
|
|
|
|
tmp2=$(mktemp /tmp/mkinitfs.XXXXXX)
|
|
|
|
lddtree -l $BINARIES_EXTRA | sort -u > "$tmp2"
|
|
|
|
ret=$(comm -13 "$tmp1" "$tmp2")
|
|
|
|
rm "$tmp1" "$tmp2"
|
|
|
|
echo "${ret}"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Copy files to the destination specified
|
2017-05-26 20:26:25 +00:00
|
|
|
# FIXME: this is a performance bottleneck
|
|
|
|
# $1: files
|
2017-07-28 18:51:21 +00:00
|
|
|
# $2: destination
|
2017-05-26 20:26:25 +00:00
|
|
|
copy_files()
|
|
|
|
{
|
|
|
|
for file in $1; do
|
2017-08-06 13:12:43 +00:00
|
|
|
[ -e "$file" ] || continue
|
2017-09-20 18:36:22 +00:00
|
|
|
cp -a --parents "$file" "$2"
|
2017-05-26 20:26:25 +00:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
create_device_nodes()
|
|
|
|
{
|
2017-07-28 18:51:21 +00:00
|
|
|
mknod -m 666 "$tmpdir/dev/null" c 1 3
|
|
|
|
mknod -m 644 "$tmpdir/dev/random" c 1 8
|
|
|
|
mknod -m 644 "$tmpdir/dev/urandom" c 1 9
|
2017-05-26 20:26:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
replace_init_variables()
|
|
|
|
{
|
2017-07-28 18:51:21 +00:00
|
|
|
sed -i "s:@INITRAMFS_EXTRA@:${outfile_extra}:g" "$tmpdir/init"
|
2017-05-26 20:26:25 +00:00
|
|
|
}
|
|
|
|
|
2017-07-28 18:51:21 +00:00
|
|
|
# Create a cpio image of the specified folder
|
|
|
|
# $1: folder
|
|
|
|
# $2: outfile
|
2017-05-26 20:26:25 +00:00
|
|
|
create_cpio_image()
|
|
|
|
{
|
2017-07-28 18:51:21 +00:00
|
|
|
cd "$1"
|
2017-05-26 20:26:25 +00:00
|
|
|
find . -print0 \
|
|
|
|
| cpio --quiet -o -H newc \
|
2017-07-28 18:51:21 +00:00
|
|
|
| gzip -1 > "$2"
|
2017-05-26 20:26:25 +00:00
|
|
|
}
|
|
|
|
|
2017-06-29 17:51:17 +00:00
|
|
|
# Legacy u-boot images
|
2017-07-25 20:08:35 +00:00
|
|
|
create_uboot_files()
|
2017-06-29 17:51:17 +00:00
|
|
|
{
|
|
|
|
[ "${deviceinfo_generate_legacy_uboot_initfs}" == "true" ] || return
|
|
|
|
echo "==> initramfs: creating uInitrd"
|
|
|
|
mkimage -A arm -T ramdisk -C none -n uInitrd -d "$outfile" "${outfile/initramfs-/uInitrd-}"
|
2017-07-25 20:08:35 +00:00
|
|
|
|
|
|
|
echo "==> kernel: creating uImage"
|
|
|
|
kernelfile="${outfile/initramfs-/vmlinuz-}"
|
|
|
|
if [ -n "${deviceinfo_dtb}" ]; then
|
|
|
|
kernelfile="${kernelfile}-dtb"
|
|
|
|
fi
|
|
|
|
mkimage -A arm -O linux -T kernel -C none -a 80008000 -e 80008000 -n postmarketos -d $kernelfile "${outfile/initramfs-/uImage-}"
|
2017-06-29 17:51:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Android devices
|
|
|
|
create_bootimg()
|
|
|
|
{
|
|
|
|
[ "${deviceinfo_generate_bootimg}" == "true" ] || return
|
|
|
|
echo "==> initramfs: creating boot.img"
|
2017-07-19 20:44:12 +00:00
|
|
|
_base="${deviceinfo_flash_offset_base}"
|
|
|
|
[ -z "$_base" ] && _base="0x10000000"
|
2017-07-25 20:08:35 +00:00
|
|
|
|
|
|
|
kernelfile="${outfile/initramfs-/vmlinuz-}"
|
|
|
|
if [ -n "${deviceinfo_dtb}" ]; then
|
|
|
|
kernelfile="${kernelfile}-dtb"
|
|
|
|
fi
|
2017-06-29 17:51:17 +00:00
|
|
|
mkbootimg \
|
2017-07-25 20:08:35 +00:00
|
|
|
--kernel "${kernelfile}" \
|
2017-06-29 17:51:17 +00:00
|
|
|
--ramdisk "$outfile" \
|
2017-07-19 20:44:12 +00:00
|
|
|
--base "${_base}" \
|
2017-06-29 17:51:17 +00:00
|
|
|
--second_offset "${deviceinfo_flash_offset_second}" \
|
|
|
|
--cmdline "${deviceinfo_kernel_cmdline}" \
|
|
|
|
--kernel_offset "${deviceinfo_flash_offset_kernel}" \
|
|
|
|
--ramdisk_offset "${deviceinfo_flash_offset_ramdisk}" \
|
|
|
|
--tags_offset "${deviceinfo_flash_offset_tags}" \
|
|
|
|
--pagesize "${deviceinfo_flash_pagesize}" \
|
2017-08-09 20:57:52 +00:00
|
|
|
${deviceinfo_bootimg_qcdt:+ --dt /boot/dt.img} \
|
2017-06-29 17:51:17 +00:00
|
|
|
-o "${outfile/initramfs-/boot.img-}"
|
|
|
|
}
|
|
|
|
|
2017-07-23 12:50:40 +00:00
|
|
|
# Create splash screens
|
2017-09-24 14:24:56 +00:00
|
|
|
# $1: "false" to skip clearing the cache if one image is missing
|
2017-07-23 12:50:40 +00:00
|
|
|
generate_splash_screens()
|
|
|
|
{
|
2017-09-24 14:24:56 +00:00
|
|
|
[ "$1" != "false" ] && clean="true" || clean="false"
|
|
|
|
|
|
|
|
splash_version=$(apk info -v | grep postmarketos-splash)
|
2017-10-02 22:39:09 +00:00
|
|
|
if [ -z "$splash_version" ]; then
|
|
|
|
# If package is not installed yet, use latest version from repository
|
|
|
|
splash_version=$(apk search -x postmarketos-splash)
|
|
|
|
fi
|
2017-09-24 14:24:56 +00:00
|
|
|
splash_config="/etc/postmarketos/splash.ini"
|
|
|
|
splash_config_hash=$(md5sum "$splash_config")
|
|
|
|
splash_width=${deviceinfo_screen_width:-720}
|
|
|
|
splash_height=${deviceinfo_screen_height:-1280}
|
|
|
|
splash_cache_dir="/var/cache/postmarketos-splashes"
|
|
|
|
|
|
|
|
# Overwrite $@ to easily iterate over the splash screens. Format:
|
|
|
|
# $1: splash_name
|
|
|
|
# $2: text
|
|
|
|
# $3: arguments
|
2017-10-14 18:10:12 +00:00
|
|
|
set -- "splash-loading" "Loading..." "--center" \
|
2017-09-24 14:24:56 +00:00
|
|
|
"splash-noboot" "boot partition not found\\nhttps://postmarketos.org/troubleshooting" "--center" \
|
|
|
|
"splash-noinitramfsextra" "initramfs-extra not found\\nhttps://postmarketos.org/troubleshooting" "--center" \
|
|
|
|
"splash-nosystem" "system partition not found\\nhttps://postmarketos.org/troubleshooting" "--center" \
|
|
|
|
"splash-mounterror" "unable to mount root partition\\nhttps://postmarketos.org/troubleshooting" "--center"
|
|
|
|
|
|
|
|
# Ensure cache folder exists
|
|
|
|
mkdir -p "${splash_cache_dir}"
|
|
|
|
|
|
|
|
# Loop through the splash screens definitions
|
|
|
|
while [ $# -gt 2 ]
|
|
|
|
do
|
|
|
|
splash_name=$1
|
|
|
|
splash_text=$2
|
|
|
|
splash_args=$3
|
2017-10-14 18:10:12 +00:00
|
|
|
|
2017-09-24 14:24:56 +00:00
|
|
|
# Compute hash using the following values concatenated:
|
|
|
|
# - postmarketos-splash package version
|
|
|
|
# - splash config file
|
|
|
|
# - device resolution
|
|
|
|
# - text to be displayed
|
|
|
|
splash_hash_string="${splash_version}#${splash_config_hash}#${splash_width}#${splash_height}#${splash_text}"
|
|
|
|
splash_hash="$(echo "${splash_hash_string}" | md5sum | awk '{ print $1 }')"
|
|
|
|
|
|
|
|
if ! [ -e "${splash_cache_dir}/${splash_name}_${splash_hash}.ppm.gz" ]; then
|
|
|
|
|
|
|
|
# If a cached file is missing, clear the whole cache and start again skipping this step
|
|
|
|
if [ "$clean" = "true" ]; then
|
|
|
|
rm -f ${splash_cache_dir}/*
|
|
|
|
generate_splash_screens false
|
|
|
|
return
|
|
|
|
fi
|
2017-07-28 18:51:21 +00:00
|
|
|
|
2017-09-24 14:24:56 +00:00
|
|
|
# shellcheck disable=SC2086
|
|
|
|
pmos-make-splash --text="${splash_text}" $splash_args --config "${splash_config}" \
|
|
|
|
"$splash_width" "$splash_height" "${splash_cache_dir}/${splash_name}_${splash_hash}.ppm"
|
|
|
|
gzip "${splash_cache_dir}/${splash_name}_${splash_hash}.ppm"
|
|
|
|
fi
|
2017-07-23 12:50:40 +00:00
|
|
|
|
2017-09-24 14:24:56 +00:00
|
|
|
cp "${splash_cache_dir}/${splash_name}_${splash_hash}.ppm.gz" "${tmpdir}/${splash_name}.ppm.gz"
|
2017-08-03 16:01:00 +00:00
|
|
|
|
2017-09-24 14:24:56 +00:00
|
|
|
shift 3 # move to the next 3 arguments
|
|
|
|
done
|
2017-07-23 12:50:40 +00:00
|
|
|
}
|
2017-06-29 17:51:17 +00:00
|
|
|
|
2017-07-25 20:08:35 +00:00
|
|
|
# Append the correct device tree to the linux image file
|
|
|
|
append_device_tree()
|
|
|
|
{
|
|
|
|
[ -n "${deviceinfo_dtb}" ] || return
|
|
|
|
dtb="/usr/share/dtb/${deviceinfo_dtb}.dtb"
|
|
|
|
kernel="${outfile/initramfs-/vmlinuz-}"
|
|
|
|
echo "==> kernel: appending device-tree ${deviceinfo_dtb}"
|
|
|
|
cat $kernel $dtb > "${kernel}-dtb"
|
|
|
|
}
|
|
|
|
|
2017-10-22 21:00:39 +00:00
|
|
|
# Create the initramfs-extra archive
|
|
|
|
# $1: outfile
|
|
|
|
generate_initramfs_extra()
|
|
|
|
{
|
|
|
|
echo "==> initramfs: creating $1"
|
|
|
|
|
|
|
|
osk_conf="$(get_osk_config)"
|
|
|
|
if [ $? -eq 1 ]; then
|
|
|
|
echo "ERROR: Font specified in /etc/osk.conf does not exist!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Ensure cache folder exists
|
|
|
|
mkinitfs_cache_dir="/var/cache/postmarketos-mkinitfs"
|
|
|
|
mkdir -p "$mkinitfs_cache_dir"
|
|
|
|
|
|
|
|
# Generate cache output filename (initfs_extra_cache) by hashing all input files
|
|
|
|
initfs_extra_files=$(echo "$BINARIES_EXTRA$osk_conf" | xargs -0 -I{} sh -c 'ls $1 2>/dev/null' -- {} | sort -u)
|
|
|
|
initfs_extra_files_hashes="$(md5sum $initfs_extra_files)"
|
|
|
|
initfs_extra_hash="$(echo "$initfs_extra_files_hashes" | md5sum | awk '{ print $1 }')"
|
|
|
|
initfs_extra_cache="$mkinitfs_cache_dir/$(basename $1)_${initfs_extra_hash}"
|
|
|
|
|
|
|
|
if ! [ -e "$initfs_extra_cache" ]; then
|
|
|
|
# If a cached file is missing, clear the whole cache and create it
|
|
|
|
rm -f ${mkinitfs_cache_dir}/*
|
|
|
|
|
|
|
|
# Set up initramfs-extra in temp folder
|
|
|
|
tmpdir_extra=$(mktemp -d /tmp/mkinitfs.XXXXXX)
|
|
|
|
mkdir -p "$tmpdir_extra"
|
|
|
|
copy_files "$(get_binaries_extra)" "$tmpdir_extra"
|
|
|
|
copy_files "$osk_conf" "$tmpdir_extra"
|
|
|
|
create_cpio_image "$tmpdir_extra" "$initfs_extra_cache"
|
|
|
|
rm -rf "$tmpdir_extra"
|
|
|
|
fi
|
|
|
|
|
|
|
|
cp "$initfs_extra_cache" "$1"
|
|
|
|
}
|
|
|
|
|
2017-05-26 20:26:25 +00:00
|
|
|
# initialize
|
|
|
|
source_deviceinfo
|
2017-07-28 18:51:21 +00:00
|
|
|
parse_commandline "$1" "$2" "$3"
|
2017-05-26 20:26:25 +00:00
|
|
|
echo "==> initramfs: creating $outfile"
|
|
|
|
tmpdir=$(mktemp -d /tmp/mkinitfs.XXXXXX)
|
|
|
|
|
2017-09-18 19:17:30 +00:00
|
|
|
if [ "${deviceinfo_msm_refresher}" == "true" ] && ! [ -e /usr/sbin/msm-fb-refresher ]; then
|
|
|
|
echo "ERROR: Please add msm-fb-refresher as dependency to your device package,"
|
|
|
|
echo "or set msm_refresher to false in your deviceinfo!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2017-05-26 20:26:25 +00:00
|
|
|
# set up initfs in temp folder
|
|
|
|
create_folders
|
2017-07-28 18:51:21 +00:00
|
|
|
copy_files "$(get_modules)" "$tmpdir"
|
|
|
|
copy_files "$(get_binaries)" "$tmpdir"
|
2017-09-20 18:36:22 +00:00
|
|
|
copy_files "/etc/deviceinfo" "$tmpdir"
|
2017-07-28 18:51:21 +00:00
|
|
|
copy_files "/etc/postmarketos-mkinitfs/hooks/*.sh" "$tmpdir"
|
2017-05-26 20:26:25 +00:00
|
|
|
create_device_nodes
|
|
|
|
ln -s "/bin/busybox" "$tmpdir/bin/sh"
|
|
|
|
install -Dm755 "/usr/share/postmarketos-mkinitfs/init.sh.in" \
|
|
|
|
"$tmpdir/init"
|
|
|
|
install -Dm755 "/usr/share/postmarketos-mkinitfs/init_functions.sh" \
|
|
|
|
"$tmpdir/init_functions.sh"
|
|
|
|
|
|
|
|
# finish up
|
2017-07-23 12:50:40 +00:00
|
|
|
generate_splash_screens
|
2017-05-26 20:26:25 +00:00
|
|
|
replace_init_variables
|
2017-07-28 18:51:21 +00:00
|
|
|
create_cpio_image "$tmpdir" "$outfile"
|
2017-07-25 20:08:35 +00:00
|
|
|
append_device_tree
|
|
|
|
create_uboot_files
|
2017-06-29 17:51:17 +00:00
|
|
|
create_bootimg
|
2017-06-09 23:41:01 +00:00
|
|
|
|
2017-05-26 20:26:25 +00:00
|
|
|
rm -rf "$tmpdir"
|
2017-07-28 18:51:21 +00:00
|
|
|
|
2017-10-22 21:00:39 +00:00
|
|
|
generate_initramfs_extra "$outfile_extra"
|
2017-07-28 18:51:21 +00:00
|
|
|
|
2017-05-26 20:26:25 +00:00
|
|
|
exit 0
|