mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
569 B

  1. # special adaptions for the epia target
  2. echo_status "Customizing for LiveCD Target ..."
  3. [ -e $confdir/$pkg.conf ] && . $confdir/$pkg.conf
  4. extract_squashfspatch() {
  5. my_ver=`echo ${vanilla_ver} | sed -e 's,^\(2\.[46]\.[0-9]*\)\(\..*\)$,\1,'`
  6. [ "${my_ver:0:3}" == "2.6" ] && my_ver=2.6.15 || my_ver=2.4.32
  7. tar --use-compress-program=bzip2 -xOf $base/download/mirror/s/squashfs3.0.tar.bz2 \
  8. squashfs3.0/linux-${my_ver}/squashfs3.0-patch > $archdir/squashfs3.0.patch
  9. }
  10. hook_add prepatch 1 extract_squashfspatch
  11. var_append patchfiles " " "$archdir/squashfs3.0.patch"