summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog11
-rwxr-xr-xutils/trimpciids3
2 files changed, 14 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d8ee52406..f23d93cd9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2005-11-16 Jeremy Katz <katzj@redhat.com>
+
+ * utils/trimpciids (f): Make a little bit more failure resistent
+
+ * scripts/mk-images (INITRDMODS): More videoaliases fixage.
+
+ * scripts/buildinstall (BUILDINSTALL): Okay, don't do group info.
+
2005-11-16 Paul Nasrat <pnasrat@redhat.com>
* anaconda.spec: Bump version.
@@ -8,6 +16,9 @@
2005-11-16 Jeremy Katz <katzj@redhat.com>
+ * scripts/buildinstall (BUILDINSTALL): Run createrepo quietly and
+ with the group info.
+
* scripts/mk-images (INITRDMODS): videoaliases changed. no cookie
for notting.
diff --git a/utils/trimpciids b/utils/trimpciids
index dfd5c1e58..1276d755a 100755
--- a/utils/trimpciids
+++ b/utils/trimpciids
@@ -22,6 +22,9 @@ if f:
devices.append( (vend, dev) )
for file in sys.argv[2:]:
+ if not os.path.exists(file):
+ sys.stderr.write("WARNING: non-existent file %s for trimpciids\n" %(file,))
+ continue
f = open(file)
if f:
pcitable = f.readlines()