Fix ene
systems/ene.scm
16 | 16 | ;;; along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 | 17 | ||
18 | 18 | (use-modules (gnu)) | |
19 | - | (use-modules (gnu system)) | |
20 | 19 | (use-modules (gnu bootloader)) | |
20 | + | (use-modules (gnu packages bootloaders)) | |
21 | 21 | (use-modules (gnu services dns)) | |
22 | + | (use-modules (gnu services networking)) | |
22 | 23 | (use-modules (gnu services web)) | |
23 | - | (use-modules (config certbot) (config dns) (config mail) (config network) (config os)) | |
24 | + | (use-modules (gnu system)) | |
25 | + | ||
26 | + | (use-modules (config certbot) (config dns) (config mail) (config os)) | |
27 | + | ||
24 | 28 | ||
25 | 29 | (define u-boot-allwinner-bootloader (@@ (gnu bootloader u-boot) u-boot-allwinner-bootloader)) | |
26 | 30 | ||
27 | - | (define u-boot-cibietruck-bootloader | |
31 | + | (define u-boot-cubietruck-bootloader | |
28 | 32 | (bootloader | |
29 | 33 | (inherit u-boot-allwinner-bootloader) | |
30 | 34 | (package u-boot-cubietruck))) | |
… | |||
35 | 39 | (bootloader-configuration | |
36 | 40 | (target "/dev/mmcblk0") | |
37 | 41 | (bootloader u-boot-cubietruck-bootloader))) | |
38 | - | (initrd-modules (cons "sunxi-mmc" %base-initrd-modules)) | |
42 | + | (initrd-modules (cons* "sunxi-mmc" "sd_mod" "ahci_sunxi" %base-initrd-modules)) | |
39 | 43 | (file-systems (cons (file-system | |
40 | 44 | (mount-point "/") | |
41 | 45 | (device "/dev/sda1") |