A small layout enhancement in the Linux kernel build script.
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jan 04 14:25:24 2009 +0000 (2009-01-04)
changeset 11184567b323353e
parent 1117 f70e9b41339b
child 1119 4e7562023f3e
A small layout enhancement in the Linux kernel build script.

/trunk/scripts/build/kernel/linux.sh | 3 2 1 0 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
scripts/build/kernel/linux.sh
     1.1 --- a/scripts/build/kernel/linux.sh	Sun Jan 04 14:21:00 2009 +0000
     1.2 +++ b/scripts/build/kernel/linux.sh	Sun Jan 04 14:25:24 2009 +0000
     1.3 @@ -10,7 +10,8 @@
     1.4  # Download the kernel
     1.5  do_kernel_get() {
     1.6      if [ "${CT_KERNEL_LINUX_USE_CUSTOM_DIR}" != "y" ]; then
     1.7 -        CT_GetFile "linux-${CT_KERNEL_VERSION}" {ftp,http}://ftp.{de.,eu.,}kernel.org/pub/linux/kernel/v2.{6{,/testing},4,2}
     1.8 +        CT_GetFile "linux-${CT_KERNEL_VERSION}" \
     1.9 +                   {ftp,http}://ftp.{de.,eu.,}kernel.org/pub/linux/kernel/v2.{6{,/testing},4,2}
    1.10      fi
    1.11      return 0
    1.12  }