Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 40437
b: refs/heads/master
c: 1fbece1
h: refs/heads/master
i:
  40435: f681dca
v: v3
  • Loading branch information
David Brownell authored and Dominik Brodowski committed Oct 26, 2006
1 parent f133a73 commit 1f7f2df
Show file tree
Hide file tree
Showing 248 changed files with 2,103 additions and 2,723 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7a20655bc5316ccec0f036cde46e609ba5571f5e
refs/heads/master: 1fbece150a230d0ab447cfb2fc4df10fb89f0d8c
8 changes: 7 additions & 1 deletion trunk/arch/alpha/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,13 @@ SECTIONS
. = ALIGN(8);
__initcall_start = .;
.initcall.init : {
INITCALLS
*(.initcall1.init)
*(.initcall2.init)
*(.initcall3.init)
*(.initcall4.init)
*(.initcall5.init)
*(.initcall6.init)
*(.initcall7.init)
}
__initcall_end = .;

Expand Down
8 changes: 7 additions & 1 deletion trunk/arch/arm/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,13 @@ SECTIONS
*(.early_param.init)
__early_end = .;
__initcall_start = .;
INITCALLS
*(.initcall1.init)
*(.initcall2.init)
*(.initcall3.init)
*(.initcall4.init)
*(.initcall5.init)
*(.initcall6.init)
*(.initcall7.init)
__initcall_end = .;
__con_initcall_start = .;
*(.con_initcall.init)
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/arm/mach-ixp2000/ixdp2400.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,11 @@ static void ixdp2400_pci_postinit(void)
if (ixdp2x00_master_npu()) {
dev = pci_get_bus_and_slot(1, IXDP2400_SLAVE_ENET_DEVFN);
pci_remove_bus_device(dev);
pci_dev_put(dev);
pci_dev_put(dev)
} else {
dev = pci_get_bus_and_slot(1, IXDP2400_MASTER_ENET_DEVFN);
pci_remove_bus_device(dev);
pci_dev_put(dev);
pci_dev_put(dev)

ixdp2x00_slave_pci_postinit();
}
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/arm/mach-lh7a40x/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ config MACH_LPD7A400
bool "LPD7A400 Card Engine"
select ARCH_LH7A400
# select IDE_POLL
# select HAS_TOUCHSCREEN_ADS7843_LH7
select HAS_TOUCHSCREEN_ADS7843_LH7
help
Say Y here if you are using Logic Product Development's
LPD7A400 CardEngine. For the time being, the LPD7A400 and
Expand All @@ -24,7 +24,7 @@ config MACH_LPD7A404
bool "LPD7A404 Card Engine"
select ARCH_LH7A404
# select IDE_POLL
# select HAS_TOUCHSCREEN_ADC_LH7
select HAS_TOUCHSCREEN_ADC_LH7
help
Say Y here if you are using Logic Product Development's
LPD7A404 CardEngine. For the time being, the LPD7A400 and
Expand Down
21 changes: 8 additions & 13 deletions trunk/arch/avr32/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# Default target when executing plain make
.PHONY: all
all: uImage vmlinux.elf
all: uImage vmlinux.elf linux.lst

KBUILD_DEFCONFIG := atstk1002_defconfig

Expand All @@ -21,7 +21,9 @@ cpuflags-$(CONFIG_CPU_AP7000) += -mcpu=ap7000
CFLAGS += $(cpuflags-y)
AFLAGS += $(cpuflags-y)

CHECKFLAGS += -D__avr32__ -D__BIG_ENDIAN
CHECKFLAGS += -D__avr32__

LIBGCC := $(shell $(CC) $(CFLAGS) -print-libgcc-file-name)

head-$(CONFIG_LOADER_U_BOOT) += arch/avr32/boot/u-boot/head.o
head-y += arch/avr32/kernel/head.o
Expand All @@ -30,7 +32,7 @@ core-$(CONFIG_BOARD_ATSTK1000) += arch/avr32/boards/atstk1000/
core-$(CONFIG_LOADER_U_BOOT) += arch/avr32/boot/u-boot/
core-y += arch/avr32/kernel/
core-y += arch/avr32/mm/
libs-y += arch/avr32/lib/
libs-y += arch/avr32/lib/ #$(LIBGCC)

archincdir-$(CONFIG_PLATFORM_AT32AP) := arch-at32ap

Expand All @@ -46,8 +48,6 @@ endif

archprepare: include/asm-avr32/.arch

CLEAN_FILES += include/asm-avr32/.arch include/asm-avr32/arch

BOOT_TARGETS := vmlinux.elf vmlinux.bin uImage uImage.srec

.PHONY: $(BOOT_TARGETS) install
Expand All @@ -71,19 +71,14 @@ vmlinux.elf vmlinux.bin uImage.srec uImage vmlinux.cso: vmlinux
install: vmlinux
$(Q)$(MAKE) $(build)=$(boot) BOOTIMAGE=$(KBUILD_IMAGE) $@

vmlinux.s: vmlinux
linux.s: vmlinux
$(call if_changed,disasm)

vmlinux.lst: vmlinux
linux.lst: vmlinux
$(call if_changed,listing)

CLEAN_FILES += vmlinux.s vmlinux.lst

archclean:
$(Q)$(MAKE) $(clean)=$(boot)

define archhelp
@echo '* vmlinux.elf - ELF image with load address 0'
@echo ' vmlinux.cso - PathFinder CSO image'
@echo '* uImage - Create a bootable image for U-Boot'
@echo ' uImage - Create a bootable image for U-Boot'
endef
4 changes: 3 additions & 1 deletion trunk/arch/avr32/boot/images/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,14 @@ OBJCOPYFLAGS_vmlinux.elf := --change-section-lma .text-0x80000000 \
--change-section-lma .data-0x80000000 \
--change-section-lma .init-0x80000000 \
--change-section-lma .bss-0x80000000 \
--change-section-lma .initrd-0x80000000 \
--change-section-lma __param-0x80000000 \
--change-section-lma __ksymtab-0x80000000 \
--change-section-lma __ksymtab_gpl-0x80000000 \
--change-section-lma __kcrctab-0x80000000 \
--change-section-lma __kcrctab_gpl-0x80000000 \
--change-section-lma __ksymtab_strings-0x80000000 \
--change-section-lma .got-0x80000000 \
--set-start 0xa0000000
$(obj)/vmlinux.elf: vmlinux FORCE
$(call if_changed,objcopy)
Expand All @@ -57,4 +59,4 @@ install: $(BOOTIMAGE)
sh $(srctree)/install-kernel.sh $<

# Generated files to be removed upon make clean
clean-files := vmlinux.elf vmlinux.bin vmlinux.gz uImage uImage.srec
clean-files := vmlinux* uImage uImage.srec
Loading

0 comments on commit 1f7f2df

Please sign in to comment.