diff options
author | 2006-06-19 20:43:38 +0000 | |
---|---|---|
committer | 2006-06-19 20:43:38 +0000 | |
commit | c71a23f8c9f65e384c1ff04979728d654ae3f95b (patch) | |
tree | a1f0beed3927ed730c5921a75682b8e4c32cfebf /sys-boot/silo/files | |
parent | Stable on x86, bug #134960. (diff) | |
download | gentoo-2-c71a23f8c9f65e384c1ff04979728d654ae3f95b.tar.gz gentoo-2-c71a23f8c9f65e384c1ff04979728d654ae3f95b.tar.bz2 gentoo-2-c71a23f8c9f65e384c1ff04979728d654ae3f95b.zip |
Revbump with the iso patch, hopefully fixes CD issues
(Portage version: 2.1)
Diffstat (limited to 'sys-boot/silo/files')
-rw-r--r-- | sys-boot/silo/files/digest-silo-1.4.12-r1 | 3 | ||||
-rw-r--r-- | sys-boot/silo/files/silo-1.4.12-iso.patch | 35 |
2 files changed, 38 insertions, 0 deletions
diff --git a/sys-boot/silo/files/digest-silo-1.4.12-r1 b/sys-boot/silo/files/digest-silo-1.4.12-r1 new file mode 100644 index 000000000000..8204879f40ac --- /dev/null +++ b/sys-boot/silo/files/digest-silo-1.4.12-r1 @@ -0,0 +1,3 @@ +MD5 15e77558c57cae19a790fc100783d8f3 silo-1.4.12.tar.gz 168839 +RMD160 68ec1291630c7d1e58f6d52f31529c226fa982b0 silo-1.4.12.tar.gz 168839 +SHA256 232d23a18236a71bff3c9fe0d081a7bbb5913056a4637496782401b0ed5bdf60 silo-1.4.12.tar.gz 168839 diff --git a/sys-boot/silo/files/silo-1.4.12-iso.patch b/sys-boot/silo/files/silo-1.4.12-iso.patch new file mode 100644 index 000000000000..3dc8d7b86f65 --- /dev/null +++ b/sys-boot/silo/files/silo-1.4.12-iso.patch @@ -0,0 +1,35 @@ +--- first-isofs/isofs.c.~1~ 2006-06-18 19:05:53.000000000 -0700 ++++ first-isofs/isofs.c 2006-06-18 19:06:08.000000000 -0700 +@@ -101,6 +101,23 @@ + return 0; + } + ++static void cd_fini(void) ++{ ++ switch (prom_vers) { ++ case PROM_V0: ++ romvec->pv_v0devops.v0_devclose(fd); ++ break; ++ ++ case PROM_V2: ++ case PROM_V3: ++ romvec->pv_v2devops.v2_dev_close(fd); ++ break; ++ ++ case PROM_P1275: ++ p1275_cmd("close", 1, fd); ++ break; ++ }; ++} + + static int cd_read_block(unsigned long long offset, int size, void *data) + { +@@ -445,6 +462,8 @@ + sinfo->conf_part = 1; + strcpy(sinfo->conf_file, silo_conf); + ++ cd_fini(); ++ + prom_putchar(sinfo->id); + + return dest; |