Changeset cddcc4a3 in mainline for boot


Ignore:
Timestamp:
2012-08-14T18:16:39Z (13 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
669f5cae
Parents:
76d92db1 (diff), 4802dd7 (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.
Message:

Merge mainline changes

Location:
boot
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile

    r76d92db1 rcddcc4a3  
    4747        $(MKFAT) 1048576 $(DIST_PATH) $@
    4848endif
    49 ifeq ($(RDFMT),ext2fs)
    50         $(MKEXT2) 1048576 $(DIST_PATH) $@
     49ifeq ($(RDFMT),ext4fs)
     50        $(MKEXT4) 1048576 $(DIST_PATH) $@
    5151endif
    5252
  • boot/Makefile.common

    r76d92db1 rcddcc4a3  
    5555MKTMPFS = $(TOOLS_PATH)/mktmpfs.py
    5656MKFAT = $(TOOLS_PATH)/mkfat.py
    57 MKEXT2 = $(TOOLS_PATH)/mkext2.py
     57MKEXT4 = $(TOOLS_PATH)/mkext4.py
    5858MKUIMAGE = $(TOOLS_PATH)/mkuimage.py
    5959
     
    8585endif
    8686
    87 ifeq ($(RDFMT),ext2fs)
    88         INIT_TASKS += $(USPACE_PATH)/srv/fs/ext2fs/ext2fs
     87ifeq ($(RDFMT),ext4fs)
     88        INIT_TASKS += $(USPACE_PATH)/srv/fs/ext4fs/ext4fs
    8989endif
    9090
     
    9999        $(USPACE_PATH)/srv/bd/part/guid_part/g_part \
    100100        $(USPACE_PATH)/srv/bd/part/mbr_part/mbr_part \
     101        $(USPACE_PATH)/srv/bd/sata_bd/sata_bd \
    101102        $(USPACE_PATH)/srv/clipboard/clipboard \
    102103        $(USPACE_PATH)/srv/fs/tmpfs/tmpfs \
     
    106107        $(USPACE_PATH)/srv/fs/exfat/exfat \
    107108        $(USPACE_PATH)/srv/fs/ext2fs/ext2fs \
     109        $(USPACE_PATH)/srv/fs/ext4fs/ext4fs \
    108110        $(USPACE_PATH)/srv/hid/remcons/remcons \
    109111        $(USPACE_PATH)/srv/net/ethip/ethip \
     
    123125        nic/ne2k \
    124126        nic/e1k \
    125         nic/rtl8139
     127        nic/rtl8139 \
     128        block/ahci
    126129
    127130RD_DRV_CFG =
     
    173176        $(USPACE_PATH)/app/tester/tester \
    174177        $(USPACE_PATH)/app/testread/testread \
     178        $(USPACE_PATH)/app/testwrit/testwrit \
    175179        $(USPACE_PATH)/app/tetris/tetris \
    176180        $(USPACE_PATH)/app/trace/trace \
  • boot/arch/ia64/Makefile.inc

    r76d92db1 rcddcc4a3  
    3131BFD_ARCH = ia64
    3232
     33#
     34# FIXME:
     35#
     36# The -fno-selective-scheduling and -fno-selective-scheduling2 options
     37# should be removed as soon as a bug in GCC concerning unchecked
     38# speculative loads is fixed.
     39#
     40# See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53975 for reference.
     41#
     42
    3343BITS = 64
    3444ENDIANESS = LE
    35 EXTRA_CFLAGS = -fno-unwind-tables -mfixed-range=f32-f127 -mno-pic -mno-sdata
     45EXTRA_CFLAGS = -fno-unwind-tables -mfixed-range=f32-f127 -mno-pic -mno-sdata -fno-selective-scheduling -fno-selective-scheduling2
    3646
    3747RD_SRVS_NON_ESSENTIAL +=
  • boot/arch/mips32/Makefile.inc

    r76d92db1 rcddcc4a3  
    2929BFD_ARCH = mips
    3030BITS = 32
    31 EXTRA_CFLAGS = -mno-abicalls -G 0 -fno-zero-initialized-in-bss -mips3 -mabi=32
     31EXTRA_CFLAGS = -msoft-float -mno-abicalls -G 0 -fno-zero-initialized-in-bss -mips3 -mabi=32
    3232
    3333RD_SRVS_NON_ESSENTIAL += \
     
    4848        BFD_OUTPUT = binary
    4949        ENDIANESS = LE
    50         EXTRA_GCC_CFLAGS = -mhard-float
    5150endif
    5251
  • boot/arch/mips64/Makefile.inc

    r76d92db1 rcddcc4a3  
    2929BFD_ARCH = mips:4000
    3030BITS = 64
    31 EXTRA_CFLAGS = -mno-abicalls -G 0 -fno-zero-initialized-in-bss -mips3 -mabi=64
     31EXTRA_CFLAGS = -msoft-float -mno-abicalls -G 0 -fno-zero-initialized-in-bss -mips3 -mabi=64
    3232
    3333ifeq ($(MACHINE),msim)
     
    3535        BFD_OUTPUT = binary
    3636        ENDIANESS = LE
    37         EXTRA_GCC_CFLAGS = -mhard-float
    3837endif
    3938
  • boot/arch/ppc32/Makefile.inc

    r76d92db1 rcddcc4a3  
    4343
    4444RD_DRVS += \
    45         infrastructure/rootmac
     45        infrastructure/rootmac \
     46        bus/pci/pciintel \
     47        bus/usb/ohci \
     48        bus/usb/usbflbk \
     49        bus/usb/usbhub \
     50        bus/usb/usbhid \
     51        bus/usb/usbmast \
     52        bus/usb/usbmid \
     53        bus/usb/vhc
    4654
    4755SOURCES = \
  • boot/generic/src/str.c

    r76d92db1 rcddcc4a3  
    354354 *
    355355 * Do a char-by-char comparison of two NULL-terminated strings.
    356  * The strings are considered equal iff they consist of the same
    357  * characters on the minimum of their lengths.
     356 * The strings are considered equal iff their length is equal
     357 * and both strings consist of the same sequence of characters.
     358 *
     359 * A string S1 is less than another string S2 if it has a character with
     360 * lower value at the first character position where the strings differ.
     361 * If the strings differ in length, the shorter one is treated as if
     362 * padded by characters with a value of zero.
    358363 *
    359364 * @param s1 First string to compare.
    360365 * @param s2 Second string to compare.
    361366 *
    362  * @return 0 if the strings are equal, -1 if first is smaller,
    363  *         1 if second smaller.
     367 * @return 0 if the strings are equal, -1 if the first is less than the second,
     368 *         1 if the second is less than the first.
    364369 *
    365370 */
Note: See TracChangeset for help on using the changeset viewer.