commit-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[hurd] branch master updated (e8405c3 -> 78218be)


From: Samuel Thibault
Subject: [hurd] branch master updated (e8405c3 -> 78218be)
Date: Tue, 09 Jan 2018 01:35:27 +0000

This is an automated email from the git hooks/post-receive script.

sthibault pushed a change to branch master
in repository hurd.

      from  e8405c3   upload
       new  140a8a3   Rename upstream patches
       new  873c3ac   Take upstream implementation of exec_filename
       new  f757c22   New upstream snapshot
       new  2163689   Merge branch 'upstream-merged'
       new  a8746b5   upload
       new  78218be   refresh

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Makefile                                           |   4 +
 TODO                                               |   2 +-
 config.make.in                                     |   7 +
 configure.ac                                       |   7 +
 debian/changelog                                   |  11 +-
 debian/patches/dl_origin.patch                     | 113 ----
 debian/patches/exec_filename_exec.patch            | 252 ++-----
 debian/patches/exec_filename_fix.patch             | 144 ----
 debian/patches/exec_filename_fs.patch              | 713 +++++---------------
 debian/patches/exec_filename_rpctrace.patch        |  61 --
 debian/patches/exec_filename_use.patch             | 103 +--
 debian/patches/exec_set_exe.patch                  | 388 -----------
 debian/patches/external.patch                      |   8 +-
 debian/patches/get-identity_hash.diff              | 101 ---
 debian/patches/get-identity_weakref.diff           |  68 --
 debian/patches/hash-weakref                        |  52 --
 debian/patches/pie-core                            | 156 -----
 debian/patches/series                              |   8 -
 doc/hurd.texi                                      |  22 +-
 exec/elfcore.c                                     |  13 +
 exec/exec.c                                        | 146 ++++-
 exec/hashexec.c                                    | 129 ++--
 exec/priv.h                                        |   4 +-
 hurd/exec.defs                                     |  19 +-
 hurd/fs.defs                                       |  29 +-
 hurd/hurd_types.h                                  |   9 +-
 hurd/process.defs                                  |  21 +
 hurd/process_reply.defs                            |   6 +
 hurd/process_request.defs                          |   6 +
 libdiskfs/boot-start.c                             |   2 +-
 libdiskfs/file-exec.c                              |  79 ++-
 libfshelp/get-identity.c                           |  49 +-
 libfshelp/start-translator-long.c                  |  23 +-
 libihash/Makefile                                  |   1 +
 libihash/ihash.c                                   |   2 +
 libnetfs/file-exec.c                               |  71 +-
 libps/procstat.c                                   |  17 +
 libps/ps.h                                         |  11 +-
 libps/spec.c                                       |  10 +
 libtrivfs/file-exec.c                              |  28 +-
 lwip/Makefile                                      |  50 ++
 lwip/iioctl-ops.c                                  | 410 ++++++++++++
 lwip/io-ops.c                                      | 554 ++++++++++++++++
 lwip/lwip-hurd.h                                   | 102 +++
 lwip/lwip-util.c                                   | 343 ++++++++++
 lwip/lwip-util.h                                   |  41 ++
 lwip/main.c                                        | 272 ++++++++
 {pfinet => lwip}/mig-decls.h                       |  21 +-
 {pfinet => lwip}/mig-mutate.h                      |   6 +-
 lwip/options.c                                     | 342 ++++++++++
 lwip/options.h                                     |  81 +++
 lwip/pfinet-ops.c                                  | 113 ++++
 lwip/port-objs.c                                   | 144 ++++
 auth/auth.h => lwip/port/include/netif/hurdethif.h |  27 +-
 .../auth.h => lwip/port/include/netif/hurdloopif.h |  24 +-
 lwip/port/include/netif/hurdtunif.h                |  65 ++
 lwip/port/include/netif/ifcommon.h                 |  60 ++
 lwip/port/netif/hurdethif.c                        | 573 ++++++++++++++++
 lwip/port/netif/hurdloopif.c                       | 112 ++++
 lwip/port/netif/hurdtunif.c                        | 721 +++++++++++++++++++++
 lwip/port/netif/ifcommon.c                         | 121 ++++
 lwip/socket-ops.c                                  | 451 +++++++++++++
 libdiskfs/get-source.c => lwip/startup-ops.c       |  30 +-
 lwip/startup.c                                     |  69 ++
 libshouldbeinlibc/refcount.c => lwip/startup.h     |  19 +-
 proc/info.c                                        |  41 ++
 proc/mgt.c                                         |  22 +
 proc/proc.h                                        |   2 +
 procfs/process.c                                   |  32 +
 startup/startup.c                                  |  94 ++-
 trans/fakeroot.c                                   |  97 ++-
 utils/fakeauth.c                                   |   9 +-
 utils/login.c                                      |  25 +-
 utils/rpctrace.c                                   |   9 +-
 utils/shd.c                                        |   9 +-
 75 files changed, 5811 insertions(+), 2175 deletions(-)
 delete mode 100644 debian/patches/dl_origin.patch
 delete mode 100644 debian/patches/exec_filename_fix.patch
 delete mode 100644 debian/patches/exec_filename_rpctrace.patch
 delete mode 100644 debian/patches/exec_set_exe.patch
 delete mode 100644 debian/patches/get-identity_hash.diff
 delete mode 100644 debian/patches/get-identity_weakref.diff
 delete mode 100644 debian/patches/hash-weakref
 delete mode 100644 debian/patches/pie-core
 create mode 100644 lwip/Makefile
 create mode 100644 lwip/iioctl-ops.c
 create mode 100644 lwip/io-ops.c
 create mode 100644 lwip/lwip-hurd.h
 create mode 100644 lwip/lwip-util.c
 create mode 100644 lwip/lwip-util.h
 create mode 100644 lwip/main.c
 copy {pfinet => lwip}/mig-decls.h (76%)
 copy {pfinet => lwip}/mig-mutate.h (89%)
 create mode 100644 lwip/options.c
 create mode 100644 lwip/options.h
 create mode 100644 lwip/pfinet-ops.c
 create mode 100644 lwip/port-objs.c
 copy auth/auth.h => lwip/port/include/netif/hurdethif.h (61%)
 copy auth/auth.h => lwip/port/include/netif/hurdloopif.h (64%)
 create mode 100644 lwip/port/include/netif/hurdtunif.h
 create mode 100644 lwip/port/include/netif/ifcommon.h
 create mode 100644 lwip/port/netif/hurdethif.c
 create mode 100644 lwip/port/netif/hurdloopif.c
 create mode 100644 lwip/port/netif/hurdtunif.c
 create mode 100644 lwip/port/netif/ifcommon.c
 create mode 100644 lwip/socket-ops.c
 copy libdiskfs/get-source.c => lwip/startup-ops.c (54%)
 create mode 100644 lwip/startup.c
 copy libshouldbeinlibc/refcount.c => lwip/startup.h (74%)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-hurd/hurd.git



reply via email to

[Prev in Thread] Current Thread [Next in Thread]