;;; -*- Mode:LISP; Package:SYSTEM-INTERNALS; Base:8; Readtable:ZL -*- ;;; RESTRICTED RIGHTS LEGEND ;;;Use, duplication, or disclosure by the Government is subject to ;;;restrictions as set forth in subdivision (b)(3)(ii) of the Rights in ;;;Technical Data and Computer Software clause at 52.227-7013. ;;; ;;; TEXAS INSTRUMENTS INCORPORATED. ;;; P.O. BOX 2909 ;;; AUSTIN, TEXAS 78769 ;;; MS 2151 ;;; ;;; Copyright (C) 1985, Texas Instruments Incorporated. All rights reserved. ;;; ;;; Defsystem for NVRAM, which includes routines for setting up (and changing) ;;; NVRAM format, writing crash record information, and analyzing crash records. ;;; ;;; Build notes: ;;; These modules all depend on templates from QDEV, so that must be compiled ;;; and loaded before us. (DEFSYSTEM NVRAM (:NAME "NVRAM") (:PATHNAME-DEFAULT "sys:nvram;") (:PATCHABLE "sys:nvram;") (:MODULE defs ("nvram-defs")) (:MODULE NVRAM ("setup-nvram" ;NVRAM initialization routines "crash-record" ;Crash analyzer "support-functions" ;Miscellaneous crash record support routines "shutdown")) ;System shutdown (:compile-load defs) (:COMPILE-LOAD NVRAM (:fasload defs) ))