Blame view

kernel/linux-imx6_3.14.28/make.sh 1.89 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
  #!/bin/sh
  
  DIR_NAME=$(basename $(realpath .))
  
  build_path="../output-${DIR_NAME}"
  module_install="../out"
  firmware_install="../out"
  
  if [ -z "${CP_DIR}" ]
  then
6f95b1269   larche   = Fusing SD 제작 추가...
11
      CP_DIR="../../release /tftpboot/${FA_PRODUCT} /nfs/${FA_PRODUCT}"
6b13f685e   김민수   BSP 최초 추가
12
13
14
  fi
  
  image_filename="arch/arm/boot/uImage"
5a693527a   장형기   kernel dtb 수정
15
  dtb_filename="arch/arm/boot/dts/imx6s-prime-oven.dtb"
6b13f685e   김민수   BSP 최초 추가
16
17
  
  image_target_filename="uImage"
5a693527a   장형기   kernel dtb 수정
18
  dtb_target_filename="imx6s-prime-oven.dtb"
6b13f685e   김민수   BSP 최초 추가
19
20
21
22
23
24
25
26
27
28
29
30
31
  
  if [ -f .config ]; then
  	echo ".....mrproper"
  	make mrproper
  fi
  
  if [ ! -d $build_path ]; then
  	mkdir $build_path
  	#chmod 777 $build_path
  fi
  
  
  if [ ! -f $build_path/.config ]; then
5a693527a   장형기   kernel dtb 수정
32
  	echo ".....imx6s prime oven defconfig"
6b13f685e   김민수   BSP 최초 추가
33
  	ARCH=arm make arm=ARM O=$build_path distclean 
5a693527a   장형기   kernel dtb 수정
34
  	ARCH=arm make arm=ARM O=$build_path imx6s_prime_oven_defconfig
6b13f685e   김민수   BSP 최초 추가
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
  fi
  
  
  if [ "$1" = "" ]; then
  	ARCH=arm make arm=ARM O=$build_path uImage LOADADDR=0x10008000
  	ARCH=arm make arm=ARM O=$build_path dtbs
  else
  	ARCH=arm make arm=ARM O=$build_path $1 $2 $3
  	ARCH=arm make arm=ARM O=$build_path dtbs
  fi
  
  if [ "$1" = "dtb" ]; then
  	ARCH=arm make arm=ARM O=$build_path dtbs
  fi
  
  
  # build kernel modules
  if [ "$1" = "modules" ] ; then
  	ARCH=arm INSTALL_MOD_PATH=$module_install   make arm=ARM O=$build_path modules
  	ARCH=arm INSTALL_MOD_PATH=$module_install   make arm=ARM O=$build_path modules_install
  	ARCH=arm INSTALL_MOD_PATH=$firmware_install make arm=ARM O=$build_path firmware_install
  fi
  
  if [ -f $build_path/$image_filename ]; then
      for DEST_DIR in ${CP_DIR}
      do
          mkdir -p ${DEST_DIR}
  
          echo "copy from image $build_path/$image_filename to ${DEST_DIR}/$image_target_filename"
          cp  $build_path/$image_filename ${DEST_DIR}/$image_target_filename
      done
  fi
  
  if [ -f $build_path/$dtb_filename ]; then
      for DEST_DIR in ${CP_DIR}
      do
          mkdir -p ${DEST_DIR}
  
          echo "copy from dtb $build_path/$dtb_filename to ${DEST_DIR}/$dtb_target_filename"
          cp  $build_path/$dtb_filename ${DEST_DIR}/$dtb_target_filename
      done
  fi