#!/bin/sh set -e DIR_NAME="lliurex-postconfig" POST_CONFIG_DIR="/cdrom/$DIR_NAME" TARGET_DIR="/tmp/$DIR_NAME" [ -d "$POST_CONFIG_DIR" ] || exit 0 IMAGE_NAME="$(llxcfg-bootvar imagename |sed -e 's%\..*$%%')" if [ "$IMAGE_NAME" ] ; then ALT_CONFIG_DIR="$POST_CONFIG_DIR/$IMAGE_NAME" if [ -d "$ALT_CONFIG_DIR" ] ; then POST_CONFIG_DIR="$ALT_CONFIG_DIR" fi fi PKG_LIST=$(find "$POST_CONFIG_DIR" -maxdepth 1 -xtype f -printf "%P ") [ "$PKG_LIST" ] || exit 0 # lliurexcmd="llxcfg-bootvar imagename | sed -e 's%\..*$%%'" cp -a "$POST_CONFIG_DIR" /target/tmp chroot /target sh -c "cd $TARGET_DIR; dpkg -i $PKG_LIST" >/dev/null 2>&1 || true rm -fr "/target${TARGET_DIR}" exit 0