Changes in / [8d1f92f:a18a8b9] in mainline
- Files:
-
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/bazaar/bzreml/__init__.py
r8d1f92f ra18a8b9 70 70 71 71 sender_user, sender_email = parseaddr(sender) 72 payload = MIMEText(body. decode("utf-8", 'ignore').encode("utf-8", 'ignore'), "plain", "utf-8")72 payload = MIMEText(body.encode("utf-8"), "plain", "utf-8") 73 73 74 74 msg = MIMEMultipart() -
contrib/bazaar/mbprotect/__init__.py
r8d1f92f ra18a8b9 60 60 return 61 61 62 # First permitted case is appending changesets to main branch. 62 # 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 # Old tip found 67 return 66 return # Found old tip 68 67 69 68 # Another permitted case is backing out changesets. Look for new tip … … 71 70 for revision_id in iter_reverse_revision_history(repo, params.old_revid): 72 71 if revision_id == params.new_revid: 73 # New tip found 74 return 72 return # Found new tip 75 73 76 74 # Trying to do something else. Reject the change. -
contrib/qfs/qfs.sh
r8d1f92f ra18a8b9 29 29 # 30 30 31 VERSION=2. 3.031 VERSION=2.2.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=" 2fab3ea4460de9b57192e5b8b311f221"38 MD5="f7a5e2da22d057eb838a91da7aff43c8" 39 39 40 40 if [ "$1" == "--master" ]; then -
defaults/arm32/integratorcp/Makefile.config
r8d1f92f ra18a8b9 1 1 # Machine type 2 2 MACHINE = integratorcp 3 4 # Barebone build with essential binaries only5 CONFIG_BAREBONE = y6 -
tools/toolchain.sh
r8d1f92f ra18a8b9 513 513 PATH="$PATH:${INSTALL_DIR}/${PREFIX}/bin" ./configure \ 514 514 "--target=${TARGET}" \ 515 "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" \ 516 --enable-werror=no 515 "--prefix=${PREFIX}" "--program-prefix=${TARGET}-" 517 516 check_error $? "Error configuring GDB." 518 517 -
uspace/app/bdsh/cmds/modules/cat/cat.c
r8d1f92f ra18a8b9 324 324 argc = cli_count_args(argv); 325 325 326 for (c = 0, opt reset = 1, optind = 0, opt_ind = 0; c != -1;) {326 for (c = 0, 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
r8d1f92f ra18a8b9 130 130 argc = cli_count_args(argv); 131 131 132 for (c = 0, opt reset = 1, optind = 0, opt_ind = 0; c != -1;) {132 for (c = 0, 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
r8d1f92f ra18a8b9 457 457 argc = cli_count_args(argv); 458 458 459 for (c = 0, opt reset = 1, optind = 0, opt_ind = 0; c != -1;) {459 for (c = 0, 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
r8d1f92f ra18a8b9 362 362 argc = cli_count_args(argv); 363 363 364 for (c = 0, opt reset = 1, optind = 0, opt_ind = 0; c != -1;) {364 for (c = 0, 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
r8d1f92f ra18a8b9 173 173 argc = cli_count_args(argv); 174 174 175 for (c = 0, opt reset = 1, optind = 0, opt_ind = 0; c != -1;) {175 for (c = 0, 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
r8d1f92f ra18a8b9 126 126 argc = cli_count_args(argv); 127 127 128 for (c = 0, opt reset = 1, optind = 0, opt_ind = 0; c != -1;) {128 for (c = 0, 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
r8d1f92f ra18a8b9 117 117 argc = cli_count_args(argv); 118 118 119 for (c = 0, opt reset = 1, optind = 0, opt_ind = 0; c != -1;) {119 for (c = 0, 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
r8d1f92f ra18a8b9 261 261 } 262 262 263 for (c = 0, opt reset = 1, optind = 0, opt_ind = 0; c != -1;) {263 for (c = 0, 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
r8d1f92f ra18a8b9 90 90 DIR *dirp; 91 91 92 for (c = 0, opt reset = 1, optind = 0, longind = 0; c != -1; ) {92 for (c = 0, 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
r8d1f92f ra18a8b9 282 282 return ret; 283 283 } 284 if (dispc->fb_data)285 dmamem_unmap_anonymous(dispc->fb_data);286 284 287 dispc->fb_data = buffer;288 285 amdm37x_dispc_setup_fb(dispc->regs, x, y, bpp *8, (uint32_t)pa); 289 286 dispc->active_fb.idx = mode.index; … … 293 290 dispc->active_fb.bpp = bpp; 294 291 dispc->active_fb.pixel2visual = p2v; 292 dispc->fb_data = buffer; 295 293 dispc->size = size; 296 294 assert(mode.index < 1); 297 295 296 if (dispc->fb_data) 297 dmamem_unmap_anonymous(dispc->fb_data); 298 298 return EOK; 299 299 } -
uspace/lib/c/generic/irq.c
r8d1f92f ra18a8b9 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_ACCEPT43 }44 };45 46 static const irq_code_t default_ucode = {47 0,48 NULL,49 ARRAY_SIZE(default_cmds),50 default_cmds51 };52 37 53 38 /** Subscribe to IRQ notification. … … 64 49 const irq_code_t *ucode) 65 50 { 66 if (ucode == NULL)67 ucode = &default_ucode;68 69 51 return __SYSCALL4(SYS_IPC_IRQ_SUBSCRIBE, inr, devno, method, 70 52 (sysarg_t) ucode); -
uspace/lib/drv/generic/interrupt.c
r8d1f92f ra18a8b9 44 44 #include "private/driver.h" 45 45 46 static irq_cmd_t default_cmds[] = { 47 { 48 .cmd = CMD_ACCEPT 49 } 50 }; 51 52 static const irq_code_t default_pseudocode = { 53 0, 54 NULL, 55 ARRAY_SIZE(default_cmds), 56 default_cmds 57 }; 58 46 59 int register_interrupt_handler(ddf_dev_t *dev, int irq, 47 60 interrupt_handler_t *handler, const irq_code_t *pseudocode) -
uspace/srv/net/dhcp/dhcp.c
r8d1f92f ra18a8b9 562 562 } 563 563 564 /* XXX Work around multiple simultaneous sessions issue */565 dhcp_transport_fini(&dlink->dt);566 567 564 log_msg(LOG_DEFAULT, LVL_NOTE, "%s: Successfully configured.", 568 565 dlink->link_info.name); -
uspace/srv/net/dhcp/transport.c
r8d1f92f ra18a8b9 95 95 int rc; 96 96 97 if (dt->fd < 0) {98 /* Terminated */99 return EIO;100 }101 102 97 src_addr_size = sizeof(src_addr); 103 98 rc = recvfrom(dt->fd, msgbuf, MAX_MSG_SIZE, 0, … … 171 166 { 172 167 closesocket(dt->fd); 173 dt->fd = -1;174 168 } 175 169
Note:
See TracChangeset
for help on using the changeset viewer.