Blame view

bootloader/u-boot_2015_04/make.sh 694 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
  #!/bin/sh
  
  OUTPUT_DIR="../output-u-boot_2015_04"
  if [ -z "${CP_DIR}" ]
  then
6f95b1269   larche   = Fusing SD 제작 추가...
6
      CP_DIR="../../release /tftpboot/${FA_PRODUCT} /nfs/${FA_PRODUCT}"
6b13f685e   김민수   BSP 최초 추가
7
  fi
2a3257134   김민수   네이밍 정리
8
  defconfig="imx6s_prime_oven_defconfig"
6b13f685e   김민수   BSP 최초 추가
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  image_filename="u-boot.imx"
  target_filename="u-boot.imx"
  
  if [ ! -f ${OUTPUT_DIR}/.config ]; then
  	CROSS_COMPILE=arm-none-eabi- make O=${OUTPUT_DIR} $defconfig
  fi
  
  CROSS_COMPILE=arm-none-eabi- make O=${OUTPUT_DIR} $@
  
  if [ -f $OUTPUT_DIR/$image_filename ]; then
      for DEST_DIR in ${CP_DIR}
      do
          echo "copy from ${OUTPUT_DIR}/${image_filename} to ${DEST_DIR}/$target_filename"
          mkdir -p ${DEST_DIR}/
          cp ${OUTPUT_DIR}/${image_filename} ${DEST_DIR}/${target_filename}
      done
  fi