mirror of https://github.com/dirtbags/moth.git
lots of little fixups, caught up with todo after trail run in ACS
This commit is contained in:
parent
87f0975f44
commit
10718c882c
2
go
2
go
|
@ -10,7 +10,7 @@ case ${1:-$TYPE} in
|
|||
packages='router'
|
||||
;;
|
||||
p2)
|
||||
packages='p2 gs p2steg archaeology '
|
||||
packages='p2 gs archaeology nocode steg js proto'
|
||||
;;
|
||||
p2cli)
|
||||
packages='p2client'
|
||||
|
|
|
@ -148,6 +148,8 @@ main(int argc, char *argv[])
|
|||
closedir(opt);
|
||||
|
||||
printf("</dl>\n");
|
||||
|
||||
printf("<p>New puzzles are unlocked when any team answers the highest-scoring puzzle in a category.</p>");
|
||||
cgi_foot();
|
||||
|
||||
return 0;
|
||||
|
|
|
@ -19,7 +19,7 @@ p2-install: packages/p2/src/modem eris ctfbase
|
|||
$(call COPYTREE, packages/p2/www, $(P2_PKGDIR)/www)
|
||||
|
||||
p2-clean:
|
||||
$(MAKE) -C packages/p2/src
|
||||
$(MAKE) -C packages/p2/src clean
|
||||
|
||||
PACKAGES += p2
|
||||
|
||||
|
|
|
@ -20,6 +20,14 @@
|
|||
</li>
|
||||
</ul>
|
||||
|
||||
<p>
|
||||
Project 2 is a puzzle-based game for individuals or teams.
|
||||
Get started by creating a new team at the console, then start
|
||||
working on the <a href="puzzles.html">puzzles</a>.
|
||||
When you have solved a puzzle, enter the answer at the console
|
||||
to change your ranking on the <a href="scoreboard.html">scoreboard</a>.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
This event would not be possible without the help of many people.
|
||||
<a href="credits.html">Thank you, people</a>.
|
||||
|
|
|
@ -7,6 +7,7 @@ p2client-install:
|
|||
|
||||
$(call COPYTREE, packages/p2client/service, $(P2CLIENT_PKGDIR)/service)
|
||||
loadkeys -b packages/p2client/dumbterm.map > $(P2CLIENT_PKGDIR)/dumbterm.kmap
|
||||
cp packages/p2client/lite-16.fnt $(P2CLIENT_PKGDIR)
|
||||
|
||||
p2client-clean:
|
||||
rm -rf $(P2CLIENT_PKGDIR)
|
||||
|
|
|
@ -2,8 +2,9 @@
|
|||
|
||||
exec 2>&1
|
||||
|
||||
ip link set dev eth0 up
|
||||
|
||||
if grep 'debug' /proc/cmdline; then
|
||||
ip link set dev eth0 up
|
||||
ip addr add dev eth0 10.0.0.110/24
|
||||
exec sleep 8d
|
||||
else
|
||||
|
|
|
@ -3,16 +3,24 @@
|
|||
# Try hard to look like a serial terminal
|
||||
reset
|
||||
|
||||
# Maybe this is some startup code
|
||||
sleep 0.4
|
||||
# Simulate a green-phosphor CRT
|
||||
printf '\033]P0111122\033]P788ff00\033]Pfff8800'
|
||||
|
||||
# Print some bullshit to confuse people
|
||||
printf 'S0:1200N81 '
|
||||
|
||||
# Simulate a green-phosphor CRT
|
||||
printf '\033]P0111122\033]P788ff00\033]Pfff8800'
|
||||
# Some diagnostic codes
|
||||
printf '['
|
||||
|
||||
# More bullshit
|
||||
printf '[68]\n'
|
||||
ip addr list dev eth0 | awk '
|
||||
(/inet /) { printf("A"); }
|
||||
(/NO-CARRIER/) { printf("l"); }
|
||||
(/state UP/) { printf("C"); }
|
||||
'
|
||||
|
||||
printf ']\n'
|
||||
|
||||
# Pretend to run initialization routines
|
||||
sleep 3
|
||||
|
||||
exec nc 10.0.0.2 5555 2>/dev/null
|
||||
|
|
|
@ -2,23 +2,34 @@
|
|||
|
||||
exec 2>&1
|
||||
|
||||
# Turn off default gettys
|
||||
sv d tty1 tty2 tty3 tty4
|
||||
# Turn off conflicting getty
|
||||
sv d tty1
|
||||
|
||||
if ! sv s tty1 | grep down; then
|
||||
exit
|
||||
fi
|
||||
|
||||
# Don't let C-A-F2 switch away
|
||||
deallocvt
|
||||
# Cool font
|
||||
setfont -C /dev/tty1 /opt/p2client/lite-16.fnt
|
||||
|
||||
# Disable magic sysrq key
|
||||
echo 0 > /proc/sys/kernel/sysrq
|
||||
|
||||
# Turn off screen blanking
|
||||
setterm -blank 0 -powersave off -powerdown 0
|
||||
if ! grep -q debug /proc/cmdline; then
|
||||
# Don't let C-A-F2 switch away
|
||||
sv d tty2 tty3 tty4
|
||||
deallocvt
|
||||
|
||||
# Make this like a VT52; including disabling ctrl-alt-del
|
||||
loadkmap < /opt/p2client/dumbterm.kmap
|
||||
# Disable magic sysrq key
|
||||
echo 0 > /proc/sys/kernel/sysrq
|
||||
|
||||
# Turn off screen blanking
|
||||
setterm -blank 0 -powersave off -powerdown 0
|
||||
|
||||
# Make this like a VT52; including disabling ctrl-alt-del
|
||||
loadkmap < /opt/p2client/dumbterm.kmap
|
||||
|
||||
# Disable console logging
|
||||
echo 1 4 1 4 > /proc/sys/kernel/printk
|
||||
fi
|
||||
|
||||
# Run the console!
|
||||
exec getty -n -l ./p2connect 38400 tty1
|
||||
|
|
Loading…
Reference in New Issue