Changeset ac36aed in mainline


Ignore:
Timestamp:
2013-12-25T16:10:25Z (10 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0c2d9bb, 41b735f3
Parents:
6946f23 (diff), 6453e306 (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:

despite persistent design and functionality issues, merge the hdisk partitioning tool after a basic cleanup
(originally from lp:hdisk)

Files:
23 added
5 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile.common

    r6946f23 rac36aed  
    178178        $(USPACE_PATH)/app/download/download \
    179179        $(USPACE_PATH)/app/edit/edit \
     180        $(USPACE_PATH)/app/hdisk/hdisk \
    180181        $(USPACE_PATH)/app/inet/inet \
    181182        $(USPACE_PATH)/app/kill/kill \
  • kernel/generic/src/lib/memfnc.c

    r6946f23 rac36aed  
    1         /*
     1/*
    22 * Copyright (c) 2011 Martin Decky
    33 * All rights reserved.
  • uspace/Makefile

    r6946f23 rac36aed  
    4545        app/edit \
    4646        app/getterm \
     47        app/hdisk \
    4748        app/init \
    4849        app/inet \
     
    252253        lib/pcm \
    253254        lib/bithenge \
    254         lib/posix
     255        lib/posix \
     256        lib/mbr \
     257        lib/gpt
    255258
    256259LIBC_BUILD = $(addsuffix .build,$(LIBC))
  • uspace/Makefile.common

    r6946f23 rac36aed  
    146146LIBURI_PREFIX = $(LIB_PREFIX)/uri
    147147
     148LIBMBR_PREFIX = $(LIB_PREFIX)/mbr
     149LIBGPT_PREFIX = $(LIB_PREFIX)/gpt
     150
    148151ifeq ($(STATIC_NEEDED),y)
    149152        STATIC_BUILD = y
  • uspace/lib/c/Makefile

    r6946f23 rac36aed  
    128128        generic/loader.c \
    129129        generic/getopt.c \
     130        generic/adt/checksum.c \
    130131        generic/adt/list.c \
    131132        generic/adt/hash_table.c \
Note: See TracChangeset for help on using the changeset viewer.