Annotation of qemu/roms/SLOF/board-js2x/slof/Makefile, revision 1.1.1.3

1.1       root        1: # *****************************************************************************
                      2: # * Copyright (c) 2004, 2008 IBM Corporation
                      3: # * All rights reserved.
                      4: # * This program and the accompanying materials
                      5: # * are made available under the terms of the BSD License
                      6: # * which accompanies this distribution, and is available at
                      7: # * http://www.opensource.org/licenses/bsd-license.php
                      8: # *
                      9: # * Contributors:
                     10: # *     IBM Corporation - initial implementation
                     11: # ****************************************************************************/
                     12: 
                     13: 
                     14: include ../Makefile.dirs
                     15: 
                     16: include $(TOPBRDDIR)/config
                     17: include $(TOPCMNDIR)/make.rules
                     18: 
                     19: 
                     20: all: Makefile.dep OF.ffs paflof $(SLOFCMNDIR)/xvect.bin
                     21: 
                     22: CPPFLAGS = -I$(LIBCMNDIR)/libbootmsg -I$(LIBCMNDIR)/libnvram
1.1.1.2   root       23: SLOF_LIBS = \
                     24:        $(LIBCMNDIR)/libbootmsg.a \
                     25:        $(LIBCMNDIR)/libelf.a \
                     26:        $(LIBCMNDIR)/libnvram.a
1.1       root       27: BOARD_SLOF_IN = \
                     28:        $(LIBCMNDIR)/libbootmsg/bootmsg.in \
1.1.1.2   root       29:        $(LIBCMNDIR)/libelf/libelf.in \
1.1       root       30:        $(LIBCMNDIR)/libbases/libbases.in  \
1.1.1.3 ! root       31:        $(LIBCMNDIR)/libnvram/libnvram.in \
        !            32:        $(LIBCMNDIR)/libnativeio/nativeio.in
1.1       root       33: BOARD_SLOF_CODE = $(BOARD_SLOF_IN:%.in=%.code)
                     34: 
                     35: include $(SLOFCMNDIR)/Makefile.inc
                     36: 
                     37: FPPINCLUDES = -I. -I$(SLOFCMNDIR)/fs -I$(SLOFCMNDIR)
                     38: 
                     39: USB_FFS_FILES = \
                     40:        $(SLOFCMNDIR)/fs/devices/pci-class_0c.fs \
                     41:        $(SLOFCMNDIR)/fs/usb/usb-ohci.fs \
                     42:        $(SLOFCMNDIR)/fs/usb/usb-support.fs \
                     43:        $(SLOFCMNDIR)/fs/usb/usb-hub.fs \
                     44:        $(SLOFCMNDIR)/fs/usb/usb-enumerate.fs \
                     45:        $(SLOFCMNDIR)/fs/usb/usb-storage.fs \
                     46:        $(SLOFCMNDIR)/fs/usb/usb-storage-support.fs \
                     47:        $(SLOFCMNDIR)/fs/usb/usb-storage-wrapper.fs \
                     48:        $(SLOFCMNDIR)/fs/usb/usb-keyboard.fs \
                     49:        $(SLOFCMNDIR)/fs/usb/usb-kbd-device-support.fs \
                     50:        $(SLOFCMNDIR)/fs/usb/usb-mouse.fs \
                     51:        $(SLOFCMNDIR)/fs/scsi-support.fs
                     52: 
                     53: 
                     54: 
                     55: # Files that should go into the ROM fs (and so have to be listed in OF.ffs):
                     56: OF_FFS_FILES = \
                     57:        $(SLOFBRDDIR)/u4-mem.fs \
                     58:        $(SLOFBRDDIR)/attu.fs \
                     59:        $(SLOFBRDDIR)/cpu.fs \
                     60:        $(SLOFBRDDIR)/ioapic.fs \
                     61:        $(SLOFBRDDIR)/pci-bridge_1022_7460.fs \
                     62:        $(SLOFBRDDIR)/pci-device_1014_028c.fs \
                     63:        $(SLOFBRDDIR)/pci-device_1014_02bd.fs \
                     64:        $(SLOFBRDDIR)/pci-device_1022_7468.fs \
                     65:        $(SLOFBRDDIR)/pci-device_1022_7469.fs \
                     66:        $(SLOFBRDDIR)/pci-device_1022_7451.fs \
                     67:        $(SLOFBRDDIR)/pci-class_03.fs \
                     68:        $(SLOFBRDDIR)/vga-display.fs \
                     69:        $(SLOFBRDDIR)/freq.fs \
                     70:        $(SLOFBRDDIR)/pci-device_1002_515e.fs \
                     71:        $(SLOFBRDDIR)/citrine.fs \
                     72:        $(SLOFBRDDIR)/citrine-disk.fs \
                     73:        $(SLOFBRDDIR)/sio.fs \
                     74:        $(SLOFBRDDIR)/tpm.fs \
                     75:        $(SLOFBRDDIR)/ipmi-kcs.fs \
                     76:        $(SLOFCMNDIR)/fs/ide.fs \
                     77:        $(SLOFCMNDIR)/fs/fbuffer.fs \
                     78:        $(SLOFCMNDIR)/fs/generic-disk.fs \
                     79:        $(SLOFCMNDIR)/fs/pci-device.fs \
                     80:        $(SLOFCMNDIR)/fs/pci-bridge.fs \
                     81:        $(SLOFCMNDIR)/fs/pci-properties.fs \
                     82:        $(SLOFCMNDIR)/fs/pci-config-bridge.fs \
                     83:        $(SLOFCMNDIR)/fs/update_flash.fs \
                     84:        $(SLOFCMNDIR)/fs/xmodem.fs \
                     85:        $(SLOFCMNDIR)/fs/devices/pci-device_10de_0141.fs \
                     86:        $(SLOFCMNDIR)/fs/devices/pci-class_02.fs \
1.1.1.3 ! root       87:        $(SLOFBRDDIR)/default-font.bin
1.1       root       88: 
                     89: # Uncomment the following line to enable the USB code:
                     90: OF_FFS_FILES += $(USB_FFS_FILES)
                     91: 
                     92: OF_FFS_FILES := $(OF_FFS_FILES:%.fs=%.fsi)
                     93: 
                     94: OF.ffs: Makefile $(SLOFCMNDIR)/Makefile.inc $(OF_FFS_FILES)
                     95:        $(MAKE) create_OF_ffs
                     96: 
                     97: # Rules for cleaning up:
                     98: .PHONY: clean_here clean distclean
                     99: 
                    100: clean_here:
                    101:        rm -f *.o OF.fsi OF.ffs
                    102: 
                    103: clean: clean_here clean_slof
                    104: 
                    105: distclean: clean_here distclean_slof

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.