1 /* $NetBSD: news.c,v 1.6 2006/02/18 10:08:07 dsl Exp $ */
4 * Copyright (c) 2002 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Luke Mewburn and Izumi Tsutsui.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
32 #if HAVE_NBTOOL_CONFIG_H
33 #include "nbtool_config.h"
36 #include <sys/cdefs.h>
38 __RCSID("$NetBSD: news.c,v 1.6 2006/02/18 10:08:07 dsl Exp $");
41 #include <sys/param.h>
51 #include "installboot.h"
53 static int news_copydisklabel(ib_params
*, struct bbinfo_params
*, uint8_t *);
55 static int news68k_clearboot(ib_params
*);
56 static int news68k_setboot(ib_params
*);
57 static int newsmips_clearboot(ib_params
*);
58 static int newsmips_setboot(ib_params
*);
60 struct ib_mach ib_mach_news68k
=
61 { "news68k", news68k_setboot
, news68k_clearboot
, no_editboot
,
64 struct ib_mach ib_mach_newsmips
=
65 { "newsmips", newsmips_setboot
, newsmips_clearboot
, no_editboot
,
69 * news68k specific support
72 static struct bbinfo_params news68k_bbparams
= {
74 NEWS_BOOT_BLOCK_OFFSET
, /* write all 8K (including disklabel) */
75 NEWS_BOOT_BLOCK_BLOCKSIZE
,
76 NEWS_BOOT_BLOCK_MAX_SIZE
,
82 news68k_clearboot(ib_params
*params
)
85 assert(params
!= NULL
);
87 return (shared_bbinfo_clearboot(params
, &news68k_bbparams
,
92 news68k_setboot(ib_params
*params
)
95 assert(params
!= NULL
);
97 return (shared_bbinfo_setboot(params
, &news68k_bbparams
,
103 * newsmips specific support
106 static struct bbinfo_params newsmips_bbparams
= {
107 NEWSMIPS_BBINFO_MAGIC
,
108 NEWS_BOOT_BLOCK_OFFSET
, /* write all 8K (including disklabel) */
109 NEWS_BOOT_BLOCK_BLOCKSIZE
,
110 NEWS_BOOT_BLOCK_MAX_SIZE
,
116 newsmips_clearboot(ib_params
*params
)
119 assert(params
!= NULL
);
121 return (shared_bbinfo_clearboot(params
, &newsmips_bbparams
,
122 news_copydisklabel
));
126 newsmips_setboot(ib_params
*params
)
129 assert(params
!= NULL
);
131 return (shared_bbinfo_setboot(params
, &newsmips_bbparams
,
132 news_copydisklabel
));
137 * news_copydisklabel --
138 * copy disklabel from existing location on disk into bootstrap,
139 * as the primary bootstrap contains the disklabel.
142 news_copydisklabel(ib_params
*params
, struct bbinfo_params
*bbparams
,
145 uint8_t boot00
[NEWS_BOOT_BLOCK_BLOCKSIZE
];
148 assert(params
!= NULL
);
149 assert(params
->fsfd
!= -1);
150 assert(bbparams
!= NULL
);
153 /* Read label sector to copy disklabel from */
154 memset(boot00
, 0, sizeof(boot00
));
155 rv
= pread(params
->fsfd
, boot00
, sizeof(boot00
), 0);
157 warn("Reading label sector from `%s'", params
->filesystem
);
161 memcpy(bb
+ NEWS_BOOT_BLOCK_LABELOFFSET
,
162 boot00
+ NEWS_BOOT_BLOCK_LABELOFFSET
,
163 sizeof(boot00
) - NEWS_BOOT_BLOCK_LABELOFFSET
);