aboutsummaryrefslogtreecommitdiff
path: root/src/property
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-04-16 14:48:26 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-04-16 14:48:26 -0700
commitd3cde571f3bf9375d51fedce895fb400bd0304db (patch)
tree06a0152e9eab5e31bae27b698a5fea10a00313cb /src/property
parent3d0237b89b4f18c2a01aaccb8b0077cac746e3a7 (diff)
downloadconsfigurator-d3cde571f3bf9375d51fedce895fb400bd0304db.tar.gz
CONSFIGURATOR.PROPERTY.U-BOOT: drop U-BOOT- prefix from symbols
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/property')
-rw-r--r--src/property/u-boot.lisp9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/property/u-boot.lisp b/src/property/u-boot.lisp
index c9cb72c..467c062 100644
--- a/src/property/u-boot.lisp
+++ b/src/property/u-boot.lisp
@@ -23,18 +23,17 @@
;; these available instead.
(defmethod install-bootloader-propspec
- ((type (eql 'u-boot-install-rockchip)) volume running-on-target
+ ((type (eql 'install-rockchip)) volume running-on-target
&rest args &key &allow-other-keys)
- `(u-boot-installed-rockchip ,volume ,running-on-target ,@args))
+ `(installed-rockchip ,volume ,running-on-target ,@args))
(defmethod install-bootloader-binaries-propspec
- ((type (eql 'u-boot-install-rockchip)) volume &key &allow-other-keys)
+ ((type (eql 'install-rockchip)) volume &key &allow-other-keys)
'(os:etypecase
(debianlike
(apt:installed "u-boot-rockchip"))))
-(defprop u-boot-installed-rockchip :posix
- (volume running-on-target &key target)
+(defprop installed-rockchip :posix (volume running-on-target &key target)
(:desc "Installed U-Boot using Debian scripts")
(:hostattrs
(os:required 'os:debianlike)