- Timestamp:
- 2014-09-12T03:45:25Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c53b58e
- Parents:
- 3eb0c85 (diff), 105d8d6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- boot
- Files:
-
- 10 deleted
- 8 edited
-
Makefile.common (modified) (4 diffs)
-
arch/amd64/Makefile.inc (modified) (3 diffs)
-
arch/arm32/Makefile.inc (modified) (1 diff)
-
arch/arm32/src/main.c (modified) (1 diff)
-
arch/ia64/Makefile.inc (modified) (2 diffs)
-
arch/mips32/Makefile.inc (modified) (1 diff)
-
arch/mips64/Makefile.inc (deleted)
-
arch/mips64/_link.ld.in (deleted)
-
arch/mips64/include/arch.h (deleted)
-
arch/mips64/include/asm.h (deleted)
-
arch/mips64/include/main.h (deleted)
-
arch/mips64/include/regname.h (deleted)
-
arch/mips64/include/types.h (deleted)
-
arch/mips64/src/asm.S (deleted)
-
arch/mips64/src/main.c (deleted)
-
arch/mips64/src/putchar.c (deleted)
-
arch/ppc32/Makefile.inc (modified) (1 diff)
-
genarch/src/ofw.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.common
r3eb0c85 r8e7c9fe 127 127 128 128 RD_DRVS_ESSENTIAL = \ 129 infrastructure/root 129 root/root \ 130 root/virt \ 131 fb/kfb 130 132 131 133 RD_DRVS_NON_ESSENTIAL = \ 132 infrastructure/rootvirt \133 fb/kfb \134 134 test/test1 \ 135 135 test/test2 \ … … 138 138 nic/e1k \ 139 139 nic/rtl8139 \ 140 nic/rtl8169 \ 140 141 block/ahci 141 142 … … 189 190 $(USPACE_PATH)/app/mkexfat/mkexfat \ 190 191 $(USPACE_PATH)/app/mkmfs/mkmfs \ 192 $(USPACE_PATH)/app/nic/nic \ 191 193 $(USPACE_PATH)/app/sbi/sbi \ 192 194 $(USPACE_PATH)/app/sportdmp/sportdmp \ … … 216 218 $(USPACE_PATH)/app/vdemo/vdemo \ 217 219 $(USPACE_PATH)/app/viewer/viewer \ 218 $(USPACE_PATH)/app/df/df 219 220 ifeq ($(CONFIG_PCC),y) 221 RD_APPS_NON_ESSENTIAL += \ 222 $(USPACE_PATH)/app/cc/cc \ 223 $(USPACE_PATH)/app/ccom/ccom \ 224 $(USPACE_PATH)/app/ccom/mkext/cc_mkext \ 225 $(USPACE_PATH)/app/cpp/cpp 226 endif 227 228 ifeq ($(CONFIG_BINUTILS),y) 229 RD_APPS_NON_ESSENTIAL += \ 230 $(USPACE_PATH)/app/binutils/bin/as \ 231 $(USPACE_PATH)/app/binutils/bin/ld 232 endif 233 234 ifeq ($(CONFIG_MSIM),y) 235 RD_APPS_NON_ESSENTIAL += \ 236 $(USPACE_PATH)/app/msim/msim 237 endif 220 $(USPACE_PATH)/app/df/df \ 221 $(USPACE_PATH)/app/fontviewer/fontviewer 238 222 239 223 COMPONENTS = \ -
boot/arch/amd64/Makefile.inc
r3eb0c85 r8e7c9fe 35 35 36 36 RD_DRVS_ESSENTIAL += \ 37 infrastructure/rootpc \37 platform/pc \ 38 38 block/ata_bd \ 39 39 bus/pci/pciintel \ … … 45 45 46 46 RD_DRVS_NON_ESSENTIAL += \ 47 audio/hdaudio \ 47 48 char/ns8250 \ 48 49 time/cmos-rtc \ … … 63 64 $(USPACE_PATH)/app/edit/edit \ 64 65 $(USPACE_PATH)/app/mixerctl/mixerctl \ 65 $(USPACE_PATH)/app/wavplay/wavplay \66 66 $(USPACE_PATH)/app/wavplay/wavplay 67 67 68 BOOT_OUTPUT = $(ROOT_PATH)/image.iso 68 69 PREBUILD = $(INITRD).img -
boot/arch/arm32/Makefile.inc
r3eb0c85 r8e7c9fe 60 60 61 61 ifeq ($(MACHINE), gta02) 62 RD_SRVS_ESSENTIAL += \ 63 $(USPACE_PATH)/srv/hid/s3c24xx_ts/s3c24xx_ts \ 64 $(USPACE_PATH)/srv/hw/char/s3c24xx_uart/s3c24ser 62 RD_SRVS_ESSENTIAL += \ 63 $(USPACE_PATH)/srv/hid/s3c24xx_ts/s3c24xx_ts \ 64 $(USPACE_PATH)/srv/hw/char/s3c24xx_uart/s3c24ser 65 endif 66 67 ifeq ($(MACHINE), $(filter $(MACHINE),beagleboardxm beaglebone)) 68 RD_DRVS_ESSENTIAL += \ 69 platform/amdm37x \ 70 fb/amdm37x_dispc 71 endif 72 73 ifeq ($(MACHINE), integratorcp) 74 RD_DRVS_ESSENTIAL += \ 75 char/pl050 \ 76 char/xtkbd \ 77 char/ps2mouse \ 78 platform/icp 79 RD_SRVS_ESSENTIAL += \ 80 $(USPACE_PATH)/srv/hw/irc/icp-ic/icp-ic 65 81 endif 66 82 67 83 RD_DRVS_ESSENTIAL += \ 68 infrastructure/rootamdm37x \69 fb/amdm37x_dispc \70 84 bus/usb/ehci \ 71 85 bus/usb/ohci \ -
boot/arch/arm32/src/main.c
r3eb0c85 r8e7c9fe 129 129 130 130 printf(".\n"); 131 132 /* Flush PT too. We need this if we disable caches later */ 133 clean_dcache_poc(boot_pt, PTL0_ENTRIES * PTL0_ENTRY_SIZE); 131 134 132 135 printf("Booting the kernel...\n"); -
boot/arch/ia64/Makefile.inc
r3eb0c85 r8e7c9fe 31 31 BFD_ARCH = ia64 32 32 33 #34 # FIXME:35 #36 # The -fno-selective-scheduling and -fno-selective-scheduling2 options37 # should be removed as soon as a bug in GCC concerning unchecked38 # speculative loads is fixed.39 #40 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53975 for reference.41 #42 43 33 BITS = 64 44 34 ENDIANESS = LE 45 EXTRA_CFLAGS = -fno-unwind-tables -mfixed-range=f32-f127 -mno-pic -mno-sdata -fno-selective-scheduling -fno-selective-scheduling235 EXTRA_CFLAGS = -fno-unwind-tables -mfixed-range=f32-f127 -mno-pic -mno-sdata 46 36 47 37 RD_SRVS_NON_ESSENTIAL += … … 74 64 arch/$(BARCH)/src/ski.c 75 65 endif 66 67 RD_DRVS_ESSENTIAL += \ 68 platform/pc \ 69 bus/pci/pciintel \ 70 bus/isa \ 71 char/i8042 \ 72 char/xtkbd 73 74 RD_DRVS_NON_ESSENTIAL += \ 75 char/ns8250 \ 76 time/cmos-rtc \ 77 bus/usb/ehci\ 78 bus/usb/ohci \ 79 bus/usb/uhci \ 80 bus/usb/uhcirh \ 81 bus/usb/usbflbk \ 82 bus/usb/usbhub \ 83 bus/usb/usbhid \ 84 bus/usb/usbmast \ 85 bus/usb/usbmid \ 86 bus/usb/vhc 87 88 RD_DRV_CFG += \ 89 bus/isa 90 -
boot/arch/mips32/Makefile.inc
r3eb0c85 r8e7c9fe 52 52 ifeq ($(MACHINE), $(filter $(MACHINE),bmalta lmalta)) 53 53 RD_DRVS_ESSENTIAL += \ 54 infrastructure/rootmalta \54 platform/malta \ 55 55 block/ata_bd \ 56 56 bus/pci/pciintel \ -
boot/arch/ppc32/Makefile.inc
r3eb0c85 r8e7c9fe 43 43 44 44 RD_DRVS_ESSENTIAL += \ 45 infrastructure/rootmac \45 platform/mac \ 46 46 bus/pci/pciintel \ 47 47 bus/usb/ohci \ -
boot/genarch/src/ofw.c
r3eb0c85 r8e7c9fe 377 377 (map->cnt < MEMMAP_MAX_RECORDS); pos += ac + sc) { 378 378 void *start = (void *) (buf[pos + ac - 1]); 379 uint 32_t size = buf[pos + ac + sc - 1];379 uintptr_t size = buf[pos + ac + sc - 1]; 380 380 381 381 /*
Note:
See TracChangeset
for help on using the changeset viewer.
