- Timestamp:
- 2010-12-30T13:43:27Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d770deb
- Parents:
- d70d80ed (diff), f418e51 (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:
-
- 8 edited
-
Makefile.common (modified) (4 diffs)
-
arch/amd64/Makefile.inc (modified) (1 diff)
-
arch/ia64/Makefile.inc (modified) (1 diff)
-
arch/ia64/include/types.h (modified) (2 diffs)
-
arch/mips32/include/arch.h (modified) (1 diff)
-
arch/ppc32/include/types.h (modified) (1 diff)
-
arch/sparc64/include/types.h (modified) (1 diff)
-
genarch/include/ofw.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile.common
rd70d80ed rea28272 100 100 $(USPACE_PATH)/srv/hw/netif/dp8390/dp8390 \ 101 101 $(USPACE_PATH)/srv/net/netif/lo/lo \ 102 $(USPACE_PATH)/srv/net/nil/eth/eth \ 103 $(USPACE_PATH)/srv/net/nil/nildummy/nildummy \ 102 104 $(USPACE_PATH)/srv/net/il/arp/arp \ 103 105 $(USPACE_PATH)/srv/net/il/ip/ip \ … … 109 111 110 112 RD_DRVS = \ 111 root 113 root \ 114 rootvirt \ 115 test1 \ 116 test2 112 117 113 118 RD_DRV_CFG = 114 115 ifneq ($(CONFIG_NETIF_NIL_BUNDLE),y)116 RD_SRVS_NON_ESSENTIAL += \117 $(USPACE_PATH)/srv/net/nil/eth/eth \118 $(USPACE_PATH)/srv/net/nil/nildummy/nildummy119 endif120 119 121 120 RD_APPS_ESSENTIAL = \ … … 126 125 RD_APPS_NON_ESSENTIAL = \ 127 126 $(USPACE_PATH)/app/edit/edit \ 127 $(USPACE_PATH)/app/kill/kill \ 128 128 $(USPACE_PATH)/app/mkfat/mkfat \ 129 129 $(USPACE_PATH)/app/sbi/sbi \ … … 141 141 $(USPACE_PATH)/app/stats/stats \ 142 142 $(USPACE_PATH)/app/tasks/tasks \ 143 $(USPACE_PATH)/app/top/top 143 $(USPACE_PATH)/app/top/top \ 144 $(USPACE_PATH)/app/sysinfo/sysinfo \ 145 $(USPACE_PATH)/app/websrv/websrv 144 146 145 147 ifneq ($(CONFIG_BAREBONE),y) -
boot/arch/amd64/Makefile.inc
rd70d80ed rea28272 37 37 38 38 RD_DRVS += \ 39 root ia32\39 rootpc \ 40 40 pciintel \ 41 41 isa \ -
boot/arch/ia64/Makefile.inc
rd70d80ed rea28272 34 34 ENDIANESS = LE 35 35 PAGE_SIZE = 16384 36 EXTRA_CFLAGS = -fno-unwind-tables -mfixed-range=f32-f127 -mno-pic 36 EXTRA_CFLAGS = -fno-unwind-tables -mfixed-range=f32-f127 -mno-pic -mno-sdata 37 37 38 38 RD_SRVS_NON_ESSENTIAL += -
boot/arch/ia64/include/types.h
rd70d80ed rea28272 35 35 36 36 typedef uint64_t size_t; 37 typedef uint64_t unative_t;37 typedef uint64_t sysarg_t; 38 38 typedef uint64_t uintptr_t; 39 39 … … 61 61 unsigned int memmap_items; 62 62 63 unative_t *sapic;63 sysarg_t *sapic; 64 64 unsigned long sys_freq; 65 65 unsigned long freq_scale; -
boot/arch/mips32/include/arch.h
rd70d80ed rea28272 40 40 41 41 #define MSIM_VIDEORAM_ADDRESS 0xb0000000 42 #define MSIM_DORDER_ADDRESS 0xb0000 00442 #define MSIM_DORDER_ADDRESS 0xb0000100 43 43 44 44 #ifndef __ASM__ -
boot/arch/ppc32/include/types.h
rd70d80ed rea28272 35 35 typedef uint32_t size_t; 36 36 typedef uint32_t uintptr_t; 37 typedef uint32_t unative_t;37 typedef uint32_t sysarg_t; 38 38 typedef int32_t native_t; 39 39 -
boot/arch/sparc64/include/types.h
rd70d80ed rea28272 35 35 typedef uint64_t size_t; 36 36 typedef uint64_t uintptr_t; 37 typedef uint64_t unative_t;37 typedef uint64_t sysarg_t; 38 38 typedef int64_t native_t; 39 39 -
boot/genarch/include/ofw.h
rd70d80ed rea28272 40 40 #define OFW_TREE_PROPERTY_MAX_VALUELEN 64 41 41 42 typedef unative_t ofw_arg_t;42 typedef sysarg_t ofw_arg_t; 43 43 typedef native_t ofw_ret_t; 44 44 typedef uint32_t ofw_prop_t;
Note:
See TracChangeset
for help on using the changeset viewer.
