Fork of the vendor (Boundary Devices) u-boot for Reform 2, with minor tweaks. The goal is to migrate to mainstream u-boot or barebox ASAP. The main impediment so far is the 4GB RAM config.
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.
|
- #!/bin/bash
- # syntax ./boundary_savedefconfig "commit message" [boards]
- #Separate files by board and commit changes after "savedefconfig"
-
- commit_msg=$1;
- if [ -z $2 ] ; then
- boards=`ls -d board/boundary/* | sed 's.board/boundary/..'`;
- else
- boards=$2;
- fi
-
- numboards=0;
- numsuccess=0;
- numfailures=0;
- skipped=0;
- for board in ${boards} ; do
- update_cnt=0;
- target="";
- defconfigs="";
- hfile="";
- if [ -e board/boundary/${board}/Kconfig ] ; then
- target=`grep '^if TARGET_' board/boundary/${board}/Kconfig | sed 's.if ..'`;
- echo board=${board} target=${target};
- hfile=`grep -A1 SYS_CONFIG_NAME board/boundary/${board}/Kconfig | grep default | sed 's.default "..' | sed 's."..' | sed 's/[ \x09]*//'`;
- defconfigs=`git grep -w CONFIG_${target} configs/ | sed 's.configs/..'| sed 's/_defconfig:.*$//'`;
- fi
- for defconfig in ${defconfigs} ; do
- make ${defconfig}_defconfig;
- make savedefconfig;
- cp defconfig configs/${defconfig}_defconfig;
- echo updated ${defconfig}_defconfig;
- git update-index configs/${defconfig}_defconfig;
- update_cnt=`expr $update_cnt + 1`;
- done
- if [ x${hfile} == x ] ; then
- echo hfile=${hfile} board=${board} target=${target}
- else
- git update-index include/configs/${hfile}.h
- git update-index board/boundary/${board}/*.c
- git update-index board/boundary/${board}/*
- git update-index arch/arm/mach-imx/mx6/Kconfig
- echo "${board}: ${update_cnt} defconfigs updated";
- numsuccess=`expr $numsuccess + 1`;
- git c -m"${board}: ${commit_msg}";
- numboards=`expr $numboards + 1`;
- fi
- done
- echo -e "\n\ninsert for ${numboards} boards. ${numsuccess} succeeded and ${numfailures} failed, ${skipped} skipped";
|