Skip to content

Instantly share code, notes, and snippets.

@kennyyu
kennyyu / .gitignore
Created February 2, 2014 04:38
cs161 gitignore file
build/*
build
defs.mk
kern/compile/*
*.swp
.depend
# ignore eclipse metadata files
.cproject
.project
@kennyyu
kennyyu / sys161.conf
Created January 22, 2014 23:53
2013 sys161.conf for ASST1
# Sample sys161.conf file
#
# This file tells System/161 what devices to use.
#
# There are 32 LAMEbus slots on the System/161 motherboard. There may
# be only one bus controller card, and it must go in slot 31. Other
# than that, you can put in whatever devices you want.
#
# The syntax is simple: one slot per line; the slot number goes first,
# then the expansion card name, then any arguments. Some of the devices
@kennyyu
kennyyu / ASST1
Created January 22, 2014 23:16
2013 ASST1 config
# Kernel config file for assignment 1.
include conf/conf.kern # get definitions of available options
debug # Compile with debug info.
#
# Device drivers for hardware.
#
device lamebus0 # System/161 main bus
@kennyyu
kennyyu / edit.sh
Created September 20, 2013 15:56
edit N random files
#!/bin/bash
if [ -z "$1" ]
then
echo "usage: $0 N"
exit 1
fi
N=$1
files=$(find /home/passifist/linux-2.4.29 | grep "\.[ch]")