diff options
author | Gustavo Zacarias <gustavoz@gentoo.org> | 2007-01-16 17:50:26 +0000 |
---|---|---|
committer | Gustavo Zacarias <gustavoz@gentoo.org> | 2007-01-16 17:50:26 +0000 |
commit | b1b5bcdfcb1fec84db1f9cd896fda6f4652176db (patch) | |
tree | d52f2c4330b61a9d824d18acb29f900ccaf740ab /sys-boot/silo/files | |
parent | Cleanup (diff) | |
download | historical-b1b5bcdfcb1fec84db1f9cd896fda6f4652176db.tar.gz historical-b1b5bcdfcb1fec84db1f9cd896fda6f4652176db.tar.bz2 historical-b1b5bcdfcb1fec84db1f9cd896fda6f4652176db.zip |
Cleanup
Package-Manager: portage-2.1.1-r2
Diffstat (limited to 'sys-boot/silo/files')
-rw-r--r-- | sys-boot/silo/files/digest-silo-1.4.11-r1 | 1 | ||||
-rw-r--r-- | sys-boot/silo/files/digest-silo-1.4.12 | 3 | ||||
-rw-r--r-- | sys-boot/silo/files/digest-silo-1.4.12-r1 | 3 | ||||
-rw-r--r-- | sys-boot/silo/files/silo-1.4.11-timer.patch | 41 | ||||
-rw-r--r-- | sys-boot/silo/files/silo-1.4.12-iso.patch | 35 |
5 files changed, 0 insertions, 83 deletions
diff --git a/sys-boot/silo/files/digest-silo-1.4.11-r1 b/sys-boot/silo/files/digest-silo-1.4.11-r1 deleted file mode 100644 index c58a59443be7..000000000000 --- a/sys-boot/silo/files/digest-silo-1.4.11-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 c39c000e1c4acce431da37df292670ea silo-1.4.11.tar.gz 178406 diff --git a/sys-boot/silo/files/digest-silo-1.4.12 b/sys-boot/silo/files/digest-silo-1.4.12 deleted file mode 100644 index 8204879f40ac..000000000000 --- a/sys-boot/silo/files/digest-silo-1.4.12 +++ /dev/null @@ -1,3 +0,0 @@ -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/digest-silo-1.4.12-r1 b/sys-boot/silo/files/digest-silo-1.4.12-r1 deleted file mode 100644 index 8204879f40ac..000000000000 --- a/sys-boot/silo/files/digest-silo-1.4.12-r1 +++ /dev/null @@ -1,3 +0,0 @@ -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.11-timer.patch b/sys-boot/silo/files/silo-1.4.11-timer.patch deleted file mode 100644 index 251b43c2d70c..000000000000 --- a/sys-boot/silo/files/silo-1.4.11-timer.patch +++ /dev/null @@ -1,41 +0,0 @@ ---- second/timer.c.~1~ 2006-04-20 21:18:49.000000000 -0700 -+++ second/timer.c 2006-04-20 21:21:19.000000000 -0700 -@@ -40,6 +40,8 @@ - static volatile struct sun4c_timer_info *sun4c_timer; - static unsigned char *addr_to_free = 0; - static int len_to_free; -+static unsigned long long sun4u_tickcmpr; -+static int sun4u_notimer = 0; - static struct mostek48t02 *mregs; - static long clock_frequency; - -@@ -154,6 +156,16 @@ - } - if (!foundcpu || !clock_frequency) - clock_frequency = prom_getint(prom_root_node, "clock-frequency") / 100; -+ if (notimer) { -+ sun4u_notimer = 1; -+ __asm__ __volatile__ ("\t" -+ "rd %%tick_cmpr, %%g1\n\t" -+ "stx %%g1, [%0]\n\t" -+ "mov 1, %%g1\n\t" -+ "sllx %%g1, 63, %%g1\n\t" -+ "wr %%g1, 0, %%tick_cmpr" -+ : : "r" (&sun4u_tickcmpr) : "g1"); -+ } - return 0; - } - -@@ -194,6 +206,12 @@ - - void close_timer () - { -+ if (sun4u_notimer) { -+ __asm__ __volatile__("\t" -+ "ldx [%0], %%g1\n\t" -+ "wr %%g1, 0, %%tick_cmpr" -+ : : "r" (&sun4u_tickcmpr) : "g1"); -+ } - if (addr_to_free) { - if (addr_to_free == (unsigned char *)0xffffffff) - sun4c_unmapio (TICKER_VIRTUAL); diff --git a/sys-boot/silo/files/silo-1.4.12-iso.patch b/sys-boot/silo/files/silo-1.4.12-iso.patch deleted file mode 100644 index 3dc8d7b86f65..000000000000 --- a/sys-boot/silo/files/silo-1.4.12-iso.patch +++ /dev/null @@ -1,35 +0,0 @@ ---- 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; |