mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
112 lines
3.6 KiB
Makefile
112 lines
3.6 KiB
Makefile
#
|
|
# \brief Download integrate Linux kernel sources with Genode
|
|
# \author Norman Feske
|
|
# \date 2012-01-28
|
|
|
|
CONTRIB_DIR = contrib
|
|
DOWNLOAD_DIR = download
|
|
VERBOSE ?= @
|
|
ECHO = @echo
|
|
PATCHES := $(shell find patches -name \*.patch)
|
|
|
|
LINUX = linux-3.2.2
|
|
LINUX_TBZ2 = $(LINUX).tar.bz2
|
|
LINUX_URL = http://www.kernel.org/pub/linux/kernel/v3.x/$(LINUX_TBZ2)
|
|
|
|
# Linux utilities
|
|
CONTENT += include/linux/list.h
|
|
CONTENT += $(addprefix include/linux/,pci_ids.h pci_regs.h usb.h hid.h hiddev.h input.h mod_devicetable.h)
|
|
CONTENT += $(addprefix include/linux/byteorder/,generic.h little_endian.h)
|
|
CONTENT += include/linux/swab.h
|
|
CONTENT += $(addprefix include/asm-generic/bitops/,__ffs.h non-atomic.h)
|
|
|
|
# USB core
|
|
CONTENT += drivers/usb/core
|
|
CONTENT += drivers/usb/usb-common.c
|
|
CONTENT_INCLUDE_USB := ch11.h ch9.h ehci_def.h hcd.h input.h otg.h quirks.h storage.h
|
|
CONTENT += $(addprefix include/linux/usb/,$(CONTENT_INCLUDE_USB))
|
|
|
|
# needed by usb/core/devio.c
|
|
CONTENT += include/linux/usbdevice_fs.h include/asm-generic/ioctl.h
|
|
|
|
# USB host-controller driver
|
|
CONTENT_USB_HOST := ehci.h ehci-hcd.c ehci-hub.c ehci-dbg.c ehci-mem.c \
|
|
ehci-omap.c ehci-q.c ehci-pci.c ehci-sched.c ehci-sysfs.c
|
|
CONTENT_USB_HOST += ohci.h ohci-hcd.c ohci-hub.c ohci-dbg.c ohci-mem.c \
|
|
ohci-q.c ohci-pci.c ehci-lpm.c
|
|
CONTENT_USB_HOST += uhci-hcd.h uhci-hcd.c uhci-debug.c uhci-q.c uhci-hub.c \
|
|
uhci-pci.c
|
|
CONTENT_USB_HOST += pci-quirks.h pci-quirks.c xhci-ext-caps.h
|
|
CONTENT += $(addprefix drivers/usb/host/,$(CONTENT_USB_HOST))
|
|
|
|
# USB storage driver
|
|
CONTENT += drivers/usb/storage/
|
|
CONTENT += include/linux/usb_usual.h
|
|
|
|
# SCSI support for storage
|
|
CONTENT += $(addprefix drivers/scsi/,scsi.h scsi.c constants.c scsi_priv.h scsi_logging.h)
|
|
CONTENT += $(addprefix include/scsi/,scsi.h scsi_host.h)
|
|
|
|
# USB hid driver
|
|
CONTENT += drivers/hid/hid-input.c drivers/hid/hid-core.c drivers/hid/hid-ids.h
|
|
CONTENT += drivers/hid/usbhid
|
|
|
|
# needed by USB hid
|
|
CONTENT_INPUT := input.c evdev.c input-compat.h
|
|
CONTENT += $(addprefix drivers/input/,$(CONTENT_INPUT))
|
|
CONTENT += include/linux/input/mt.h
|
|
|
|
|
|
# Panda board
|
|
#CONTENT += drivers/mfd/omap-usb-host.c
|
|
#CONTENT += arch/arm/plat-omap/include/plat/usb.h
|
|
#CONTENT_ARCH = usb-host.c mux.h mux2420.h mux2430.h mux34xx.h mux44xx.h
|
|
#CONTENT += $(addprefix arch/arm/mach-omap2/,$(CONTENT_ARCH))
|
|
#CONTRIB_CONTENT := $(addprefix $(CONTRIB_DIR)/,$(CONTENT))
|
|
#
|
|
#
|
|
# Utility to check if a tool is installed
|
|
#
|
|
check_tool = $(if $(shell which $(1)),,$(error Need to have '$(1)' installed.))
|
|
|
|
$(call check_tool,wget)
|
|
$(call check_tool,patch)
|
|
|
|
#
|
|
# Print help information by default
|
|
#
|
|
help:
|
|
$(ECHO)
|
|
$(ECHO) "Download integrate Linux kernel sources with Genode"
|
|
$(ECHO)
|
|
$(ECHO) "--- available commands ---"
|
|
$(ECHO) "prepare - download and integrate Linux source code"
|
|
$(ECHO) "clean - remove contib sources except downloaded archives"
|
|
$(ECHO) "cleanall - remove contib sources and downloaded archives"
|
|
$(ECHO)
|
|
|
|
prepare: $(CONTRIB_DIR)/.prepared
|
|
|
|
$(CONTRIB_DIR)/.prepared: Makefile
|
|
$(CONTRIB_DIR)/.prepared: $(DOWNLOAD_DIR)/$(LINUX_TBZ2)
|
|
$(ECHO) "extracting source code to '$(CONTRIB_DIR)'"
|
|
$(VERBOSE)tar xfj $< --transform "s/$(LINUX)/$(CONTRIB_DIR)/" $(addprefix $(LINUX)/,$(CONTENT))
|
|
$(VERBOSE)touch $@
|
|
$(ECHO) "applying patches to '$(CONTRIB_DIR)/'"
|
|
$(VERBOSE)for i in $(PATCHES); do patch -d $(CONTRIB_DIR) -p1 < $$i; done
|
|
|
|
|
|
$(DOWNLOAD_DIR):
|
|
$(VERBOSE)mkdir -p $@
|
|
|
|
$(DOWNLOAD_DIR)/$(LINUX_TBZ2): $(DOWNLOAD_DIR)
|
|
$(ECHO) "downloading source code to '$@'"
|
|
$(VERBOSE)cd $(DOWNLOAD_DIR); wget -c $(LINUX_URL)
|
|
$(VERBOSE)touch $@
|
|
|
|
clean:
|
|
$(VERBOSE)rm -rf $(CONTRIB_DIR)
|
|
|
|
cleanall: clean
|
|
$(VERBOSE)rm -rf $(DOWNLOAD_DIR)
|