- Timestamp:
- 2011-07-05T21:21:36Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5e2aa83, eb66f236
- Parents:
- 3714e79 (diff), f7a55f9 (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 added
- 2 deleted
- 10 edited
-
Makefile (modified) (1 diff)
-
Makefile.common (modified) (4 diffs)
-
Makefile.silo (modified) (1 diff)
-
Makefile.uboot (modified) (2 diffs)
-
arch/amd64/Makefile.inc (modified) (1 diff)
-
arch/mips32/Makefile.inc (modified) (1 diff)
-
arch/mips64/Makefile.inc (added)
-
arch/mips64/_link.ld.in (added)
-
arch/mips64/include/arch.h (added)
-
arch/mips64/include/asm.h (added)
-
arch/mips64/include/main.h (added)
-
arch/mips64/include/regname.h (added)
-
arch/mips64/include/types.h (added)
-
arch/mips64/src/asm.S (added)
-
arch/mips64/src/main.c (added)
-
arch/mips64/src/putchar.c (added)
-
arch/ppc32/Makefile.inc (modified) (1 diff)
-
arch/sparc64/Makefile.inc (modified) (1 diff)
-
arch/sparc64/src/main.c (modified) (1 diff)
-
generic/src/version.c (modified) (1 diff)
-
silo/raw/isofs.b (deleted)
-
silo/raw/second.b (deleted)
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile
r3714e79 rbee37cf 65 65 done 66 66 for drv in $(RD_DRVS) ; do \ 67 mkdir -p "$(DIST_PATH)/$(DRVS_PATH)/$$drv" ; \ 68 cp "$(USPACE_PATH)/$(DRVS_PATH)/$$drv/$$drv" "$(DIST_PATH)/$(DRVS_PATH)/$$drv/$$drv" ; \ 69 cp "$(USPACE_PATH)/$(DRVS_PATH)/$$drv/$$drv.ma" "$(DIST_PATH)/$(DRVS_PATH)/$$drv/$$drv.ma" ; \ 67 drv_dir="`dirname "$$drv"`" ; \ 68 drv_name="`basename "$$drv"`" ; \ 69 mkdir -p "$(DIST_PATH)/$(DRVS_PATH)/$$drv_name" ; \ 70 cp "$(USPACE_PATH)/$(DRVS_PATH)/$$drv_dir/$$drv_name/$$drv_name" "$(DIST_PATH)/$(DRVS_PATH)/$$drv_name/" ; \ 71 cp "$(USPACE_PATH)/$(DRVS_PATH)/$$drv_dir/$$drv_name/$$drv_name.ma" "$(DIST_PATH)/$(DRVS_PATH)/$$drv_name/" ; \ 70 72 done 71 73 for file in $(RD_DRV_CFG) ; do \ 72 cp "$(USPACE_PATH)/$(DRVS_PATH)/$$file" "$(DIST_PATH)/$(DRVS_PATH)/$$file" ; \ 74 file_dir="`dirname "$$file"`" ; \ 75 file_name="`basename "$$file"`" ; \ 76 cp "$(USPACE_PATH)/$(DRVS_PATH)/$$file_dir/$$file_name/$$file_name.dev" "$(DIST_PATH)/$(DRVS_PATH)/$$file_name/" ; \ 73 77 done 74 78 75 79 clean: clean_dist 76 80 $(MAKE) -f $(BUILD) clean PRECHECK=$(PRECHECK) -
boot/Makefile.common
r3714e79 rbee37cf 86 86 RD_SRVS_ESSENTIAL = \ 87 87 $(USPACE_PATH)/srv/hid/fb/fb \ 88 $(USPACE_PATH)/srv/hid/ kbd/kbd\88 $(USPACE_PATH)/srv/hid/input/input \ 89 89 $(USPACE_PATH)/srv/hid/console/console \ 90 90 $(USPACE_PATH)/srv/fs/devfs/devfs … … 110 110 $(USPACE_PATH)/srv/net/net/net \ 111 111 $(USPACE_PATH)/srv/devman/devman 112 112 113 113 RD_DRVS = \ 114 root \115 rootvirt \116 test 1 \117 test 2 \118 test 3119 120 RD_DRV_CFG = 114 infrastructure/root \ 115 infrastructure/rootvirt \ 116 test/test1 \ 117 test/test2 \ 118 test/test3 119 120 RD_DRV_CFG = 121 121 122 122 RD_LIBS = … … 146 146 $(USPACE_PATH)/app/killall/killall \ 147 147 $(USPACE_PATH)/app/mkfat/mkfat \ 148 $(USPACE_PATH)/app/lsusb/lsusb \ 148 149 $(USPACE_PATH)/app/sbi/sbi \ 149 150 $(USPACE_PATH)/app/redir/redir \ … … 158 159 $(USPACE_PATH)/app/ping/ping \ 159 160 $(USPACE_PATH)/app/stats/stats \ 161 $(USPACE_PATH)/app/sysinfo/sysinfo \ 160 162 $(USPACE_PATH)/app/top/top \ 161 $(USPACE_PATH)/app/sysinfo/sysinfo \ 163 $(USPACE_PATH)/app/usbinfo/usbinfo \ 164 $(USPACE_PATH)/app/vuhid/vuh \ 165 $(USPACE_PATH)/app/mkbd/mkbd \ 162 166 $(USPACE_PATH)/app/websrv/websrv 163 167 -
boot/Makefile.silo
r3714e79 rbee37cf 31 31 include Makefile.common 32 32 33 ifeq ($(CONFIG_AOUT_ISOFS_B),y) 34 SILO_PACKAGE = a.out 35 else 36 SILO_PACKAGE = raw 37 endif 33 SILO_PACKAGE = a.out 38 34 39 35 ISOFS_B = silo/$(SILO_PACKAGE)/isofs.b -
boot/Makefile.uboot
r3714e79 rbee37cf 31 31 include Makefile.common 32 32 33 IMAGE_NAME =HelenOS-$(RELEASE)34 BIN_OUTPUT =image.bin33 IMAGE_NAME = HelenOS-$(RELEASE) 34 BIN_OUTPUT = image.bin 35 35 36 36 all: $(POST_OUTPUT) … … 40 40 41 41 $(POST_OUTPUT): $(BIN_OUTPUT) 42 $(MKUIMAGE) -name "$(IMAGE_NAME)" -laddr 0x30008000 -saddr 0x30008000 \ 43 $< $@ 42 $(MKUIMAGE) -name "$(IMAGE_NAME)" -laddr 0x30008000 -saddr 0x30008000 $< $@ 44 43 45 44 clean: -
boot/arch/amd64/Makefile.inc
r3714e79 rbee37cf 35 35 36 36 RD_SRVS_NON_ESSENTIAL += \ 37 $(USPACE_PATH)/srv/bd/ata_bd/ata_bd \ 38 $(USPACE_PATH)/srv/hid/char_mouse/char_ms 37 $(USPACE_PATH)/srv/bd/ata_bd/ata_bd 39 38 40 39 RD_DRVS += \ 41 rootpc \ 42 pciintel \ 43 isa \ 44 ns8250 40 infrastructure/rootpc \ 41 bus/pci/pciintel \ 42 bus/isa \ 43 char/ns8250 \ 44 bus/usb/ehci\ 45 bus/usb/ohci \ 46 bus/usb/uhci \ 47 bus/usb/uhcirh \ 48 bus/usb/usbflbk \ 49 bus/usb/usbhub \ 50 bus/usb/usbhid \ 51 bus/usb/usbmast \ 52 bus/usb/usbmid \ 53 bus/usb/usbmouse \ 54 bus/usb/vhc 45 55 46 56 RD_DRV_CFG += \ 47 isa/isa.dev57 bus/isa 48 58 49 59 BOOT_OUTPUT = $(ROOT_PATH)/image.iso -
boot/arch/mips32/Makefile.inc
r3714e79 rbee37cf 30 30 BITS = 32 31 31 PAGE_SIZE = 16384 32 EXTRA_CFLAGS = -mno-abicalls -G 0 -fno-zero-initialized-in-bss -mips3 33 34 RD_SRVS_ESSENTIAL += 32 EXTRA_CFLAGS = -mno-abicalls -G 0 -fno-zero-initialized-in-bss -mips3 -mabi=32 35 33 36 34 RD_SRVS_NON_ESSENTIAL += \ -
boot/arch/ppc32/Makefile.inc
r3714e79 rbee37cf 43 43 $(USPACE_PATH)/srv/hw/bus/cuda_adb/cuda_adb 44 44 45 RD_ SRVS_NON_ESSENTIAL+= \46 $(USPACE_PATH)/srv/hid/adb_mouse/adb_ms45 RD_DRVS += \ 46 infrastructure/rootmac 47 47 48 48 SOURCES = \ -
boot/arch/sparc64/Makefile.inc
r3714e79 rbee37cf 43 43 44 44 RD_SRVS_ESSENTIAL += \ 45 $(USPACE_PATH)/srv/hw/irc/fhc/fhc \46 45 $(USPACE_PATH)/srv/hw/irc/obio/obio 47 46 -
boot/arch/sparc64/src/main.c
r3714e79 rbee37cf 182 182 * of the "/memory" node to find out which parts of memory 183 183 * are used by OBP and redesign the algorithm of copying 184 * kernel/init tasks/ramdisk from the bootable image to memory 185 * (which we must do anyway because of issues with claiming the memory 186 * on Serengeti). 187 * 184 * kernel/init tasks/ramdisk from the bootable image to memory. 188 185 */ 189 186 bootinfo.physmem_start += OBP_BIAS; -
boot/generic/src/version.c
r3714e79 rbee37cf 32 32 33 33 static const char *project = "HelenOS bootloader"; 34 static const char *copyright = "Copyright (c) 2001-201 0HelenOS project";34 static const char *copyright = "Copyright (c) 2001-2011 HelenOS project"; 35 35 static const char *release = STRING(RELEASE); 36 36 static const char *name = STRING(NAME);
Note:
See TracChangeset
for help on using the changeset viewer.
