summaryrefslogblamecommitdiffstats
path: root/tasks/buildtools.task.sh
blob: da8544a49b40b3d36968b9eaa55a1c94c9be2f0f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                                                                                                                                   
buildtools_package_dependencies="update"

buildtools() {
  local ME=buildtools

  echo -n "  Install build-essentials "
  chroot-aptinstall build-essential | tee - $DEBUG.$ME | awk '{printf "."}' 2>&1 
  echo "done"

  echo -n "  Install git, svn "
  chroot-aptinstall git-core subversion | tee -a - $DEBUG.$ME | awk '{printf "."}' 2>&1 
  echo "done"

  echo -n "  Install kernelsources and firmware packages "
  chroot-aptinstall firmware-iwlwifi firmware-linux firmware-linux-free firmware-linux-nonfree linux-image-2.6.32-trunk-686-bigmem | tee -a - $DEBUG.$ME | awk '{printf "."}' 2>&1 
  echo "done"
}