code
stringlengths
1
2.01M
repo_name
stringlengths
3
62
path
stringlengths
1
267
language
stringclasses
231 values
license
stringclasses
13 values
size
int64
1
2.01M
/* * (C) Copyright 2008 * Marvell Semiconductor <www.marvell.com> * Written-by: Prafulla Wadaskar <prafulla@marvell.com> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Pu...
1001-study-uboot
tools/kwbimage.c
C
gpl3
10,585
/* getline.c -- Replacement for GNU C library function getline Copyright (C) 1993, 1996, 2001, 2002 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of...
1001-study-uboot
tools/getline.c
C
gpl3
2,914
#!/bin/sh usage() { ( echo "Usage: $0 <board IP> [board port]" echo "" echo "If port is not specified, '6666' will be used" [ -z "$*" ] && exit 0 echo "" echo "ERROR: $*" exit 1 ) 1>&2 exit $? } while [ -n "$1" ] ; do case $1 in -h|--help) usage;; --) break;; -*) usage "Invalid option $...
1001-study-uboot
tools/netconsole
Shell
gpl3
1,033
# # (C) Copyright 2000-2006 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. # # See file CREDITS for list of people who contributed to this # project. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Softwa...
1001-study-uboot
tools/Makefile
Makefile
gpl3
7,655
# # Sed script to parse CPP macros and generate output usable by make # # It is expected that this script is fed the output of 'gpp -dM' # which preprocesses the common.h header files and outputs the final # list of CPP macros (and whitespace is sanitized) # # Only process values prefixed with #define CONFIG_ /^#defin...
1001-study-uboot
tools/scripts/define2mk.sed
sed
gpl3
950
#!/bin/sh # Adapted from Linux kernel's "Kbuild": # commit 1cdf25d704f7951d02a04064c97db547d6021872 # Author: Christoph Lameter <clameter@sgi.com> mkdir -p $(dirname $2) # Default sed regexp - multiline due to syntax constraints SED_CMD="/^->/{s:->#\(.*\):/* \1 */:; \ s:^->\([^ ]*\) [\$#]*\([-0-9]*\) \(.*\):#define...
1001-study-uboot
tools/scripts/make-asm-offsets
Shell
gpl3
689
/* * (C) Copyright 2000 * Murray Jensen <Murray.Jensen@csiro.au> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundat...
1001-study-uboot
tools/gdb/gdbcont.c
C
gpl3
2,044
/* * (C) Copyright 2000 * Murray Jensen <Murray.Jensen@csiro.au> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundat...
1001-study-uboot
tools/gdb/serial.c
C
gpl3
3,164
/* * (C) Copyright 2000 * Murray Jensen <Murray.Jensen@csiro.au> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundat...
1001-study-uboot
tools/gdb/error.c
C
gpl3
1,749
/* * taken from gdb/remote.c * * I am only interested in the write to memory stuff - everything else * has been ripped out * * all the copyright notices etc have been left in */ /* enough so that it will compile */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> /*nicked from gcc....
1001-study-uboot
tools/gdb/remote.c
C
gpl3
24,491
/* * (C) Copyright 2000 * Murray Jensen <Murray.Jensen@csiro.au> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundat...
1001-study-uboot
tools/gdb/serial.h
C
gpl3
1,186
/* * (C) Copyright 2000 * Murray Jensen <Murray.Jensen@csiro.au> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundat...
1001-study-uboot
tools/gdb/remote.h
C
gpl3
1,034
# # (C) Copyright 2006 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. # # (C) Copyright 2000 # Murray Jensen <Murray.Jensen@csiro.au> # # See file CREDITS for list of people who contributed to this # project. # # This program is free software; you can redistribute it and/or # modify it under the terms of the G...
1001-study-uboot
tools/gdb/Makefile
Makefile
gpl3
1,983
/* * (C) Copyright 2000 * Murray Jensen <Murray.Jensen@csiro.au> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundat...
1001-study-uboot
tools/gdb/gdbsend.c
C
gpl3
3,223
/* * (C) Copyright 2000 * Murray Jensen <Murray.Jensen@csiro.au> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundat...
1001-study-uboot
tools/gdb/error.h
C
gpl3
1,008
/* * String handling functions for PowerPC. * * Copyright (C) 1996 Paul Mackerras. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option...
1001-study-uboot
tools/updater/ppcstring.S
Unix Assembly
gpl3
3,033
/* * linux/lib/string.c * * Copyright (C) 1991, 1992 Linus Torvalds */ /* * stupid library routines.. The optimized versions should generally be found * as inline code in <asm-xx/string.h> * * These are buggy as well.. */ #include <linux/types.h> #include <linux/string.h> #include <malloc.h> #define __HA...
1001-study-uboot
tools/updater/string.c
C
gpl3
5,390
volatile int __dummy = 0xDEADBEEF;
1001-study-uboot
tools/updater/dummy.c
C
gpl3
35
/* * (C) Copyright 2001 * Josh Huber <huber@mclx.com>, Mission Critical Linux, Inc. * * (C) Copyright 2002 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * mod...
1001-study-uboot
tools/updater/flash_hw.c
C
gpl3
14,406
/* * (C) Copyright 2000 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free S...
1001-study-uboot
tools/updater/ctype.c
C
gpl3
2,201
# # (C) Copyright 2000-2006 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. # # See file CREDITS for list of people who contributed to this # project. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Softwa...
1001-study-uboot
tools/updater/Makefile
Makefile
gpl3
3,461
/* * (C) Copyright 2000-2006 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the F...
1001-study-uboot
tools/updater/flash.c
C
gpl3
5,120
/* * (C) Copyright 2000 * Wolfgang Denk, DENX Software Engineering, wd@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free S...
1001-study-uboot
tools/updater/cmd_flash.c
C
gpl3
10,285
#include <common.h> #include <exports.h> extern unsigned long __dummy; void do_reset (void); void do_updater(void); void _main(void) { int i; printf("U-Boot Firmware Updater\n\n\n"); printf("****************************************************\n" "* ATTENTION!! PLEASE READ THIS NOTICE CAREFULLY! ...
1001-study-uboot
tools/updater/update.c
C
gpl3
1,824
#include <common.h> #include <asm/processor.h> #include <memio.h> #include <linux/ctype.h> static __inline__ unsigned long get_msr(void) { unsigned long msr; asm volatile("mfmsr %0" : "=r" (msr) :); return msr; } static __inline__ void set_msr(unsigned long msr) { asm volatile("mtmsr %0" : : "r" (msr)); } stati...
1001-study-uboot
tools/updater/utils.c
C
gpl3
3,028
/* * (C) Copyright 2008 Semihalf * * (C) Copyright 2000-2004 * DENX Software Engineering * Wolfgang Denk, wd@denx.de * * Updated-by: Prafulla Wadaskar <prafulla@marvell.com> * FIT image specific code abstracted from mkimage.c * some functions added to address abstraction * * All rights reserved. * * This...
1001-study-uboot
tools/fit_image.c
C
gpl3
5,074
<?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?> <?php // (C) Copyright 2001 // Murray Jensen <Murray.Jensen@csiro.au> // CSIRO Manufacturing Science and Technology, Preston Lab // doedit page (hymod_bddb / boards) require("defs.php"); pg_head("$bddb_label - Add Log Entry Results"); ...
1001-study-uboot
tools/bddb/donewlog.php
PHP
gpl3
2,106
<?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?> <?php // (C) Copyright 2001 // Murray Jensen <Murray.Jensen@csiro.au> // CSIRO Manufacturing Science and Technology, Preston Lab // edit page (hymod_bddb / boards) require("defs.php"); pg_head("$bddb_label - New Board Registration"); ?...
1001-study-uboot
tools/bddb/new.php
PHP
gpl3
3,145
<?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?> <?php // (C) Copyright 2001 // Murray Jensen <Murray.Jensen@csiro.au> // CSIRO Manufacturing Science and Technology, Preston Lab // dodelete page (hymod_bddb / boards) require("defs.php"); pg_head("$bddb_label - Delete Log Entry Result...
1001-study-uboot
tools/bddb/dodellog.php
PHP
gpl3
1,430
<?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?> <?php // (C) Copyright 2001 // Murray Jensen <Murray.Jensen@csiro.au> // CSIRO Manufacturing Science and Technology, Preston Lab require("defs.php"); pg_head("$bddb_label - Unknown Submit Type"); ?> <center> <font size="+4"> <b> ...
1001-study-uboot
tools/bddb/badsubmit.php
PHP
gpl3
660
<?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?> <?php // (C) Copyright 2001 // Murray Jensen <Murray.Jensen@csiro.au> // CSIRO Manufacturing Science and Technology, Preston Lab // doedit page (hymod_bddb / boards) require("defs.php"); pg_head("$bddb_label - Board Registration Result...
1001-study-uboot
tools/bddb/donew.php
PHP
gpl3
5,533
<?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?> <?php // (C) Copyright 2001 // Murray Jensen <Murray.Jensen@csiro.au> // CSIRO Manufacturing Science and Technology, Preston Lab $serno=isset($_REQUEST['serno'])?$_REQUEST['serno']:''; $submit=isset($_REQUEST['submit'])?$_REQUEST['submit...
1001-study-uboot
tools/bddb/execute.php
PHP
gpl3
601
<?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?> <?php // (C) Copyright 2001 // Murray Jensen <Murray.Jensen@csiro.au> // CSIRO Manufacturing Science and Technology, Preston Lab // contains mysql user id and password - keep secret require("config.php"); if (isset($_REQUEST['logout']))...
1001-study-uboot
tools/bddb/defs.php
PHP
gpl3
16,949
<?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?> <?php // (C) Copyright 2001 // Murray Jensen <Murray.Jensen@csiro.au> // CSIRO Manufacturing Science and Technology, Preston Lab // list page (hymod_bddb / boards) require("defs.php"); pg_head("$bddb_label - Browse Board Log"); $sern...
1001-study-uboot
tools/bddb/brlog.php
PHP
gpl3
2,821
<?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?> <?php // (C) Copyright 2001 // Murray Jensen <Murray.Jensen@csiro.au> // CSIRO Manufacturing Science and Technology, Preston Lab // edit page (hymod_bddb / boards) require("defs.php"); pg_head("$bddb_label - New Log Entry"); if (!iss...
1001-study-uboot
tools/bddb/newlog.php
PHP
gpl3
1,170
<?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?> <?php // (C) Copyright 2001 // Murray Jensen <Murray.Jensen@csiro.au> // CSIRO Manufacturing Science and Technology, Preston Lab // edit page (hymod_bddb / boards) require("defs.php"); pg_head("$bddb_label - Edit Board Registration"); ...
1001-study-uboot
tools/bddb/edit.php
PHP
gpl3
3,376
<?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?> <?php // (C) Copyright 2001 // Murray Jensen <Murray.Jensen@csiro.au> // CSIRO Manufacturing Science and Technology, Preston Lab // doedit page (hymod_bddb / boards) require("defs.php"); pg_head("$bddb_label - Edit Board Results"); i...
1001-study-uboot
tools/bddb/doedit.php
PHP
gpl3
5,206
<?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?> <?php // (C) Copyright 2001 // Murray Jensen <Murray.Jensen@csiro.au> // CSIRO Manufacturing Science and Technology, Preston Lab // doedit page (hymod_bddb / boards) require("defs.php"); pg_head("$bddb_label - Edit Log Entry Results");...
1001-study-uboot
tools/bddb/doedlog.php
PHP
gpl3
1,953
<?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?> <?php // (C) Copyright 2001 // Murray Jensen <Murray.Jensen@csiro.au> // CSIRO Manufacturing Science and Technology, Preston Lab // edit page (hymod_bddb / boards) require("defs.php"); pg_head("$bddb_label - Edit Board Log Entry"); i...
1001-study-uboot
tools/bddb/edlog.php
PHP
gpl3
1,965
<?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?> <?php // (C) Copyright 2001 // Murray Jensen <Murray.Jensen@csiro.au> // CSIRO Manufacturing Science and Technology, Preston Lab // dodelete page (hymod_bddb / boards) require("defs.php"); pg_head("$bddb_label - Delete Board Results");...
1001-study-uboot
tools/bddb/dodelete.php
PHP
gpl3
1,619
<?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?> <?php // (C) Copyright 2001 // Murray Jensen <Murray.Jensen@csiro.au> // CSIRO Manufacturing Science and Technology, Preston Lab // list page (hymod_bddb / boards) require("defs.php"); $serno=isset($_REQUEST['serno'])?$_REQUEST['serno'...
1001-study-uboot
tools/bddb/browse.php
PHP
gpl3
4,244
<?php // (C) Copyright 2001 // Murray Jensen <Murray.Jensen@csiro.au> // CSIRO Manufacturing Science and Technology, Preston Lab // mysql database access info $mysql_user="fred"; $mysql_pw="apassword"; $mysql_db="mydbname"; // where to put the eeprom config files $bddb_cfgdir = '/tftpboot/bddb'; // what th...
1001-study-uboot
tools/bddb/config.php
PHP
gpl3
384
BODY { background: #e0ffff; color: #000000; font-family: Arial, Verdana, Helvetica; } H1 { font-family: "Copperplate Gothic Bold"; background: transparent; color: #993300; text-align: center; } H2, H3, H4, H5 { background: transparent; color: #993300; margin-top: 4%; text-align: center; } Body.Plain Div.A...
1001-study-uboot
tools/bddb/bddb.css
CSS
gpl3
3,660
<?php // php pages made with phpMyBuilder <http://kyber.dk/phpMyBuilder> ?> <?php // (C) Copyright 2001 // Murray Jensen <Murray.Jensen@csiro.au> // CSIRO Manufacturing Science and Technology, Preston Lab require("defs.php"); pg_head("$bddb_label"); ?> <font size="+4"> <form action=execute.php method=POST> ...
1001-study-uboot
tools/bddb/index.php
PHP
gpl3
926
/* * (C) Copyright 2008 Semihalf * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program is distribut...
1001-study-uboot
tools/fdt_host.h
C
gpl3
993
/* * (C) Copyright 2010 * Linaro LTD, www.linaro.org * Author: John Rigby <john.rigby@linaro.org> * Based on TI's signGP.c * * (C) Copyright 2009 * Stefano Babic, DENX Software Engineering, sbabic@denx.de. * * (C) Copyright 2008 * Marvell Semiconductor <www.marvell.com> * Written-by: Prafulla Wadaskar <prafu...
1001-study-uboot
tools/omapimage.c
C
gpl3
5,539
/* * (C) Copyright 2001 * Paolo Scaffardi, AIRVENT SAM s.p.a - RIMINI(ITALY), arsenio@tin.it * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published ...
1001-study-uboot
tools/envcrc.c
C
gpl3
4,244
/* * Freescale i.MX28 image generator * * Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com> * on behalf of DENX Software Engineering GmbH * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the term...
1001-study-uboot
tools/mxsboot.c
C
gpl3
15,810
/* * (C) Copyright 2010 * Linaro LTD, www.linaro.org * Author John Rigby <john.rigby@linaro.org> * Based on TI's signGP.c * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General ...
1001-study-uboot
tools/omapimage.h
C
gpl3
1,329
/* * (C) Copyright 2008 Semihalf * * (C) Copyright 2000-2004 * DENX Software Engineering * Wolfgang Denk, wd@denx.de * * Updated-by: Prafulla Wadaskar <prafulla@marvell.com> * default_image specific code abstracted from mkimage.c * some functions added to address abstraction * * All rights reserved. * * ...
1001-study-uboot
tools/default_image.c
C
gpl3
4,215
/* * (C) Copyright 2009 * Stefano Babic, DENX Software Engineering, sbabic@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Fr...
1001-study-uboot
tools/imximage.h
C
gpl3
4,107
/* * (C) Copyright 2011 * Heiko Schocher, DENX Software Engineering, hs@denx.de. * * Vased on: * (C) Copyright 2009 * Stefano Babic, DENX Software Engineering, sbabic@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it...
1001-study-uboot
tools/ublimage.h
C
gpl3
2,750
/* * Copyright 2009 Extreme Engineering Solutions, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. ...
1001-study-uboot
tools/os_support.c
C
gpl3
1,034
/* * (C) Copyright 2003 Intracom S.A. * Pantelis Antoniou <panto@intracom.gr> * * This little program makes an exhaustive search for the * correct terms of pdf, mfi, mfn, mfd, s, dbrmo, in PLPRCR. * The goal is to produce a gclk2 from a xin input, while respecting * all the restrictions on their combination. * ...
1001-study-uboot
tools/mpc86x_clk.c
C
gpl3
5,222
int getline(char **lineptr, size_t *n, FILE *stream);
1001-study-uboot
tools/getline.h
C
gpl3
54
/* * (C) Copyright 2011 * Stefano Babic, DENX Software Engineering, sbabic@denx.de. * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Fr...
1001-study-uboot
tools/aisimage.h
C
gpl3
2,031
/* * Copyright 2009 Extreme Engineering Solutions, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. ...
1001-study-uboot
tools/os_support.h
C
gpl3
1,115
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #ifndef BUFSIZ # define BUFSIZ 4096 #endif #undef BUFSIZ # define BUFSIZ 64 int main (void) { short ibuff[BUFSIZ], obuff[BUFSIZ]; int rc, i, len; while ((rc = read (0, ibuff, sizeof (ibuff))) > 0) { memset (obuff, 0, sizeof (obuff));...
1001-study-uboot
tools/xway-swap-bytes.c
C
gpl3
647
/* * Program for finding M & N values for DPLLs * To be run on Host PC * * (C) Copyright 2010 * Texas Instruments, <www.ti.com> * * Aneesh V <aneesh@ti.com> * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify ...
1001-study-uboot
tools/omap/clocks_get_m_n.c
C
gpl3
6,504
/* * Copyright 2008 Extreme Engineering Solutions, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. ...
1001-study-uboot
tools/mingw_support.h
C
gpl3
1,746
#!/bin/sh # # This scripts adds local version information from the version # control systems git, mercurial (hg) and subversion (svn). # # It was originally copied from the Linux kernel v3.2.0-rc4 and modified # to support the U-Boot build-system. # usage() { echo "Usage: $0 [--save-scmversion] [srctree]" >&2 exit 1...
1001-study-uboot
tools/setlocalversion
Shell
gpl3
4,023
/* * (C) Copyright 2011 * Heiko Schocher, DENX Software Engineering, hs@denx.de. * * Based on: * (C) Copyright 2009 * Stefano Babic, DENX Software Engineering, sbabic@denx.de. * * (C) Copyright 2008 * Marvell Semiconductor <www.marvell.com> * Written-by: Prafulla Wadaskar <prafulla@marvell.com> * * See file...
1001-study-uboot
tools/ublimage.c
C
gpl3
7,248
/* * cramfs.c * * Copyright (C) 1999 Linus Torvalds * * Copyright (C) 2000-2002 Transmeta Corporation * * Copyright (C) 2003 Kai-Uwe Bloem, * Auerswald GmbH & Co KG, <linux-development@auerswald.de> * - adapted from the www.tuxbox.org u-boot tree, added "ls" command * * This program is free software; you can...
1001-study-uboot
fs/cramfs/cramfs.c
C
gpl3
9,104
/* * uncompress.c * * Copyright (C) 1999 Linus Torvalds * Copyright (C) 2000-2002 Transmeta Corporation * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License (Version 2) as * published by the Free Software Foundation. * * cramfs interfa...
1001-study-uboot
fs/cramfs/uncompress.c
C
gpl3
1,953
# # (C) Copyright 2000-2006 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. # # See file CREDITS for list of people who contributed to this # project. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Softwa...
1001-study-uboot
fs/cramfs/Makefile
Makefile
gpl3
1,435
# # (C) Copyright 2006 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. # # (C) Copyright 2003 # Pavel Bartusek, Sysgo Real-Time Solutions AG, pba@sysgo.de # # # See file CREDITS for list of people who contributed to this # project. # # This program is free software; you can redistribute it and/or # modify it un...
1001-study-uboot
fs/ext2/Makefile
Makefile
gpl3
1,476
/* * (C) Copyright 2004 * esd gmbh <www.esd-electronics.com> * Reinhard Arlt <reinhard.arlt@esd-electronics.com> * * based on code of fs/reiserfs/dev.c by * * (C) Copyright 2003 - 2004 * Sysgo AG, <www.elinos.com>, Pavel Bartusek <pba@sysgo.com> * * This program is free software; you can redistribute it...
1001-study-uboot
fs/ext2/dev.c
C
gpl3
3,549
/* * (C) Copyright 2004 * esd gmbh <www.esd-electronics.com> * Reinhard Arlt <reinhard.arlt@esd-electronics.com> * * based on code from grub2 fs/ext2.c and fs/fshelp.c by * * GRUB -- GRand Unified Bootloader * Copyright (C) 2003, 2004 Free Software Foundation, Inc. * * This program is free software; ...
1001-study-uboot
fs/ext2/ext2fs.c
C
gpl3
21,595
#include <common.h> #include <malloc.h> #include <linux/stat.h> #include <linux/time.h> #include <jffs2/jffs2.h> #include <jffs2/jffs2_1pass.h> #include <nand.h> #include "jffs2_nand_private.h" #define NODE_CHUNK 1024 /* size of memory allocation chunk in b_nodes */ /* Debugging switches */ #undef DEBUG_DIRENTS /...
1001-study-uboot
fs/jffs2/jffs2_nand_1pass.c
C
gpl3
26,002
/*------------------------------------------------------------------------- * Filename: mini_inflate.c * Version: $Id: mini_inflate.c,v 1.3 2002/01/24 22:58:42 rfeany Exp $ * Copyright: Copyright (C) 2001, Russ Dill * Author: Russ Dill <Russ.Dill@asu.edu> * Description: Mini inflate impleme...
1001-study-uboot
fs/jffs2/mini_inflate.c
C
gpl3
12,155
/* ------------------------------------------------------------------------- * Filename: jffs2.c * Version: $Id: jffs2_1pass.c,v 1.7 2002/01/25 01:56:47 nyet Exp $ * Copyright: Copyright (C) 2001, Russ Dill * Author: Russ Dill <Russ.Dill@asu.edu> * Description: Module to load kernel from jf...
1001-study-uboot
fs/jffs2/jffs2_1pass.c
C
gpl3
48,158
#ifndef jffs2_private_h #define jffs2_private_h #include <jffs2/jffs2.h> struct b_node { u32 offset; struct b_node *next; enum { CRC_UNKNOWN = 0, CRC_OK, CRC_BAD } datacrc; }; struct b_list { struct b_node *listTail; struct b_node *listHead; #ifdef CONFIG_SYS_JFFS2_SORT_FRAGMENTS struct b_node *listLast; int...
1001-study-uboot
fs/jffs2/jffs2_private.h
C
gpl3
1,957
# # (C) Copyright 2000-2006 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. # # See file CREDITS for list of people who contributed to this # project. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Softwa...
1001-study-uboot
fs/jffs2/Makefile
Makefile
gpl3
1,563
/* * JFFS2 -- Journalling Flash File System, Version 2. * * Copyright (C) 2001 Red Hat, Inc. * * Created by David Woodhouse <dwmw2@cambridge.redhat.com> * * The original JFFS, from which the design for JFFS2 was derived, * was designed and implemented by Axis Communications AB. * * The contents of this file a...
1001-study-uboot
fs/jffs2/compr_zlib.c
C
gpl3
1,865
/* * JFFS2 -- Journalling Flash File System, Version 2. * * Copyright (C) 2004 Patrik Kluba, * University of Szeged, Hungary * * For licensing information, see the file 'LICENCE' in the * jffs2 directory. * * $Id: compr_lzo.c,v 1.3 2004/06/23 16:34:39 havasi Exp $ * */ /* LZO1X-1 (and -999) compre...
1001-study-uboot
fs/jffs2/compr_lzo.c
C
gpl3
8,646
/* * JFFS2 -- Journalling Flash File System, Version 2. * * Copyright (C) 2001 Red Hat, Inc. * * Created by Arjan van de Ven <arjanv@redhat.com> * * The original JFFS, from which the design for JFFS2 was derived, * was designed and implemented by Axis Communications AB. * * The contents of this file are subje...
1001-study-uboot
fs/jffs2/compr_rtime.c
C
gpl3
2,720
/* * JFFS2 -- Journalling Flash File System, Version 2. * * Copyright (C) 2001 Red Hat, Inc. * * Created by Arjan van de Ven <arjanv@redhat.com> * * Heavily modified by Russ Dill <Russ.Dill@asu.edu> in an attempt at * a little more speed. * * The original JFFS, from which the design for JFFS2 was derived, * ...
1001-study-uboot
fs/jffs2/compr_rubin.c
C
gpl3
3,330
#ifndef jffs2_private_h #define jffs2_private_h #include <jffs2/jffs2.h> struct b_node { struct b_node *next; }; struct b_inode { struct b_inode *next; u32 offset; /* physical offset to beginning of real inode */ u32 version; u32 ino; u32 isize; u32 csize; }; struct b_dirent { struct b_dirent *next; u32 of...
1001-study-uboot
fs/jffs2/jffs2_nand_private.h
C
gpl3
2,721
/* * JFFS2 -- Journalling Flash File System, Version 2. * * Copyright © 2004 Ferenc Havasi <havasi@inf.u-szeged.hu>, * Zoltan Sogor <weth@inf.u-szeged.hu>, * Patrik Kluba <pajko@halom.u-szeged.hu>, * University of Szeged, Hungary * * For licensing information, see the file 'LICENCE' in this d...
1001-study-uboot
fs/jffs2/summary.h
C
gpl3
4,167
# # (C) Copyright 2000-2006 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. # # See file CREDITS for list of people who contributed to this # project. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Softwa...
1001-study-uboot
fs/Makefile
Makefile
gpl3
1,263
/* * Copyright 2000-2002 by Hans Reiser, licensing governed by reiserfs/README * * GRUB -- GRand Unified Bootloader * Copyright (C) 2000, 2001 Free Software Foundation, Inc. * * (C) Copyright 2003 - 2004 * Sysgo AG, <www.elinos.com>, Pavel Bartusek <pba@sysgo.com> * * * This program is free software;...
1001-study-uboot
fs/reiserfs/reiserfs.c
C
gpl3
28,564
/* * Copyright 2000-2002 by Hans Reiser, licensing governed by reiserfs/README * * GRUB -- GRand Unified Bootloader * Copyright (C) 2000, 2001 Free Software Foundation, Inc. * * (C) Copyright 2003 - 2004 * Sysgo AG, <www.elinos.com>, Pavel Bartusek <pba@sysgo.com> * * * This program is free software;...
1001-study-uboot
fs/reiserfs/reiserfs_private.h
C
gpl3
18,568
/* * mode_string implementation for busybox * * Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License...
1001-study-uboot
fs/reiserfs/mode_string.c
C
gpl3
4,038
# # (C) Copyright 2006 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. # # (C) Copyright 2003 # Pavel Bartusek, Sysgo Real-Time Solutions AG, pba@sysgo.de # # # See file CREDITS for list of people who contributed to this # project. # # This program is free software; you can redistribute it and/or # modify it un...
1001-study-uboot
fs/reiserfs/Makefile
Makefile
gpl3
1,496
/* * (C) Copyright 2003 - 2004 * Sysgo AG, <www.elinos.com>, Pavel Bartusek <pba@sysgo.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (...
1001-study-uboot
fs/reiserfs/dev.c
C
gpl3
3,311
# # # See file CREDITS for list of people who contributed to this # project. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of # the License, or (at your option) any later ve...
1001-study-uboot
fs/fat/Makefile
Makefile
gpl3
1,392
/* * file.c * * Mini "VFS" by Marcus Sundberg * * 2002-07-28 - rjones@nexus-tech.net - ported to ppcboot v1.1.6 * 2003-03-10 - kharris@nexus-tech.net - ported to uboot * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or ...
1001-study-uboot
fs/fat/file.c
C
gpl3
4,071
/* * fat_write.c * * R/W (V)FAT 12/16/32 filesystem implementation by Donggeun Kim * * See file CREDITS for list of people who contributed to this * project. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Fr...
1001-study-uboot
fs/fat/fat_write.c
C
gpl3
25,759
/* * fat.c * * R/O (V)FAT 12/16/32 filesystem implementation by Marcus Sundberg * * 2002-07-28 - rjones@nexus-tech.net - ported to ppcboot v1.1.6 * 2003-03-10 - kharris@nexus-tech.net - ported to uboot * * See file CREDITS for list of people who contributed to this * project. * * This program is free softwar...
1001-study-uboot
fs/fat/fat.c
C
gpl3
26,752
/* * This file is part of UBIFS. * * Copyright (C) 2006-2008 Nokia Corporation * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published by * the Free Software Foundation. * * This program is distributed in the hope th...
1001-study-uboot
fs/ubifs/scan.c
C
gpl3
9,083
/* * crc16.c * * This source code is licensed under the GNU General Public License, * Version 2. See the file COPYING for more details. */ #include <linux/types.h> #include "crc16.h" /** CRC table for the CRC-16. The poly is 0x8005 (x^16 + x^15 + x^2 + 1) */ u16 const crc16_table[256] = { 0x0000, 0xC0C1, 0...
1001-study-uboot
fs/ubifs/crc16.c
C
gpl3
2,689
/* * This file is part of UBIFS. * * Copyright (C) 2006-2008 Nokia Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published by * the Free Software Foundation. * * This program is distributed in the hope t...
1001-study-uboot
fs/ubifs/super.c
C
gpl3
32,828
/* * This file is part of UBIFS. * * Copyright (C) 2006-2008 Nokia Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published by * the Free Software Foundation. * * This program is distributed in the hope t...
1001-study-uboot
fs/ubifs/log.c
C
gpl3
3,013
/* * This file is part of UBIFS. * * Copyright (C) 2006-2008 Nokia Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published by * the Free Software Foundation. * * This program is distributed in the hope t...
1001-study-uboot
fs/ubifs/orphan.c
C
gpl3
10,049
/* * This file is part of UBIFS. * * Copyright (C) 2006-2008 Nokia Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published by * the Free Software Foundation. * * This program is distributed in the hope t...
1001-study-uboot
fs/ubifs/tnc.c
C
gpl3
73,836
# # (C) Copyright 2006 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. # # (C) Copyright 2003 # Pavel Bartusek, Sysgo Real-Time Solutions AG, pba@sysgo.de # # # See file CREDITS for list of people who contributed to this # project. # # This program is free software; you can redistribute it and/or # modify it un...
1001-study-uboot
fs/ubifs/Makefile
Makefile
gpl3
1,673
/* * This file is part of UBIFS. * * Copyright (C) 2006-2008 Nokia Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published by * the Free Software Foundation. * * This program is distributed in the hope t...
1001-study-uboot
fs/ubifs/master.c
C
gpl3
9,387
/* * This file is part of UBIFS. * * Copyright (C) 2006-2008 Nokia Corporation. * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published by * the Free Software Foundation. * * This program is distributed in the hope t...
1001-study-uboot
fs/ubifs/debug.h
C
gpl3
15,086
/* * This file is part of UBIFS. * * Copyright (C) 2006-2008 Nokia Corporation. * Copyright (C) 2006, 2007 University of Szeged, Hungary * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published by * the Free Software F...
1001-study-uboot
fs/ubifs/io.c
C
gpl3
10,030
/* * This file is part of UBIFS. * * Copyright (C) 2006-2008 Nokia Corporation * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as published by * the Free Software Foundation. * * This program is distributed in the hope th...
1001-study-uboot
fs/ubifs/debug.c
C
gpl3
4,159