Changeset f1380b7 in mainline for boot


Ignore:
Timestamp:
2018-03-02T20:21:57Z (8 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
34e1206
Parents:
a35b458
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-02-28 17:51:04)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:21:57)
Message:

style: Remove trailing whitespace on _all_ lines, including empty ones, remaining files.

Location:
boot
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile

    ra35b458 rf1380b7  
    8181        echo "</ul></body></html>" >>"$(DIST_PATH)/test/test.html"
    8282endif
    83        
     83
    8484ifeq ($(CONFIG_PCUT_SELF_TESTS),y)
    8585        echo "echo Running all PCUT self-tests..." >"$(DIST_PATH)/test/run_pcut"
     
    9999        echo "</ul></body></html>" >>"$(DIST_PATH)/test/pcut.html"
    100100endif
    101        
     101
    102102        for drv in $(RD_DRVS) ; do \
    103103                drv_dir="`dirname "$$drv"`" ; \
  • boot/Makefile.grub

    ra35b458 rf1380b7  
    6363        gunzip $(IMAGE)
    6464endif
    65        
     65
    6666        for module in $(COMPONENTS) ; do \
    6767                cp "$$module" $(BOOT)/ ; \
    6868        done
    69        
     69
    7070        echo "set default=0" > $(BOOT_CONFIG)
    7171        echo "set timeout=10" >> $(BOOT_CONFIG)
    7272        echo "" >> $(BOOT_CONFIG)
    73        
     73
    7474ifeq ($(GRUB_ARCH),pc)
    7575        echo "insmod vbe" >> $(BOOT_CONFIG)
     
    8181endif
    8282        echo "" >> $(BOOT_CONFIG)
    83        
     83
    8484        echo "menuentry 'HelenOS $(RELEASE)' --class helenos --class os {" >> $(BOOT_CONFIG)
    8585        for module in $(MODULES) ; do \
  • boot/arch/ia64/_link.ld.in

    ra35b458 rf1380b7  
    1818                *(.components);
    1919        }
    20        
     20
    2121        /DISCARD/ : {
    2222                *(.*);
  • boot/arch/mips32/_link.ld.in

    ra35b458 rf1380b7  
    2323                *(.components);
    2424        }
    25        
     25
    2626        /DISCARD/ : {
    2727                *(.gnu.*);
  • boot/arch/ppc32/_link.ld.in

    ra35b458 rf1380b7  
    2020                *(.components);
    2121        }
    22        
     22
    2323        /DISCARD/ : {
    2424                *(.gnu.*);
  • boot/arch/riscv64/_link.ld.in

    ra35b458 rf1380b7  
    55SECTIONS {
    66        . = PHYSMEM_START;
    7        
     7
    88        .text : {
    99                *(BOOTSTRAP);
    1010                *(.text);
    1111        }
    12        
     12
    1313        . = ALIGN(0x1000);
    1414        .htif : {
     
    1717        }
    1818        . = ALIGN(0x1000);
    19        
     19
    2020        . = ALIGN(0x1000);
    2121        .pt : {
     
    2424        }
    2525        . = ALIGN(0x1000);
    26        
     26
    2727        .data : {
    2828                *(.data);       /* initialized data */
     
    3737                *(.components);
    3838        }
    39        
     39
    4040        /DISCARD/ : {
    4141                *(.gnu.*);
  • boot/arch/sparc64/_link.ld.in

    ra35b458 rf1380b7  
    66                *(BOOTSTRAP);
    77                *(.text);
    8                
     8
    99                *(.data);       /* initialized data */
    1010                *(.rodata);
     
    1717                *(.components);
    1818        }
    19        
     19
    2020        /DISCARD/ : {
    2121                *(.gnu.*);
Note: See TracChangeset for help on using the changeset viewer.