aboutsummaryrefslogtreecommitdiffstats
path: root/target/Makefile
Commit message (Expand)AuthorAgeFilesLines
* target: do not make target/*/install depend on target/*/compile - removes one...Felix Fietkau2012-06-061-4/+1
* imagebuilder: fix parallel building (closes #11117)Gabor Juhos2012-03-131-1/+4
* Add a target (CONFIG_MAKE_CONFIG) that creates an exportable toolchain. The t...Felix Fietkau2009-11-141-2/+2
* some more build system cleanupFelix Fietkau2008-08-171-1/+0
* large improvement for parallel builds. works without V=99 now and without war...Felix Fietkau2008-06-091-0/+1
* fix a dependency bugFelix Fietkau2007-08-301-5/+3
* only build sdk and imagebuilder at target/install timeFelix Fietkau2007-07-311-2/+2
* next round of cleanup, convert target/ - make -j works now ;)Felix Fietkau2007-07-301-45/+13
* don't run the image prereq check if the image directory does not existFelix Fietkau2007-07-161-1/+1
* Rename 'refresh' to 'update' and make the new 'refresh' actually refresh all ...Felix Fietkau2007-06-041-1/+1
* implement quilt handling for the kernel tree ... and there was much rejoicing!Felix Fietkau2007-06-031-1/+1
* the default_subtargets template was a bad idea, since different makefiles req...Felix Fietkau2007-04-181-1/+2
* use default_subtargets in package/Makefile and target/MakefileFelix Fietkau2007-02-261-11/+1
* clean up a few things in image build makefiles and fix unnecessary grub rebuildsFelix Fietkau2007-02-251-1/+1
* Fix config checks for Image Builder and SDK - only build them when requested....Felix Fietkau2007-01-141-1/+9
* Add initial version of the new Image Builder It's still a bit rough in a few ...Felix Fietkau2007-01-101-6/+8
* move target/utils to tools/firmware-utilsFelix Fietkau2006-12-061-2/+1
* move target/image/platform to target/linux/platform/image platform directorie...Mike Baker2006-11-281-4/+7
* add prereq checks for target/linux/* and target/image/*, check for fdisk for ...Felix Fietkau2006-11-181-0/+4
* leave out the ccache directory when copying the staging dir into the sdk (#843)Felix Fietkau2006-10-141-1/+0
* finally move buildroot-ng to trunkFelix Fietkau2016-03-201-0/+49
>(void); void pcibios_set_cacheline_size(void); int pcibios_enable_resources(struct pci_dev *, int); /* pci-pc.c */ extern int pcibios_last_bus; extern struct pci_bus *pci_root_bus; extern struct pci_ops *pci_root_ops; /* pci-irq.c */ struct irq_info { u8 bus, devfn; /* Bus, device and function */ struct { u8 link; /* IRQ line ID, chipset dependent, 0=not routed */ u16 bitmap; /* Available IRQs */ } __attribute__((packed)) irq[4]; u8 slot; /* Slot number, 0=onboard */ u8 rfu; } __attribute__((packed)); struct irq_routing_table { u32 signature; /* PIRQ_SIGNATURE should be here */ u16 version; /* PIRQ_VERSION */ u16 size; /* Table size in bytes */ u8 rtr_bus, rtr_devfn; /* Where the interrupt router lies */ u16 exclusive_irqs; /* IRQs devoted exclusively to PCI usage */ u16 rtr_vendor, rtr_device; /* Vendor and device ID of interrupt router */ u32 miniport_data; /* Crap */ u8 rfu[11]; u8 checksum; /* Modulo 256 checksum must give zero */ struct irq_info slots[0]; } __attribute__((packed)); extern unsigned int pcibios_irq_mask; void pcibios_irq_init(void); void pcibios_fixup_irqs(void); void pcibios_enable_irq(struct pci_dev *dev);