]> git.pld-linux.org Git - packages/busybox.git/commitdiff
- update for 1.0.0pre1
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Sat, 2 Aug 2003 21:57:40 +0000 (21:57 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    busybox-raid_start.patch -> 1.2

busybox-raid_start.patch

index 1e2cd41e8a00ee08a9e74a843fe7acd4674344df..a9d04e9e834a9a94ba4e8a4abf1573afbee6992a 100644 (file)
-diff -u busybox-0.60.5/Config.h busybox-0.60.5-rd/Config.h
---- busybox-0.60.5/Config.h    2003-07-01 01:55:38.000000000 +0200
-+++ busybox-0.60.5-rd/Config.h 2003-07-01 01:53:40.000000000 +0200
-@@ -93,6 +93,7 @@
- #define BB_PRINTF
- #define BB_PS
- #define BB_PWD
-+#define BB_RAID_START
- //#define BB_RDATE
- //#define BB_READLINK
- #define BB_REBOOT
-diff -u busybox-0.60.5/applets.h busybox-0.60.5-rd/applets.h
---- busybox-0.60.5/applets.h   2002-09-18 00:04:28.000000000 +0200
-+++ busybox-0.60.5-rd/applets.h        2003-07-01 01:53:33.000000000 +0200
-@@ -320,6 +320,9 @@
- #ifdef BB_PWD
-       APPLET(pwd, pwd_main, _BB_DIR_BIN)
+diff -urN busybox-1.00-pre2.org/include/applets.h busybox-1.00-pre2/include/applets.h
+--- busybox-1.00-pre2.org/include/applets.h    2003-08-02 23:46:48.000000000 +0200
++++ busybox-1.00-pre2/include/applets.h        2003-08-02 23:54:03.000000000 +0200
+@@ -457,6 +457,9 @@
+ #ifdef CONFIG_PWD
+       APPLET(pwd, pwd_main, _BB_DIR_BIN, _BB_SUID_NEVER)
  #endif
-+#ifdef BB_RAID_START
-+      APPLET(raid_start, raid_start_main, _BB_DIR_SBIN)
++#ifdef CONFIG_RAID_START
++      APPLET(raid_start, raid_start_main, _BB_DIR_SBIN, __BB_SUID_NEVER)
 +#endif
- #ifdef BB_RDATE
-       APPLET(rdate, rdate_main, _BB_DIR_USR_BIN)
+ #ifdef CONFIG_RDATE
+       APPLET(rdate, rdate_main, _BB_DIR_USR_SBIN, _BB_SUID_NEVER)
  #endif
-diff -u busybox-0.60.5/raid_start.c busybox-0.60.5-rd/raid_start.c
---- busybox-0.60.5/raid_start.c        2003-07-01 01:55:57.000000000 +0200
-+++ busybox-0.60.5-rd/raid_start.c     2003-07-01 01:44:32.000000000 +0200
+diff -urN busybox-1.00-pre2.org/include/usage.h busybox-1.00-pre2/include/usage.h
+--- busybox-1.00-pre2.org/include/usage.h      2003-08-02 23:46:48.000000000 +0200
++++ busybox-1.00-pre2/include/usage.h  2003-08-02 23:52:05.000000000 +0200
+@@ -1924,6 +1924,12 @@
+       "$ pwd\n" \
+       "/root\n"
++#define raid_start_trivial_usage \
++      "MD_DEVICE DISK_DEVICE"
++#define raid_start_full_usage \
++      "Start MD_DEVICE, taking superblock from DISK_DEVICE.\n" \
++      "Example: raid_start /dev/md0 /dev/sdb"
++      
+ #define rdate_trivial_usage \
+       "[-sp] HOST"
+ #define rdate_full_usage \
+diff -urN busybox-1.00-pre2.org/libbb/xfuncs.c.orig busybox-1.00-pre2/libbb/xfuncs.c.orig
+--- busybox-1.00-pre2.org/libbb/xfuncs.c.orig  1970-01-01 01:00:00.000000000 +0100
++++ busybox-1.00-pre2/libbb/xfuncs.c.orig      2003-08-02 23:48:39.000000000 +0200
+@@ -0,0 +1,196 @@
++/* vi: set sw=4 ts=4: */
++/*
++ * Utility routines.
++ *
++ * Copyright (C) 1999-2003 by Erik Andersen <andersen@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, or
++ * (at your option) any later version.
++ *
++ * This program is distributed in the hope that it will be useful,
++ * but WITHOUT ANY WARRANTY; without even the implied warranty of
++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
++ * General Public License for more details.
++ *
++ * You should have received a copy of the GNU General Public License
++ * along with this program; if not, write to the Free Software
++ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
++ */
++
++#include <sys/types.h>
++#include <sys/stat.h>
++#include <stdio.h>
++#include <string.h>
++#include <stdlib.h>
++#include <unistd.h>
++#include <fcntl.h>
++#include "libbb.h"
++
++
++#ifndef DMALLOC
++#ifdef L_xmalloc
++extern void *xmalloc(size_t size)
++{
++      void *ptr = malloc(size);
++      if (ptr == NULL && size != 0)
++              bb_error_msg_and_die(bb_msg_memory_exhausted);
++      return ptr;
++}
++#endif
++
++#ifdef L_xrealloc
++extern void *xrealloc(void *ptr, size_t size)
++{
++      ptr = realloc(ptr, size);
++      if (ptr == NULL && size != 0)
++              bb_error_msg_and_die(bb_msg_memory_exhausted);
++      return ptr;
++}
++#endif
++
++#ifdef L_xcalloc
++extern void *xcalloc(size_t nmemb, size_t size)
++{
++      void *ptr = calloc(nmemb, size);
++      if (ptr == NULL && nmemb != 0 && size != 0)
++              bb_error_msg_and_die(bb_msg_memory_exhausted);
++      return ptr;
++}
++#endif
++#endif /* DMALLOC */
++
++#ifdef L_xstrdup
++extern char * bb_xstrdup (const char *s) {
++      char *t;
++
++      if (s == NULL)
++              return NULL;
++
++      t = strdup (s);
++
++      if (t == NULL)
++              bb_error_msg_and_die(bb_msg_memory_exhausted);
++
++      return t;
++}
++#endif
++
++#ifdef L_xstrndup
++extern char * bb_xstrndup (const char *s, int n) {
++      char *t;
++
++      if (s == NULL)
++              bb_error_msg_and_die("bb_xstrndup bug");
++
++      t = xmalloc(++n);
++      
++      return safe_strncpy(t,s,n);
++}
++#endif
++
++#ifdef L_xfopen
++FILE *bb_xfopen(const char *path, const char *mode)
++{
++      FILE *fp;
++      if ((fp = fopen(path, mode)) == NULL)
++              bb_perror_msg_and_die("%s", path);
++      return fp;
++}
++#endif
++
++#ifdef L_xopen
++extern int bb_xopen(const char *pathname, int flags)
++{
++      int ret;
++      
++      ret = open(pathname, flags, 0777);
++      if (ret == -1) {
++              bb_perror_msg_and_die("%s", pathname);
++      }
++      return ret;
++}
++#endif
++
++#ifdef L_xread
++extern ssize_t bb_xread(int fd, void *buf, size_t count)
++{
++      ssize_t size;
++
++      size = read(fd, buf, count);
++      if (size == -1) {
++              bb_perror_msg_and_die("Read error");
++      }
++      return(size);
++}
++#endif
++
++#ifdef L_xread_all
++extern void bb_xread_all(int fd, void *buf, size_t count)
++{
++      ssize_t size;
++
++      while (count) {
++              if ((size = bb_xread(fd, buf, count)) == 0) {   /* EOF */
++                      bb_error_msg_and_die("Short read");
++              }
++              count -= size;
++      }
++      return;
++}
++#endif
++
++#ifdef L_xread_char
++extern unsigned char bb_xread_char(int fd)
++{
++      char tmp;
++      
++      bb_xread_all(fd, &tmp, 1);
++
++      return(tmp);    
++}
++#endif
++
++#ifdef L_xferror
++extern void bb_xferror(FILE *fp, const char *fn)
++{
++      if (ferror(fp)) {
++              bb_error_msg_and_die("%s", fn);
++      }
++}
++#endif
++
++#ifdef L_xferror_stdout
++extern void bb_xferror_stdout(void)
++{
++      bb_xferror(stdout, bb_msg_standard_output);
++}
++#endif
++
++#ifdef L_xfflush_stdout
++extern void bb_xfflush_stdout(void)
++{
++      if (fflush(stdout)) {
++              bb_perror_msg_and_die(bb_msg_standard_output);
++      }
++}
++#endif
++
++#ifdef L_strlen
++/* Stupid gcc always includes its own builtin strlen()... */
++#undef strlen
++size_t bb_strlen(const char *string)
++{
++          return(strlen(string));
++}
++#endif
++
++/* END CODE */
++/*
++Local Variables:
++c-file-style: "linux"
++c-basic-offset: 4
++tab-width: 4
++End:
++*/
+diff -urN busybox-1.00-pre2.org/libbb/xfuncs.c.rej busybox-1.00-pre2/libbb/xfuncs.c.rej
+--- busybox-1.00-pre2.org/libbb/xfuncs.c.rej   1970-01-01 01:00:00.000000000 +0100
++++ busybox-1.00-pre2/libbb/xfuncs.c.rej       2003-08-02 23:49:05.000000000 +0200
+@@ -0,0 +1,70 @@
++***************
++*** 35,41 ****
++  #ifndef DMALLOC
++  extern void *xmalloc(size_t size)
++  {
++-     void *ptr = malloc(size);
++  
++      if (!ptr)
++              error_msg_and_die(memory_exhausted);
++--- 35,46 ----
++  #ifndef DMALLOC
++  extern void *xmalloc(size_t size)
++  {
+++     void *ptr;
+++ 
+++     if (size == 0)
+++             size++;
+++             
+++     ptr = malloc(size);
++  
++      if (!ptr)
++              error_msg_and_die(memory_exhausted);
++***************
++*** 54,59 ****
++              return NULL;
++      }
++  
++      ptr = realloc(old, size);
++      if (!ptr)
++              error_msg_and_die(memory_exhausted);
++--- 59,67 ----
++              return NULL;
++      }
++  
+++     if (size == 0)
+++             size++;
+++ 
++      ptr = realloc(old, size);
++      if (!ptr)
++              error_msg_and_die(memory_exhausted);
++***************
++*** 62,70 ****
++  
++  extern void *xcalloc(size_t nmemb, size_t size)
++  {
++-     void *ptr = calloc(nmemb, size);
++      if (!ptr)
++              error_msg_and_die(memory_exhausted);
++      return ptr;
++  }
++  
++--- 70,87 ----
++  
++  extern void *xcalloc(size_t nmemb, size_t size)
++  {
+++     void *ptr;
+++     
+++     if (nmemb == 0)
+++             nmemb++;
+++             
+++     if (size == 0)
+++             size++;
+++             
+++     ptr = calloc(nmemb, size);
++      if (!ptr)
++              error_msg_and_die(memory_exhausted);
+++             
++      return ptr;
++  }
++  
+diff -urN busybox-1.00-pre2.org/sysdeps/linux/defconfig busybox-1.00-pre2/sysdeps/linux/defconfig
+--- busybox-1.00-pre2.org/sysdeps/linux/defconfig      2003-08-02 23:46:49.000000000 +0200
++++ busybox-1.00-pre2/sysdeps/linux/defconfig  2003-08-02 23:55:23.000000000 +0200
+@@ -290,6 +290,7 @@
+ # CONFIG_FEATURE_USE_DEVPS_PATCH is not set
+ CONFIG_UMOUNT=y
+ # CONFIG_FEATURE_MOUNT_FORCE is not set
++CONFIG_RAID_START=y
+ #
+ # Common options for mount/umount
+diff -urN busybox-1.00-pre2.org/util-linux/Config.in busybox-1.00-pre2/util-linux/Config.in
+--- busybox-1.00-pre2.org/util-linux/Config.in 2003-08-02 23:46:49.000000000 +0200
++++ busybox-1.00-pre2/util-linux/Config.in     2003-08-02 23:58:22.000000000 +0200
+@@ -285,6 +285,12 @@
+         NFS filesystems.  Most people using BusyBox will also want to enable
+         the 'mount' utility.
++config CONFIG_RAID_START
++      bool "raid_start"
++      default y
++      help
++        Enable support for RAID starting.
++
+ config CONFIG_NFSMOUNT
+       bool "  Support mounting nfs file systems"
+       default n
+diff -urN busybox-1.00-pre2.org/util-linux/Makefile.in busybox-1.00-pre2/util-linux/Makefile.in
+--- busybox-1.00-pre2.org/util-linux/Makefile.in       2003-08-02 23:46:49.000000000 +0200
++++ busybox-1.00-pre2/util-linux/Makefile.in   2003-08-02 23:59:35.000000000 +0200
+@@ -38,6 +38,7 @@
+ UTILLINUX-$(CONFIG_MKSWAP)            += mkswap.o
+ UTILLINUX-$(CONFIG_MORE)              += more.o
+ UTILLINUX-$(CONFIG_MOUNT)             += mount.o
++UTILLINUX-$(CONFIG_RAID_START)                += raid_start.o
+ UTILLINUX-$(CONFIG_NFSMOUNT)          += nfsmount.o
+ UTILLINUX-$(CONFIG_PIVOT_ROOT)        += pivot_root.o
+ UTILLINUX-$(CONFIG_RDATE)             += rdate.o
+diff -urN busybox-1.00-pre2.org/util-linux/raid_start.c busybox-1.00-pre2/util-linux/raid_start.c
+--- busybox-1.00-pre2.org/util-linux/raid_start.c      1970-01-01 01:00:00.000000000 +0100
++++ busybox-1.00-pre2/util-linux/raid_start.c  2003-08-02 23:52:00.000000000 +0200
 @@ -0,0 +1,61 @@
 +/* vi: set sw=4 ts=4: */
 +/*
@@ -87,19 +404,3 @@ diff -u busybox-0.60.5/raid_start.c busybox-0.60.5-rd/raid_start.c
 +tab-width: 4
 +End:
 +*/
-diff -u busybox-0.60.5/usage.h busybox-0.60.5-rd/usage.h
---- busybox-0.60.5/usage.h     2002-09-30 22:59:58.000000000 +0200
-+++ busybox-0.60.5-rd/usage.h  2003-07-01 01:51:38.000000000 +0200
-@@ -1366,6 +1366,12 @@
-       "$ pwd\n" \
-       "/root\n"
-+#define raid_start_trivial_usage \
-+      "MD_DEVICE DISK_DEVICE"
-+#define raid_start_full_usage \
-+      "Start MD_DEVICE, taking superblock from DISK_DEVICE.\n" \
-+      "Example: raid_start /dev/md0 /dev/sdb"
-+      
- #define rdate_trivial_usage \
-       "[OPTION] HOST"
- #define rdate_full_usage \
This page took 0.505462 seconds and 4 git commands to generate.