Deleted Added
sdiff udiff text old ( 8335:9228e00459d4 ) new ( 8770:81354d3836d4 )
full compact
1# -*- mode:python -*-
2
3# Copyright (c) 2006 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

--- 19 unchanged lines hidden (view full) ---

28#
29# Authors: Steve Reinhardt
30
31Import('*')
32
33if env['TARGET_ISA'] == 'no':
34 Return()
35
36Source('linux/linux.cc')
37Source('operatingsystem.cc')
38
39if env['FULL_SYSTEM']:
40 Source('kernel_stats.cc')
41 Source('system_events.cc')
42
43 DebugFlag('DebugPrintf')
44 DebugFlag('Printf')
45
46 Source('linux/events.cc')
47 Source('linux/linux_syscalls.cc')
48 Source('linux/printk.cc')
49
50 if env['TARGET_ISA'] == 'alpha':
51 Source('tru64/dump_mbuf.cc')
52 Source('tru64/printf.cc')
53 Source('tru64/tru64_events.cc')
54 Source('tru64/tru64_syscalls.cc')
55 DebugFlag('BADADDR')