diff options
Diffstat (limited to 'scripts/build/source_debian')
-rwxr-xr-x | scripts/build/source_debian | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/build/source_debian b/scripts/build/source_debian index 9b3b63483..321ed1b4a 100755 --- a/scripts/build/source_debian +++ b/scripts/build/source_debian @@ -52,8 +52,15 @@ fi # Download sources Chroot chroot "dpkg --get-selections" | awk '{ print $1 }' > source-selection.txt +echo "${LB_BOOTLOADERS}" | \ +while IFS="," read -r BOOTLOADER +do + cat >> source-selection.txt << EOF + ${BOOTLOADER} +EOF +done + cat >> source-selection.txt << EOF -${LB_BOOTLOADER} live-build EOF |