More Makefile cleanups, otherwise mainly noticeable are the netfilter fix
[davej-history.git] / arch / ppc / treeboot / irSect.c
blob7f4c7f6abe9d1a3c21905d6718c8e546ee3b3905
1 /*
3 * Copyright (c) 1999 Grant Erickson <grant@lcse.umn.edu>
5 * Module name: irSect.c
7 * Description:
8 * Defines variables to hold the absolute starting address and size
9 * of the Linux kernel "image" and the initial RAM disk "initrd"
10 * sections within the boot loader.
14 #include "irSect.h"
18 * The order of globals below must not change. If more globals are added,
19 * you must change the script 'mkirimg' accordingly.
23 /*
24 * irSectStart must be at beginning of file
26 unsigned int irSectStart = 0xdeadbeaf;
28 unsigned int imageSect_start = 0;
29 unsigned int imageSect_size = 0;
30 unsigned int initrdSect_start = 0;
31 unsigned int initrdSect_size = 0;
33 /*
34 * irSectEnd must be at end of file
36 unsigned int irSectEnd = 0xdeadbeaf;