]> git.ozlabs.org Git - yaboot.git/blob - ybin/yabootconfig
Fix readlink fallback
[yaboot.git] / ybin / yabootconfig
1 #! /bin/sh
2
3 ###############################################################################
4 ##
5 ## yabootconfig generates a simple /etc/yaboot.conf
6 ## Copyright (C) 2001, 2002 Ethan Benson
7 ##
8 ## This program is free software; you can redistribute it and/or
9 ## modify it under the terms of the GNU General Public License
10 ## as published by the Free Software Foundation; either version 2
11 ## of the License, or (at your option) any later version.
12 ##
13 ## This program is distributed in the hope that it will be useful,
14 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 ## GNU General Public License for more details.
17 ##
18 ## You should have received a copy of the GNU General Public License
19 ## along with this program; if not, write to the Free Software
20 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21 ##
22 ###############################################################################
23
24 PATH="/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin"
25 ## allow to run out of /target in boot-floppies
26 if [ -n "$PATH_PREFIX" ] ; then
27     PATH="${PATH}:${PATH_PREFIX}/sbin:${PATH_PREFIX}/bin:${PATH_PREFIX}/usr/sbin:${PATH_PREFIX}/usr/bin:${PATH_PREFIX}/usr/local/sbin:${PATH_PREFIX}/usr/local/bin"
28 fi
29 PRG="${0##*/}"
30 VERSION=1.0.7-rc2
31 CHROOT=/
32 ## $CONFIG is relative to $CHROOT
33 CONFIG=etc/yaboot.conf
34 NOINSTALL=0
35 QUIET=0
36 DEBUG=0
37 SIGINT="$PRG: Interrupt caught ... exiting"
38 export LC_COLLATE=C
39
40 ## avoid older versions of ofpath shipped in debian boot-floppies etc.
41 if [ -x "${PATH_PREFIX}/usr/sbin/ofpath" ] ; then
42     OFPATH="${PATH_PREFIX}/usr/sbin/ofpath"
43 else
44     OFPATH=ofpath
45 fi
46
47 ## catch signals, clean up temporary file
48 trap "cleanup" 0
49 trap "exit 129" 1
50 trap "echo 1>&2 $SIGINT ; exit 130" 2
51 trap "exit 131" 3
52 trap "exit 143" 15
53
54 ## check for printf, use it if possible otherwise fall back on
55 ## unreliable echo -e -n ("SUS" says echo shall support no switches)
56 if [ "$(printf printf_test 2>/dev/null)" = printf_test ] ; then
57     PRINTF=printf
58 else
59     PRINTF="echo -e -n"
60 fi
61
62 ## make sure echo is not lame if we must use it.
63 if [ "$PRINTF" != printf ] ; then
64     if [ "$(echo -e -n echo_test)" != "echo_test" ] ; then
65         echo 1>&2 "$PRG: printf unavailable and echo is broken, sorry."
66         exit 1
67     fi
68 fi
69
70 ## make fake `id' if its missing, outputs 0 since if its missing we
71 ## are probably running on boot floppies and thus are root.
72 if (command -v id > /dev/null 2>&1) ; then 
73     true
74 else
75     id()
76     {
77     echo 0
78     }
79 fi
80
81 ## --version output
82 version()
83 {
84 echo \
85 "$PRG $VERSION
86 Written by Ethan Benson
87
88 Copyright (C) 2001, 2002 Ethan Benson
89 This is free software; see the source for copying conditions.  There is NO
90 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
91 }
92
93 ## --help output.
94 usage()
95 {
96 echo \
97 "Usage: $PRG [OPTION]...
98 Generate a working /etc/yaboot.conf.
99
100   -t, --chroot               set root directory $PRG should work from
101   -r, --root                 set root partition, Example: /dev/hda3
102                                default: determined from {chroot}/etc/fstab
103   -b, --boot                 set bootstrap partition, Example: /dev/hda2
104                                default: first type: Apple_Bootstrap partition
105       --kernel-args          add an append= line with specified arguments
106   -q, --quiet                don't ask any questions/confirmation
107       --noinstall            don't automatically run mkofboot
108   -h, --help                 display this help and exit
109   -V, --version              output version information and exit"
110 }
111
112 debug()
113 {
114     [ "$DEBUG" = 0 ] && return 0
115     $PRINTF 1>&2 "$PRG: DEBUG: $1"
116 }
117
118 confirm()
119 {
120     $PRINTF \
121 "yaboot is the Linux Loader for PowerPC.  $PRG sets up your system to boot directly
122 from your hard disk, without the need for a boot CD, floppy or a network boot.\n"
123 [ "$NOINSTALL" = 0 ] && $PRINTF "Install yaboot bootstrap on $BOOT to boot Linux from $ROOT? [Yes] "
124 [ "$NOINSTALL" = 1 ] && $PRINTF "Create simple ${CHROOT}${CONFIG} to boot Linux from $ROOT? [Yes] "
125     read ans
126     case "$ans" in
127         Y|y|Yes|yes|YES|"")
128         echo "Creating a simple ${CHROOT}${CONFIG}..."
129         return 0
130         ;;
131         *)
132         if [ "$NOINSTALL" = 0 ] ; then
133             $PRINTF "Create simple ${CHROOT}${CONFIG} without installing the bootstrap? [Yes] "
134             read ans
135             case "$ans" in
136                 Y|y|Yes|yes|YES|"")
137                 NOINSTALL=1
138                 echo 1>&2 "Creating a simple ${CHROOT}${CONFIG}..."
139                 return 0
140                 ;;
141                 *)
142                 echo "OK, quitting"
143                 return 1
144                 ;;
145             esac
146         else
147             echo "OK, quitting"
148             return 1
149         fi
150         ;;
151     esac
152 }
153
154 ## find out whether we have mac-fdisk or pdisk (they work the same)
155 ckmacfdisk()
156 {
157     if (command -v mac-fdisk > /dev/null 2>&1) ; then
158         FDISK=mac-fdisk
159     elif (command -v pdisk > /dev/null 2>&1) ; then
160         FDISK=pdisk
161     else
162         echo 1>&2 "$PRG: Unable to locate mac-fdisk"
163         return 1
164     fi
165
166     if [ ! -x `command -v $FDISK` 2> /dev/null ] ; then
167         echo 1>&2 "$PRG: `command -v $FDISK`: Permission denied"
168         return 1
169     fi
170     debug "mac-fdisk is: $FDISK\n"
171     return 0
172 }
173
174 ## find out if we have ddisk or fdisk (fdisk for dos labels) debian
175 ## uses both names
176 ckfdisk()
177 {
178     if (command -v ddisk > /dev/null 2>&1) ; then
179         FDISK=ddisk
180     elif (command -v fdisk > /dev/null 2>&1) ; then
181         FDISK=fdisk
182     else
183         echo 1>&2 "$PRG: Unable to locate fdisk"
184         return 1
185     fi
186
187     if [ ! -x `command -v $FDISK` 2> /dev/null ] ; then
188         echo 1>&2 "$PRG: `command -v $FDISK`: Permission denied"
189         return 1
190     fi
191     debug "fdisk is: $FDISK\n"
192     return 0
193 }
194
195 ## find bootstrap partition, supports IBM CHRP with msdos disklabels
196 findbootblock()
197 {
198     ## mac partition table magic == ER
199     if [ "$(dd if="$DISK" bs=2 count=1 2> /dev/null)" = ER ] ; then
200         ckmacfdisk || return 1
201         if [ "$FDISK" = pdisk ] ; then
202             ## handle braindamaged pdisk
203             debug "dealing with pdisk deficiency...\n"
204             BOOT="$(v=`$FDISK -l "$DISK" 2>/dev/null | grep '\<Apple_Bootstrap\>'` ; echo ${v%%:*})"
205             debug "BOOT before fixup: $BOOT\n"
206             if [ -n "$BOOT" ] ; then
207                 BOOT="${DISK}${BOOT}"
208             fi
209             debug "BOOT after fixup: $BOOT\n"
210         else
211             BOOT="$(v=`$FDISK -l "$DISK" 2>/dev/null | grep '\<Apple_Bootstrap\>'` ; echo ${v%%[ ]*})"
212             debug "BOOT=$BOOT\n"
213         fi
214         if [ -z "$BOOT" ] ; then
215             echo 1>&2 "$PRG: Unable to locate bootstrap partition on $DISK..."
216             echo 1>&2 "$PRG: You must create an 800K type: Apple_Bootstrap partition to make the disk bootable"
217             return 1
218         fi
219     else
220         ckfdisk || return 1
221         BOOT="$(v=`$FDISK -l "$DISK" 2>/dev/null | grep '\<PPC PReP Boot\>'` ; echo ${v%%[ ]*})"
222         debug "BOOT=$BOOT\n"
223         if [ -z "$BOOT" ] ; then
224             echo 1>&2 "$PRG: Unable to locate bootstrap partition on $DISK..."
225             echo 1>&2 "$PRG: You must create an 800K type: 0x41 PPC PReP Boot partition to make the disk bootable"
226             return 1
227         fi
228     fi
229     return 0
230 }
231
232 ## if readlink is missing use a kludge
233 if (command -v readlink > /dev/null 2>&1) ; then
234     true
235 else
236     readlink()
237     {
238         SYMTARGET="$(v=`ls -l "$2" 2>/dev/null` ; echo ${v##*> })"
239         if [ -n "$SYMTARGET" ] ; then
240             echo "$SYMTARGET"
241             return 0
242         else
243             return 1
244         fi
245     }
246 fi
247
248 ## we have to do some things differently with a retarded devfs name.
249 ckdevfs()
250 {
251     case "$1" in
252         /dev/ide/*|/dev/scsi/*|/dev/discs/*)
253         return 0
254         ;;
255         *)
256         return 1
257         ;;
258     esac
259 }
260
261 cleanup()
262 {
263     if [ -n "$TMPCONF" ] ; then rm -f "$TMPCONF" ; fi
264     return 0
265 }
266
267 ##########
268 ## Main ##
269 ##########
270
271 if [ $# != 0 ] ; then
272     while true ; do
273         case "$1" in 
274             -V|--version)
275                 version
276                 exit 0
277                 ;;
278             -h|--help)
279                 usage
280                 exit 0
281                 ;;
282             -t|--chroot)
283                 if [ -n "$2" ] ; then
284                     CHROOT="$2"
285                     shift 2
286                 else
287                     echo 1>&2 "$PRG: option requires an argument $1"
288                     echo 1>&2 "Try \`$PRG --help' for more information."
289                     exit 1
290                 fi
291                 ;;
292             -b|--boot)
293                 if [ -n "$2" ] ; then
294                     BOOT="$2"
295                     shift 2
296                 else
297                     echo 1>&2 "$PRG: option requires an argument $1"
298                     echo 1>&2 "Try \`$PRG --help' for more information."
299                     exit 1
300                 fi
301                 ;;
302             -r|--root)
303                 if [ -n "$2" ] ; then
304                     ROOT="$2"
305                     shift 2
306                 else
307                     echo 1>&2 "$PRG: option requires an argument $1"
308                     echo 1>&2 "Try \`$PRG --help' for more information."
309                     exit 1
310                 fi
311                 ;;
312             --kernel-args)
313                 if [ -n "$2" ] ; then
314                     KERNARGS="$2"
315                     shift 2
316                 else
317                     echo 1>&2 "$PRG: option requires an argument $1"
318                     echo 1>&2 "Try \`$PRG --help' for more information."
319                     exit 1
320                 fi
321                 ;;
322             -q|--quiet)
323                 QUIET=1
324                 shift 1
325                 ;;
326             --noinstall)
327                 NOINSTALL=1
328                 shift 1
329                 ;;
330             --debug)
331                 DEBUG=1
332                 shift 1
333                 ;;
334             "")
335                 break
336                 ;;
337             *)
338                 echo 1>&2 "$PRG: unrecognized option \`$1'"
339                 echo 1>&2 "Try \`$PRG --help' for more information."
340                 exit 1
341                 ;;
342         esac
343     done
344 fi
345
346 if [ `id -u` != 0 ] ; then
347     echo 1>&2 "$PRG: You are not root, go away"
348     exit 1
349 fi
350
351 ## we need /proc because df does
352 if [ ! -f /proc/uptime ] ; then
353     echo 1>&2 "$PRG: This utility requires the /proc filesystem"
354     exit 1
355 fi
356
357 ## check that chroot exists
358 if [ -d "$CHROOT" ] ; then
359     ## HACK: add trailing / to chroot, otherwise are paths later get b0rked.
360     case "$CHROOT" in
361         */)
362         true
363         ;;
364         *)
365         CHROOT="${CHROOT}/"
366         ;;
367     esac
368 elif [ ! -e "$CHROOT" ] ; then
369     echo 1>&2 "$PRG: $CHROOT: No such file or directory"
370     exit 1
371 elif [ ! -d "$CHROOT" ] ; then
372     echo 1>&2 "$PRG: $CHROOT: Not a directory"
373     exit 1
374 fi
375
376 ## make sure the chroot is an actual root filesystem
377 if [ ! -f "${CHROOT}etc/fstab" ] ; then
378     echo 1>&2 "$PRG: $CHROOT does not appear to be a valid root filesystem"
379     exit 1
380 fi
381
382 ## find / device
383 if [ -z "$ROOT" ] ; then
384     ## IMPORTANT! that last substitution is [<space><tab>] thats all ash will grok
385     ROOT="$(v=`grep '^[^#].*[[:blank:]]/[[:blank:]]' ${CHROOT}etc/fstab` ; echo ${v%%[  ]*})"
386     debug "ROOT=$ROOT\n"
387     if [ -z "$ROOT" ] ; then
388         echo 1>&2 "$PRG: Could not determine root partition, aborting..."
389         exit 1
390     fi
391 fi
392
393 ## make sure root device exists
394 if [ ! -e "$ROOT" ] ; then
395     echo 1>&2 "$PRG: $ROOT: No such file or directory"
396     exit 1
397 fi
398
399 ## find root disk.
400 if ckdevfs "$ROOT" ; then
401     DISK="${ROOT%/*}/disc"
402 else
403     DISK="${ROOT%%[0-9]*}"
404 fi
405 if [ -z "$DISK" ] ; then
406     echo 1>&2 "$PRG: Could not determine root disk, aborting..."
407     exit 1
408 fi
409
410 ## make sure main disk exists
411 if [ ! -e "$DISK" ] ; then
412     echo 1>&2 "$PRG: $DISK: No such file or directory"
413     exit 1
414 fi
415
416 ## find bootstrap partition
417 if [ -z "$BOOT" ] ; then
418     findbootblock || exit 1
419 fi
420
421 ## make sure bootstrap device exists
422 if [ ! -e "$BOOT" ] ; then
423     echo 1>&2 "$PRG: $BOOT: No such file or directory"
424     exit 1
425 fi
426
427 ## sanity check
428 for i in "$DISK" "$ROOT" "$BOOT" ; do
429     if [ ! -b "$i" ] ; then
430         echo 1>&2 "$PRG: $i: Not a block device"
431         exit 1
432     fi
433 done
434
435 ## unless --quiet ask permission to proceed
436 if [ "$QUIET" = 0 ] ; then
437     confirm || exit 2
438 fi
439
440 ## find the kernel in the usual places and (if not --quiet) ask the
441 ## user if we cannot find one.
442 if [ -f "${CHROOT}vmlinux" ] ; then
443     KERNEL="${CHROOT}vmlinux"
444 elif [ -f "${CHROOT}boot/vmlinux" ] ; then
445     KERNEL="${CHROOT}boot/vmlinux"
446 elif [ -f "${CHROOT}boot/vmlinux-`uname -r`" ] ; then
447     KERNEL="${CHROOT}boot/vmlinux-`uname -r`"
448 elif [ -f "${CHROOT}vmlinux-`uname -r`" ] ; then
449     KERNEL="${CHROOT}vmlinux-`uname -r`"
450 elif [ "$QUIET" = 0 ] ; then
451     echo 1>&2 "$PRG: Cannot find a kernel, please locate one"
452     while true ; do
453         $PRINTF 1>&2 "Enter path to a kernel image: "
454         read KERN
455         if [ -f "$KERN" ] ; then
456             KERNEL="$KERN"
457             break
458         elif [ ! -e "$KERN" ] ; then
459             echo 1>&2 "$PRG: $KERN: No such file or directory"
460         elif [ -d "$KERN" ] ; then
461             echo 1>&2 "$PRG: $KERN: Is a directory"
462         else
463             echo 1>&2 "$PRG: $KERN: Is not a regular file"
464         fi
465     done
466 else
467     echo 1>&2 "$PRG: Cannot find a kernel, aborting..."
468     exit 1
469 fi
470
471 debug "KERNEL=$KERNEL\n"
472
473 ## get partition number the kernel lives on, and the OF device= name
474 ## of the whole disk.
475 KERNDEV="$(v=`df "$KERNEL" 2> /dev/null | grep ^/dev/` ; echo ${v%%[ ]*})"
476 KERNDIR="$(v=`df "$KERNEL" 2> /dev/null | grep ^/dev/` ; echo ${v##*[ ]})"
477 LINKDEV="$(v=`df "${KERNEL%/*}/" 2>/dev/null | grep ^/dev/` ; echo ${v%%[ ]*})"
478 PARTITION="${KERNDEV##*[a-z]}"
479
480 if ckdevfs "$KERNDEV" ; then
481     KERNELDISK="${KERNDEV%/*}/disc"
482 else
483     KERNELDISK="${KERNDEV%%[0-9]*}"
484 fi
485
486 debug "KERNEL=$KERNEL\nKERNDEV=$KERNDEV\nKERNDIR=$KERNDIR\nLINKDEV=$LINKDEV\nPARTITION=$PARTITION\nKERNELDISK=$KERNELDISK\n"
487
488 ## sanity check
489 for i in "$KERNDEV" "$KERNDIR" "$LINKDEV" "$PARTITION" "$KERNELDISK" ; do
490     if [ -z "$i" ] ; then
491         echo 1>&2 "$PRG: Could not determine necessary information, aborting..."
492         echo 1>&2 "$PRG: Are you using chroot $PRG instead of $PRG --chroot ?"
493         exit 1
494     fi
495 done
496
497 ## check for cross device symlink
498 if [ -L "$KERNEL" ] ; then
499     if [ "$KERNDEV" != "$LINKDEV" ] ; then
500         echo 1>&2 "$PRG: Warning: Cross device symlink $KERNEL, using it's target instead"
501         KERNEL="$(readlink -f "$KERNEL" 2>/dev/null)"
502         if [ ! -f "$KERNEL" ] ; then
503             echo 1>&2 "$PRG: Unable to canonicalize symlink's target.  Do not create cross device symlinks."
504             exit 1
505         fi
506     fi
507 fi
508
509 ## only powermacs appear to need device=
510 if (cat /proc/cpuinfo 2>/dev/null | grep -q pmac-generation 2> /dev/null) ; then
511     DEVICE="\ndevice=$($OFPATH $KERNELDISK)"
512     if [ $? != 0 ] ; then
513         echo 1>&2 "$PRG: Unable to determine OpenFirmware device name to $KERNELDISK, aborting..."
514         exit 1
515     fi
516 fi
517
518 ## if there is a separate /boot partition we must strip off the /boot
519 ## mountpoint or else yaboot will not find the kernel.
520 if [ "$KERNDIR" != "$CHROOT" ] ; then
521     IMAGE="${KERNEL##*$KERNDIR}"
522 else
523     IMAGE="$KERNEL"
524 fi
525
526 ## fix chrooted path
527 if [ "$CHROOT" != / ] ; then
528     IMAGE="${IMAGE##*$CHROOT}"
529 fi
530
531 ## fix relative path (caused by chroot path fix)
532 case "$IMAGE" in
533     /*)
534     true
535     ;;
536     *)
537     IMAGE="/${IMAGE}"
538     ;;
539 esac
540
541 ## figure out if yaboot is installed in /usr/local or not
542 if [ -f /usr/local/lib/yaboot/yaboot ] ; then
543     INSTALL=/usr/local/lib/yaboot/yaboot
544 elif [ -f /usr/lib/yaboot/yaboot ] ; then
545     INSTALL=/usr/lib/yaboot/yaboot
546 else
547     echo 1>&2 "$PRG: yaboot is not installed correctly"
548     exit 1
549 fi
550
551 ## newworld powermacs need the ofboot first stage loader
552 if [ "$(v=`cat /proc/cpuinfo 2>/dev/null | grep pmac-generation` ; echo ${v##*:})" = NewWorld ] ; then
553     if [ -f /usr/local/lib/yaboot/ofboot ] ; then
554         OFBOOT="\nmagicboot=/usr/local/lib/yaboot/ofboot"
555     elif [ -f /usr/lib/yaboot/ofboot ] ; then
556         OFBOOT="\nmagicboot=/usr/lib/yaboot/ofboot"
557     else
558         echo 1>&2 "$PRG: yaboot is not installed correctly"
559         exit 1
560     fi
561 fi    
562
563 ## check for properly (read debian) packaged yaboot.
564 if [ -d ${CHROOT}usr/share/doc/yaboot/examples ] ; then
565     HEADER="## see also: /usr/share/doc/yaboot/examples for example configurations.\n"
566 fi
567
568 ## setup append line
569 if [ -n "$KERNARGS" ] ; then
570     APPEND="\tappend=\"${KERNARGS}\"\n"
571 fi
572
573 ## avoid user confusion when they boot an installer with video=ofonly
574 ## (usually via a install-safe label) and then reboot and have the box
575 ## not boot properly again.
576 if [ -z "$APPEND" ] ; then
577     if (grep -q '\<video=ofonly\>' /proc/cmdline 2> /dev/null) ; then
578         APPEND="\tappend=\"video=ofonly\"\n"
579     fi
580 fi
581
582 ## generate global section of yaboot.conf
583 GLOBAL="## yaboot.conf generated by $PRG $VERSION
584 ##
585 ## run: \"man yaboot.conf\" for details. Do not make changes until you have!!
586 ${HEADER}##
587 ## For a dual-boot menu, add one or more of: 
588 ## bsd=/dev/hdaX, macos=/dev/hdaY, macosx=/dev/hdaZ\n
589 boot=${BOOT}${DEVICE:-}
590 partition=$PARTITION
591 root=$ROOT
592 timeout=30
593 install=${INSTALL}${OFBOOT:-}\n"
594
595 ## generate image= section
596 IMAGES="
597 image=$IMAGE
598 \tlabel=Linux
599 \tread-only\n${APPEND:-}"
600
601 ## safely create a tmp file then move it into place after we are sure
602 ## it was written.
603 TMPCONF=`mktemp -q "${CHROOT}${CONFIG}.XXXXXX"`
604 if [ $? != 0 ] ; then
605     echo 1>&2 "$PRG: Unable to write to ${CHROOT}${CONFIG%/*}"
606     exit 1
607 fi
608
609 $PRINTF "${GLOBAL}${IMAGES}" > "$TMPCONF"
610 if [ $? != 0 ] ; then
611     echo 1>&2 "$PRG: Unable to write temporary file ${TMPCONF}, aborting..."
612     exit 1
613 fi
614
615 ## rotate backups of /etc/yaboot.conf, 3 backups are kept
616 if [ -f "${CHROOT}${CONFIG}.old" ] ; then
617     for i in 1 0 ; do
618         if [ -f "${CHROOT}${CONFIG}.old.${i}" ] ; then
619             mv -f "${CHROOT}${CONFIG}.old.$i" "${CHROOT}${CONFIG}.old.$(($i + 1))"
620             if [ $? != 0 ] ; then
621                 echo 1>&2 "$PRG: Unable to make backup of existing ${CHROOT}${CONFIG}.old.$i, aborting..."
622                 exit 1
623             fi
624         fi
625     done
626
627     mv -f "${CHROOT}${CONFIG}.old" "${CHROOT}${CONFIG}.old.0"
628     if [ $? != 0 ] ; then
629         echo 1>&2 "$PRG: Unable to make backup of existing ${CHROOT}${CONFIG}.old, aborting..."
630         exit 1
631     fi
632 fi
633
634 ## backup /etc/yaboot.conf
635 if [ -f "${CHROOT}${CONFIG}" ] ; then
636     mv -f "${CHROOT}${CONFIG}" "${CHROOT}${CONFIG}.old"
637     if [ $? != 0 ] ; then
638         echo 1>&2 "$PRG: Unable to make backup of existing ${CHROOT}${CONFIG}, aborting..."
639         exit 1
640     fi
641 fi
642
643 ## move new config into place
644 mv -f "${TMPCONF}" "${CHROOT}${CONFIG}"
645 if [ $? != 0 ] ; then
646     echo "$PRG: Unable to write file ${CHROOT}${CONFIG}"
647     exit 1
648 else
649     ## nothing sensitive in generated config, comply with debian policy
650     chmod 644 "${CHROOT}${CONFIG}"
651 fi
652
653 ## tell mkofboot where to find the config file if necessary
654 if [ "${CHROOT}${CONFIG}" != /etc/yaboot.conf ] ; then
655     YBINARGS="-C ${CHROOT}${CONFIG}"
656 fi
657
658 ## run mkofboot to install the bootstrap, unless --noinstall
659 if [ "$NOINSTALL" = 0 ] ; then
660     if (command -v mkofboot 2>&1 > /dev/null) ; then
661         [ "$QUIET" = 0 ] && echo "Running mkofboot to make the disk bootable..."
662         mkofboot -f $YBINARGS || exit 1
663         [ "$QUIET" = 0 ] && echo "Done"
664     else
665         echo 1>&2 "$PRG: yaboot is not installed correctly, not running mkofboot"
666         exit 1
667     fi
668 fi
669
670 exit 0