/* * symbols-dummy.c: dummy symbol-table definitions for the inital partial * link of the hypervisor image. */ #include #include #ifdef SYMBOLS_ORIGIN const unsigned int symbols_offsets[1]; #else const unsigned long symbols_addresses[1]; #endif const unsigned int symbols_num_syms; const u8 symbols_names[1]; const u8 symbols_token_table[1]; const u16 symbols_token_index[1]; const unsigned int symbols_markers[1]; vcs-git' href='ssh://git@git.panaceas.org/git/openwrt/upstream' title='openwrt/upstream Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
blob: eeb043077469f68eca0e8dafaf703fbfd93016ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# $Id$
#
# Makefile for Real Time Clock driver for WL-HDD
#
# Copyright (C) 2007 Andreas Engel
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version
# 2 of the License, or (at your option) any later version.
#

obj-m := rtc.o

ifeq ($(MAKING_MODULES),1)

-include $(TOPDIR)/Rules.make
endif