X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=cmd%2Fzfs.c;h=384ac4c9396cc288c5169aaac2210f49321849fd;hb=fd0bc263d96778673052f4507d16d81228408436;hp=3ed9912d19bd4d43a310233ff87e30a24917fcf9;hpb=0ff27d4a94637d4b1937c625d33212375bd118d9;p=u-boot diff --git a/cmd/zfs.c b/cmd/zfs.c index 3ed9912d19..384ac4c939 100644 --- a/cmd/zfs.c +++ b/cmd/zfs.c @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: GPL-2.0+ /* * * ZFS filesystem porting to Uboot by @@ -5,8 +6,6 @@ * * zfsfs support * made from existing GRUB Sources by Sun, GNU and others. - * - * SPDX-License-Identifier: GPL-2.0+ */ #include @@ -51,10 +50,10 @@ static int do_zfs_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[] count = 0; addr = simple_strtoul(argv[3], NULL, 16); - filename = getenv("bootfile"); + filename = env_get("bootfile"); switch (argc) { case 3: - addr_str = getenv("loadaddr"); + addr_str = env_get("loadaddr"); if (addr_str != NULL) addr = simple_strtoul(addr_str, NULL, 16); else @@ -115,7 +114,7 @@ static int do_zfs_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[] load_addr = addr; printf("%llu bytes read\n", zfile.size); - setenv_hex("filesize", zfile.size); + env_set_hex("filesize", zfile.size); return 0; }