Moving firmware symlink creation to the end of binary_debian-installer in order to ensure to take only the latest packages into account that get into the image, regardless if they come from the archive or are localy included.

This commit is contained in:
Daniel Baumann 2012-05-31 11:37:22 +02:00
parent 5e91eadadc
commit dc6b3d90da
1 changed files with 17 additions and 17 deletions

View File

@ -508,23 +508,6 @@ then
done
fi
# Symlink firmware packages to /firmware
if [ -n "${DI_FIRMWARE_PACKAGES}" ]
then
mkdir -p binary/firmware
cd binary/firmware
for _PACKAGE in ${DI_FIRMWARE_PACKAGES}
do
for _FILE in $(find ../pool -name "${_PACKAGE}_*.deb")
do
ln -s ${_FILE} ./
done
done
cd "${OLDPWD}"
fi
if [ "${LB_DEBIAN_INSTALLER}" != "live" ]
then
# Including base debian packages
@ -581,6 +564,23 @@ then
Download_file binary/dists/${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}/${_ARCHIVE_AREA}/binary-${LB_ARCHITECTURES}/Release "${LB_PARENT_MIRROR_CHROOT}"/dists/"${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}"/${_ARCHIVE_AREA}/binary-"${LB_ARCHITECTURES}"/Release
done
# Symlink firmware packages to /firmware
if [ -n "${DI_FIRMWARE_PACKAGES}" ]
then
mkdir -p binary/firmware
cd binary/firmware
for _PACKAGE in ${DI_FIRMWARE_PACKAGES}
do
for _FILE in $(find ../pool -name "${_PACKAGE}_*.deb")
do
ln -s ${_FILE} ./
done
done
cd "${OLDPWD}"
fi
# Udeb handling
mkdir binary.udeb
cd binary.udeb