Changeset 8d1f92f in mainline
- Timestamp:
- 2015-05-24T09:34:05Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fc7bf19
- Parents:
- a18a8b9 (diff), 91deaff (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. - Files:
-
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/bazaar/bzreml/__init__.py
ra18a8b9 r8d1f92f 70 70 71 71 sender_user, sender_email = parseaddr(sender) 72 payload = MIMEText(body. encode("utf-8"), "plain", "utf-8")72 payload = MIMEText(body.decode("utf-8", 'ignore').encode("utf-8", 'ignore'), "plain", "utf-8") 73 73 74 74 msg = MIMEMultipart() -
contrib/bazaar/mbprotect/__init__.py
ra18a8b9 r8d1f92f 60 60 return 61 61 62 # First permitted case is appending changesets to main branch. Look for62 # First permitted case is appending changesets to main branch. Look for 63 63 # old tip in new main branch. 64 64 for revision_id in iter_reverse_revision_history(repo, params.new_revid): 65 65 if revision_id == params.old_revid: 66 return # Found old tip 66 # Old tip found 67 return 67 68 68 69 # Another permitted case is backing out changesets. Look for new tip … … 70 71 for revision_id in iter_reverse_revision_history(repo, params.old_revid): 71 72 if revision_id == params.new_revid: 72 return # Found new tip 73 # New tip found 74 return 73 75 74 76 # Trying to do something else. Reject the change. -
contrib/qfs/qfs.sh
ra18a8b9 r8d1f92f 29 29 # 30 30 31 VERSION=2. 2.031 VERSION=2.3.0 32 32 BASENAME=qemu-${VERSION} 33 33 BASENAME_MASTER=qemu-master … … 36 36 URL=http://wiki.qemu-project.org/download/${TARBALL} 37 37 REPO=git://git.qemu.org/qemu.git 38 MD5=" f7a5e2da22d057eb838a91da7aff43c8"38 MD5="2fab3ea4460de9b57192e5b8b311f221" 39 39 40 40 if [ "$1" == "--master" ]; then -
defaults/arm32/integratorcp/Makefile.config
ra18a8b9 r8d1f92f 1 1 # Machine type 2 2 MACHINE = integratorcp 3 4 # Barebone build with essential binaries only 5 CONFIG_BAREBONE = y 6 -
tools/toolchain.sh
ra18a8b9 r8d1f92f 513 513 PATH="$PATH:${INSTALL_DIR}/${PREFIX}/bin" ./configure \ 514 514 "--target=${TARGET}" \ 515 "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" 515 "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" \ 516 --enable-werror=no 516 517 check_error $? "Error configuring GDB." 517 518 -
uspace/app/bdsh/cmds/modules/cat/cat.c
ra18a8b9 r8d1f92f 324 324 argc = cli_count_args(argv); 325 325 326 for (c = 0, opt ind = 0, opt_ind = 0; c != -1;) {326 for (c = 0, optreset = 1, optind = 0, opt_ind = 0; c != -1;) { 327 327 c = getopt_long(argc, argv, "xhvmH:t:b:s:n", long_options, &opt_ind); 328 328 switch (c) { -
uspace/app/bdsh/cmds/modules/cmp/cmp.c
ra18a8b9 r8d1f92f 130 130 argc = cli_count_args(argv); 131 131 132 for (c = 0, opt ind = 0, opt_ind = 0; c != -1;) {132 for (c = 0, optreset = 1, optind = 0, opt_ind = 0; c != -1;) { 133 133 c = getopt_long(argc, argv, "hv", long_options, &opt_ind); 134 134 switch (c) { -
uspace/app/bdsh/cmds/modules/cp/cp.c
ra18a8b9 r8d1f92f 457 457 argc = cli_count_args(argv); 458 458 459 for (c = 0, opt ind = 0, opt_ind = 0; c != -1;) {459 for (c = 0, optreset = 1, optind = 0, opt_ind = 0; c != -1;) { 460 460 c = getopt_long(argc, argv, "hvVfirb:", long_options, &opt_ind); 461 461 switch (c) { -
uspace/app/bdsh/cmds/modules/ls/ls.c
ra18a8b9 r8d1f92f 362 362 argc = cli_count_args(argv); 363 363 364 for (c = 0, opt ind = 0, opt_ind = 0; c != -1;) {364 for (c = 0, optreset = 1, optind = 0, opt_ind = 0; c != -1;) { 365 365 c = getopt_long(argc, argv, "hur", long_options, &opt_ind); 366 366 switch (c) { -
uspace/app/bdsh/cmds/modules/mkdir/mkdir.c
ra18a8b9 r8d1f92f 173 173 argc = cli_count_args(argv); 174 174 175 for (c = 0, opt ind = 0, opt_ind = 0; c != -1;) {175 for (c = 0, optreset = 1, optind = 0, opt_ind = 0; c != -1;) { 176 176 c = getopt_long(argc, argv, "pvhVfm:", long_options, &opt_ind); 177 177 switch (c) { -
uspace/app/bdsh/cmds/modules/mkfile/mkfile.c
ra18a8b9 r8d1f92f 126 126 argc = cli_count_args(argv); 127 127 128 for (c = 0, opt ind = 0, opt_ind = 0; c != -1;) {128 for (c = 0, optreset = 1, optind = 0, opt_ind = 0; c != -1;) { 129 129 c = getopt_long(argc, argv, "ps:h", long_options, &opt_ind); 130 130 switch (c) { -
uspace/app/bdsh/cmds/modules/mount/mount.c
ra18a8b9 r8d1f92f 117 117 argc = cli_count_args(argv); 118 118 119 for (c = 0, opt ind = 0, opt_ind = 0; c != -1;) {119 for (c = 0, optreset = 1, optind = 0, opt_ind = 0; c != -1;) { 120 120 c = getopt_long(argc, argv, "i:h", long_options, &opt_ind); 121 121 switch (c) { -
uspace/app/bdsh/cmds/modules/rm/rm.c
ra18a8b9 r8d1f92f 261 261 } 262 262 263 for (c = 0, opt ind = 0, opt_ind = 0; c != -1;) {263 for (c = 0, optreset = 1, optind = 0, opt_ind = 0; c != -1;) { 264 264 c = getopt_long(argc, argv, "hvrfs", long_options, &opt_ind); 265 265 switch (c) { -
uspace/app/bdsh/cmds/modules/touch/touch.c
ra18a8b9 r8d1f92f 90 90 DIR *dirp; 91 91 92 for (c = 0, opt ind = 0, longind = 0; c != -1; ) {92 for (c = 0, optreset = 1, optind = 0, longind = 0; c != -1; ) { 93 93 c = getopt_long(argc, argv, "c", long_options, &longind); 94 94 switch (c) { -
uspace/drv/fb/amdm37x_dispc/amdm37x_dispc.c
ra18a8b9 r8d1f92f 282 282 return ret; 283 283 } 284 if (dispc->fb_data) 285 dmamem_unmap_anonymous(dispc->fb_data); 284 286 287 dispc->fb_data = buffer; 285 288 amdm37x_dispc_setup_fb(dispc->regs, x, y, bpp *8, (uint32_t)pa); 286 289 dispc->active_fb.idx = mode.index; … … 290 293 dispc->active_fb.bpp = bpp; 291 294 dispc->active_fb.pixel2visual = p2v; 292 dispc->fb_data = buffer;293 295 dispc->size = size; 294 296 assert(mode.index < 1); 295 297 296 if (dispc->fb_data)297 dmamem_unmap_anonymous(dispc->fb_data);298 298 return EOK; 299 299 } -
uspace/lib/c/generic/irq.c
ra18a8b9 r8d1f92f 35 35 #include <ipc/irq.h> 36 36 #include <libc.h> 37 #include <stdlib.h> 38 #include <macros.h> 39 40 static irq_cmd_t default_cmds[] = { 41 { 42 .cmd = CMD_ACCEPT 43 } 44 }; 45 46 static const irq_code_t default_ucode = { 47 0, 48 NULL, 49 ARRAY_SIZE(default_cmds), 50 default_cmds 51 }; 37 52 38 53 /** Subscribe to IRQ notification. … … 49 64 const irq_code_t *ucode) 50 65 { 66 if (ucode == NULL) 67 ucode = &default_ucode; 68 51 69 return __SYSCALL4(SYS_IPC_IRQ_SUBSCRIBE, inr, devno, method, 52 70 (sysarg_t) ucode); -
uspace/lib/drv/generic/interrupt.c
ra18a8b9 r8d1f92f 44 44 #include "private/driver.h" 45 45 46 static irq_cmd_t default_cmds[] = {47 {48 .cmd = CMD_ACCEPT49 }50 };51 52 static const irq_code_t default_pseudocode = {53 0,54 NULL,55 ARRAY_SIZE(default_cmds),56 default_cmds57 };58 59 46 int register_interrupt_handler(ddf_dev_t *dev, int irq, 60 47 interrupt_handler_t *handler, const irq_code_t *pseudocode) -
uspace/srv/net/dhcp/dhcp.c
ra18a8b9 r8d1f92f 562 562 } 563 563 564 /* XXX Work around multiple simultaneous sessions issue */ 565 dhcp_transport_fini(&dlink->dt); 566 564 567 log_msg(LOG_DEFAULT, LVL_NOTE, "%s: Successfully configured.", 565 568 dlink->link_info.name); -
uspace/srv/net/dhcp/transport.c
ra18a8b9 r8d1f92f 95 95 int rc; 96 96 97 if (dt->fd < 0) { 98 /* Terminated */ 99 return EIO; 100 } 101 97 102 src_addr_size = sizeof(src_addr); 98 103 rc = recvfrom(dt->fd, msgbuf, MAX_MSG_SIZE, 0, … … 166 171 { 167 172 closesocket(dt->fd); 173 dt->fd = -1; 168 174 } 169 175
Note:
See TracChangeset
for help on using the changeset viewer.