From 5b56c9c187a8a37596dd3437f4542da8e00f5f37 Mon Sep 17 00:00:00 2001 From: Robert Nelson Date: Wed, 3 Oct 2012 13:02:34 -0500 Subject: [PATCH] log: monitor what was installed Signed-off-by: Robert Nelson --- scripts/debian-finish.sh | 2 ++ scripts/ubuntu-finish.sh | 2 ++ 2 files changed, 4 insertions(+) diff --git a/scripts/debian-finish.sh b/scripts/debian-finish.sh index 0e26ae6..58809ba 100644 --- a/scripts/debian-finish.sh +++ b/scripts/debian-finish.sh @@ -1,5 +1,7 @@ #!/bin/bash +ls -lh /boot/uboot/* >/boot/uboot/backup/file_list.log + #Find Target Partition and FileSystem if [ -f /etc/mtab ] ; then FINAL_PART=$(mount | grep /dev/ | grep -v devpts | grep " / " | awk '{print $1}') diff --git a/scripts/ubuntu-finish.sh b/scripts/ubuntu-finish.sh index b96240a..1995e18 100644 --- a/scripts/ubuntu-finish.sh +++ b/scripts/ubuntu-finish.sh @@ -1,5 +1,7 @@ #!/bin/bash +ls -lh /boot/uboot/* >/boot/uboot/backup/file_list.log + #Find Target Partition and FileSystem if [ -f /etc/mtab ] ; then FINAL_PART=$(mount | grep /dev/ | grep -v devpts | grep " / " | awk '{print $1}')