summaryrefslogtreecommitdiff
path: root/recipes-core/initscripts/initscripts-1.0/umountfs
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-core/initscripts/initscripts-1.0/umountfs')
-rw-r--r--recipes-core/initscripts/initscripts-1.0/umountfs85
1 files changed, 75 insertions, 10 deletions
diff --git a/recipes-core/initscripts/initscripts-1.0/umountfs b/recipes-core/initscripts/initscripts-1.0/umountfs
index c3d217e..14aa441 100644
--- a/recipes-core/initscripts/initscripts-1.0/umountfs
+++ b/recipes-core/initscripts/initscripts-1.0/umountfs
@@ -43,6 +43,19 @@ umount_all() {
mount -o remount,ro /
}
+get_file_size() {
+ local file_size=0
+ local regex='[^[:space:]]+[[:space:]]+[^[:space:]]+[[:space:]]+([^[:space:]]+)'
+ local upgrade_file="$1"
+ local file="$2"
+ if [[ $(tar -tvf ${upgrade_file} ${file}) =~ ${regex} ]] ; then
+ file_size=${BASH_REMATCH[1]}
+ echo "${file_size}"
+ else
+ echo "0"
+ fi
+}
+
blink_leds() {
led_dir=/sys/class/leds
# blink all programmable LEDs except status
@@ -232,7 +245,11 @@ flash_upgrade() {
cd /var/volatile
# rootfs should always be flashed last, so always keep it last here
- local files=(${bootstrap_file} ${uboot_file} ${config_file} ${oem_file} ${kernel_file} ${rootfs_file} ${install_file})
+ if ((factory_up == 0)) ; then
+ local files=(${bootstrap_file} ${uboot_file} ${config_file} ${oem_file} ${kernel_file} ${rootfs_file} ${install_file})
+ else
+ local files=(${bootstrap_file} ${uboot_file} ${config_file} ${oem_file} ${kernel_file} ${rootfs_file})
+ fi
local devs=(${bootstrap_mtd} ${uboot_mtd} ${config_mtd} ${oem_mtd} ${kernel_mtd} ${rootfs_mtd})
if [ -f "${upgrade_file}" ]; then
@@ -295,9 +312,9 @@ flash_upgrade() {
fi
if ! cp ${reboot_cmd} ${flash_dir}/upgrade-reboot ; then
- echo "Aborting upgrade. Failed \"cp ${reboot_cmd} ${flash_dir}/upgrade-reboot\""
- err_leds
- return 1
+ echo "Aborting upgrade. Failed \"cp ${reboot_cmd} ${flash_dir}/upgrade-reboot\""
+ err_leds
+ return 1
fi
if ! cp ${nandwrite_cmd} ${flash_dir}/nandwrite.static ; then
echo "Aborting upgrade. Failed \"cp ${nandwrite_cmd} ${flash_dir}/nandwrite.static\""
@@ -329,25 +346,60 @@ flash_upgrade() {
sed -i -e "\\|${flash_root}| d" /etc/mtab
umount_all
+ mount -o remount,rw /var/volatile
+ grep volatile /proc/mounts
if [ -f "${upgrade_file}" ]; then
for (( i = 0; i < ${#files[@]}; i++ )); do
local file=${files[i]}
local dev=${devs[i]}
+ echo "Processing file $file"
if tar -t -f ${upgrade_file} | grep -F -q "${file}"; then
if [ "${file}" == "${bootstrap_file}" ] || [ "${file}" == "${uboot_file}" ]; then
- local file_size=$(tar -xO -f ${upgrade_file} ${file} | wc -c)
+ file_size=$(get_file_size "${upgrade_file}" "${file}")
if dd if=${dev} bs=${file_size} count=1 | md5sum -c ${file}.md5; then
echo "Found ${file} in upgrade but it is the same as current. Continuing..."
continue
fi
- fi
+ elif ((factory_up == 1)) ; then # Not AT91Bootstrap or U-Boot.
+ file_size=$(get_file_size "${upgrade_file}" "${file}")
+ if [ "${file}" == "${kernel_file}" ]; then
+ if dd if=${dev} bs=${file_size} count=1 | md5sum -c ${file}.md5; then
+ echo "Found ${file} in upgrade but it is the same as current. Continuing..."
+ continue
+ fi # Matching md5sum
+ fi # kernel_file case
+ fi # factory upgrade
echo "Flashing ${dev} with ${file}..."
flash_erase ${extraopt} -j ${dev} 0 0
tar -xO -f ${upgrade_file} ${file} | ${flash_dir}/nandwrite.static ${extraopt} -p ${dev}
- fi
- done
+ if ((factory_up == 1)) ; then
+ if [[ ${file} == rootfs.jffs2 ]] ; then
+ pwd
+ rm -f ${upgrade_file}
+ echo "Block size is $rootbs, count=$rootcount"
+ dd if=${dev} bs=${rootbs} count=${rootcount} | md5sum -c ${file}.md5
+ result=$?
+ else
+ dd if=${dev} bs=${file_size} count=1 | md5sum -c ${file}.md5
+ result=$?
+ fi
+ if ((result == 0)); then
+ echo "SUCCESS: File ${file} was written successfully"
+ else
+ if [[ ${file} == rootfs.jffs2 ]] ; then
+ echo "dd if=${dev} bs=${rootbs} count=${rootcount} | md5sum"
+ dd if=${dev} bs=${rootbs} count=${rootcount} | md5sum
+ else
+ echo "dd if=${dev} bs=${file_size} count=1 | md5sum -c ${file}.md5"
+ dd if=${dev} bs=${file_size} count=1 | md5sum -c ${file}.md5
+ fi
+ echo "ERROR: File ${file} is bad"
+ fi
+ fi # factory upgrade
+ fi # Found a file in the upgrade package
+ done # Loop through the files in an upgrade package
else
if [ -f ${uboot_solo_file} ]; then
echo "Flashing ${uboot_mtd} (u-boot) with ${uboot_solo_file}..."
@@ -384,9 +436,14 @@ flash_upgrade() {
flash_erase ${extraopt} ${ubootenv1_mtd} 0 0
flash_erase ${extraopt} ${ubootenv2_mtd} 0 0
fi
- echo "Rebooting..."
- ${flash_dir}/upgrade-reboot
+ if ((factory_up == 1)) ; then
+ echo "Finished upgrade. Halting."
+ while : ; do : ; done # Wait forever
+ else
+ echo "Rebooting..."
+ ${flash_dir}/upgrade-reboot
+ fi
# Should not get here normally
echo "upgrade-reboot failed"
@@ -404,6 +461,14 @@ if [[ -f ${wipe_fname} ]] ; then
fi
fi
if [[ -f ${upgrade_fname} ]] ; then
+ read rootbs rootcount < ${upgrade_fname}
+ echo "Root Block Size is $rootbs, rootcount is $rootcount"
+ if [[ -n $rootbs ]] ; then
+ factory_up=1
+ extraopt="-q"
+ else
+ factory_up=0
+ fi
owner=$(stat -c%u "${upgrade_fname}")
if ((${#owner} > 0)) && ((owner == 0)) ; then
flash_upgrade /var/volatile