|
|
1.1 ! root 1: ALL= htboot mtboot tmboot tsboot hpboot hkboot upboot noboot noboot \ ! 2: httoggle mttoggle tmtoggle tstoggle ! 3: ! 4: all: ${ALL} ! 5: ! 6: htboot: htboot.s ! 7: as htboot.s ! 8: nm -u a.out ! 9: strip a.out ! 10: dd if=a.out of=b.out bs=32 skip=1 ! 11: dd if=b.out of=htboot conv=sync ! 12: ! 13: mtboot: mtboot.s ! 14: as mtboot.s ! 15: nm -u a.out ! 16: strip a.out ! 17: dd if=a.out of=b.out bs=32 skip=1 ! 18: dd if=b.out of=mtboot conv=sync ! 19: ! 20: tmboot: tmboot.s ! 21: as tmboot.s ! 22: nm -u a.out ! 23: strip a.out ! 24: dd if=a.out of=b.out bs=32 skip=1 ! 25: dd if=b.out of=tmboot conv=sync ! 26: ! 27: tsboot: tsboot.s ! 28: as tsboot.s ! 29: nm -u a.out ! 30: strip a.out ! 31: dd if=a.out of=b.out bs=32 skip=1 ! 32: dd if=b.out of=tsboot conv=sync ! 33: ! 34: hpboot: hpboot.s ! 35: as hpboot.s ! 36: nm -u a.out ! 37: strip a.out ! 38: dd if=a.out bs=32 skip=1 of=b.out ! 39: dd if=b.out of=hpboot conv=sync ! 40: ! 41: hkboot: hkboot.s ! 42: as hkboot.s ! 43: nm -u a.out ! 44: strip a.out ! 45: dd if=a.out bs=32 skip=1 of=b.out ! 46: dd if=b.out of=hkboot conv=sync ! 47: ! 48: upboot: upboot.s ! 49: as upboot.s ! 50: nm -u a.out ! 51: strip a.out ! 52: dd if=a.out bs=32 skip=1 of=b.out ! 53: dd if=b.out of=upboot conv=sync ! 54: ! 55: httoggle: httoggle.s ! 56: as httoggle.s ! 57: nm -u a.out ! 58: strip a.out ! 59: dd if=a.out bs=32 skip=1 of=httoggle ! 60: ! 61: mttoggle: mttoggle.s ! 62: as mttoggle.s ! 63: nm -u a.out ! 64: strip a.out ! 65: dd if=a.out bs=32 skip=1 of=mttoggle ! 66: ! 67: tstoggle: tstoggle.s ! 68: as tstoggle.s ! 69: nm -u a.out ! 70: strip a.out ! 71: dd if=a.out bs=32 skip=1 of=tstoggle ! 72: ! 73: tmtoggle: tmtoggle.s ! 74: as tmtoggle.s ! 75: nm -u a.out ! 76: strip a.out ! 77: dd if=a.out bs=32 skip=1 of=tmtoggle ! 78: ! 79: noboot: ! 80: echo | dd of=noboot conv=sync ! 81: ! 82: clean: ! 83: rm -f a.out b.out ${ALL} ! 84: ! 85: install: ! 86: cp *boot /usr/mdec ! 87: rm -f /usr/mdec/mboot ! 88: ln /usr/mdec/htboot /usr/mdec/mboot ! 89: rm -f /usr/mdec/uboot ! 90: ln /usr/mdec/hpboot /usr/mdec/uboot
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.