Compare commits
6 Commits
a7b5f80674
...
bc20f4c6b7
Author | SHA1 | Date | |
---|---|---|---|
bc20f4c6b7 | |||
848214d104 | |||
ede8f12d2b | |||
6cd5b90678 | |||
db4f098c02 | |||
1347937345 |
@ -44,7 +44,9 @@
|
|||||||
MT7622> tftpboot 0x42000000 openwrt-mediatek-mt7622-linksys_e8450-ubi-initramfs-recovery-installer.itb
|
MT7622> tftpboot 0x42000000 openwrt-mediatek-mt7622-linksys_e8450-ubi-initramfs-recovery-installer.itb
|
||||||
MT7622> bootm 0x42000000
|
MT7622> bootm 0x42000000
|
||||||
|
|
||||||
Once it's finished booted into Linux you can safely reboot
|
This will write the new flash layout and then boot into a
|
||||||
|
"recovery" OpenWrt installation. Once it's finished booting into
|
||||||
|
Linux you can safely reboot
|
||||||
|
|
||||||
Installing Liminix
|
Installing Liminix
|
||||||
------------------
|
------------------
|
||||||
@ -73,6 +75,7 @@
|
|||||||
../../modules/arch/aarch64.nix
|
../../modules/arch/aarch64.nix
|
||||||
../../modules/outputs/tftpboot.nix
|
../../modules/outputs/tftpboot.nix
|
||||||
../../modules/outputs/ubifs.nix
|
../../modules/outputs/ubifs.nix
|
||||||
|
../../modules/outputs/ubimage.nix
|
||||||
];
|
];
|
||||||
config = {
|
config = {
|
||||||
kernel = {
|
kernel = {
|
||||||
@ -203,7 +206,8 @@
|
|||||||
in {
|
in {
|
||||||
ubi = {
|
ubi = {
|
||||||
minIOSize = "2048";
|
minIOSize = "2048";
|
||||||
eraseBlockSize = "126976";
|
logicalEraseBlockSize = "126976";
|
||||||
|
physicalEraseBlockSize = "131072";
|
||||||
maxLEBcount = "1024"; # guessing
|
maxLEBcount = "1024"; # guessing
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -22,7 +22,6 @@ in rec {
|
|||||||
../modules/outputs/ubimage.nix
|
../modules/outputs/ubimage.nix
|
||||||
../modules/outputs/jffs2.nix
|
../modules/outputs/jffs2.nix
|
||||||
../modules/outputs/ext4fs.nix
|
../modules/outputs/ext4fs.nix
|
||||||
../modules/outputs/extlinux.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
kernel.config = {
|
kernel.config = {
|
||||||
|
@ -13,6 +13,12 @@ in
|
|||||||
options = {
|
options = {
|
||||||
boot = { };
|
boot = { };
|
||||||
hardware = {
|
hardware = {
|
||||||
|
ubi = {
|
||||||
|
minIOSize = mkOption { type = types.str; };
|
||||||
|
logicalEraseBlockSize = mkOption { type = types.str; }; # LEB
|
||||||
|
physicalEraseBlockSize = mkOption { type = types.str; }; # PEB
|
||||||
|
maxLEBcount = mkOption { type = types.str; }; # LEB
|
||||||
|
};
|
||||||
dts = {
|
dts = {
|
||||||
src = mkOption {
|
src = mkOption {
|
||||||
type = types.nullOr types.path;
|
type = types.nullOr types.path;
|
||||||
|
@ -13,7 +13,8 @@ in
|
|||||||
imports = [
|
imports = [
|
||||||
./outputs/squashfs.nix
|
./outputs/squashfs.nix
|
||||||
./outputs/vmroot.nix
|
./outputs/vmroot.nix
|
||||||
./outputs/extlinux.nix
|
./outputs/boot-extlinux.nix
|
||||||
|
./outputs/boot-fit.nix
|
||||||
./outputs/uimage.nix
|
./outputs/uimage.nix
|
||||||
./outputs/updater
|
./outputs/updater
|
||||||
];
|
];
|
||||||
|
27
modules/outputs/boot-fit.nix
Normal file
27
modules/outputs/boot-fit.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
config
|
||||||
|
, pkgs
|
||||||
|
, lib
|
||||||
|
, ...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
inherit (lib) mkIf mkEnableOption mkOption types concatStringsSep;
|
||||||
|
inherit (pkgs.pseudofile) dir symlink;
|
||||||
|
cfg = config.boot.loader.fit;
|
||||||
|
o = config.system.outputs;
|
||||||
|
cmdline = concatStringsSep " " config.boot.commandLine;
|
||||||
|
wantsDtb = config.hardware.dts ? src && config.hardware.dts.src != null;
|
||||||
|
in {
|
||||||
|
options.boot.loader.fit.enable = mkEnableOption "FIT in /boot";
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
system.outputs.bootfiles = pkgs.runCommand "boot-fit" {} ''
|
||||||
|
mkdir $out
|
||||||
|
cd $out
|
||||||
|
cp ${o.uimage} fit
|
||||||
|
'';
|
||||||
|
filesystem = dir {
|
||||||
|
boot = symlink config.system.outputs.bootfiles;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
@ -13,18 +13,6 @@ in
|
|||||||
./initramfs.nix
|
./initramfs.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
options.system.outputs.rootubifs = mkOption {
|
|
||||||
type = types.package;
|
|
||||||
internal = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
options.hardware.ubi = {
|
|
||||||
minIOSize = mkOption { type = types.str; };
|
|
||||||
logicalEraseBlockSize = mkOption { type = types.str; }; # LEB
|
|
||||||
physicalEraseBlockSize = mkOption { type = types.str; }; # PEB
|
|
||||||
maxLEBcount = mkOption { type = types.str; }; # LEB
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf (config.rootfsType == "ubifs") {
|
config = mkIf (config.rootfsType == "ubifs") {
|
||||||
kernel.config = {
|
kernel.config = {
|
||||||
MTD_UBI="y";
|
MTD_UBI="y";
|
||||||
@ -33,7 +21,7 @@ in
|
|||||||
};
|
};
|
||||||
boot.initramfs.enable = true;
|
boot.initramfs.enable = true;
|
||||||
system.outputs = {
|
system.outputs = {
|
||||||
rootubifs =
|
rootfs =
|
||||||
let
|
let
|
||||||
inherit (pkgs.pkgsBuildBuild) runCommand mtdutils;
|
inherit (pkgs.pkgsBuildBuild) runCommand mtdutils;
|
||||||
cfg = config.hardware.ubi;
|
cfg = config.hardware.ubi;
|
||||||
|
@ -82,12 +82,11 @@ automatically, you can try booting it by hand to see if it works:
|
|||||||
.. code-block:: console
|
.. code-block:: console
|
||||||
|
|
||||||
uboot> ubifsmount ubi0:liminix
|
uboot> ubifsmount ubi0:liminix
|
||||||
uboot> ubifsload ''${loadaddr} boot/uimage
|
uboot> ubifsload ''${loadaddr} boot/fit
|
||||||
uboot> bootm ''${loadaddr}
|
uboot> bootm ''${loadaddr}
|
||||||
|
|
||||||
Once you've done this and you're happy with it, reset the device to
|
Once you've done this and you're happy with it, reset the device to
|
||||||
U-Boot. You don't need to recreate the volume but you do need to
|
return to U-Boot.
|
||||||
repeat step 3.
|
|
||||||
|
|
||||||
5) Instructions for configuring autoboot are likely to be very
|
5) Instructions for configuring autoboot are likely to be very
|
||||||
device-dependent. On the Linksys E8450/Belkin RT3200, the environment
|
device-dependent. On the Linksys E8450/Belkin RT3200, the environment
|
||||||
@ -96,7 +95,10 @@ you could do
|
|||||||
|
|
||||||
.. code-block:: console
|
.. code-block:: console
|
||||||
|
|
||||||
uboot> setenv boot_production 'led $bootled_pwr on ; ubifsmount ubi0:liminix; ubifsload ''${loadaddr} boot/uimage; bootm ''${loadaddr}'
|
uboot> setenv orig_boot_production $boot_production
|
||||||
|
uboot> setenv boot_production 'led $bootled_pwr on ; ubifsmount ubi0:liminix && ubifsload ''${loadaddr} boot/fit && bootm ''${loadaddr}'
|
||||||
|
uboot> saveenv
|
||||||
|
uboot> reset
|
||||||
|
|
||||||
On other devices, some detective work may be needed. Try running
|
On other devices, some detective work may be needed. Try running
|
||||||
`printenv` and look for likely commands, try looking at the existing
|
`printenv` and look for likely commands, try looking at the existing
|
||||||
@ -111,16 +113,13 @@ boot process, maybe even try looking for documentation for that device.
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf (config.rootfsType == "ubifs") {
|
config.system.outputs.ubimage =
|
||||||
system.outputs = {
|
assert config.rootfsType == "ubifs";
|
||||||
ubimage =
|
let o = config.system.outputs; in
|
||||||
let o = config.system.outputs; in
|
pkgs.runCommand "ubimage" {} ''
|
||||||
pkgs.runCommand "ubimage" {} ''
|
mkdir $out
|
||||||
mkdir $out
|
cd $out
|
||||||
cd $out
|
ln -s ${o.rootfs} rootfs
|
||||||
ln -s ${o.rootfs} rootfs
|
ln -s ${instructions} env.scr
|
||||||
ln -s ${instructions} env.scr
|
'';
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
@ -18,6 +18,9 @@ in
|
|||||||
eraseBlockSize = mkOption { type = types.str; }; # LEB
|
eraseBlockSize = mkOption { type = types.str; }; # LEB
|
||||||
maxLEBcount = mkOption { type = types.str; }; # LEB
|
maxLEBcount = mkOption { type = types.str; }; # LEB
|
||||||
};
|
};
|
||||||
|
options.system.outputs.ubivolume = mkOption {
|
||||||
|
type = types.package;
|
||||||
|
};
|
||||||
|
|
||||||
config = mkIf (config.rootfsType == "ubifs") {
|
config = mkIf (config.rootfsType == "ubifs") {
|
||||||
kernel.config = {
|
kernel.config = {
|
||||||
@ -28,7 +31,7 @@ in
|
|||||||
};
|
};
|
||||||
boot.initramfs.enable = true;
|
boot.initramfs.enable = true;
|
||||||
|
|
||||||
system.outputs.rootfs =
|
system.outputs.ubivolume =
|
||||||
let
|
let
|
||||||
inherit (pkgs.pkgsBuildBuild) runCommand;
|
inherit (pkgs.pkgsBuildBuild) runCommand;
|
||||||
ubiVolume = ({ name, volumeId, image, flags ? [] }:
|
ubiVolume = ({ name, volumeId, image, flags ? [] }:
|
||||||
@ -81,7 +84,7 @@ in
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
disk = ubiDisk {
|
disk = ubiDisk {
|
||||||
initramfs = config.system.outputs.rootubifs; # liminix.builders.squashfs config.filesystem.contents; # # assert this is a proper FIT.
|
initramfs = config.system.outputs.rootfs; # ???
|
||||||
};
|
};
|
||||||
|
|
||||||
in
|
in
|
||||||
|
@ -31,7 +31,7 @@ on a system with pre-existing firmware and OS.
|
|||||||
config = mkIf (config.rootfsType == "ubifs") {
|
config = mkIf (config.rootfsType == "ubifs") {
|
||||||
|
|
||||||
system.outputs.zyxel-nwa-fit =
|
system.outputs.zyxel-nwa-fit =
|
||||||
let
|
let
|
||||||
o = config.system.outputs;
|
o = config.system.outputs;
|
||||||
# 8129kb padding.
|
# 8129kb padding.
|
||||||
paddedKernel = pkgs.runCommand "padded-kernel" {} ''
|
paddedKernel = pkgs.runCommand "padded-kernel" {} ''
|
||||||
@ -39,7 +39,7 @@ on a system with pre-existing firmware and OS.
|
|||||||
dd if=/dev/zero of=$out bs=1 count=1 seek=8388607
|
dd if=/dev/zero of=$out bs=1 count=1 seek=8388607
|
||||||
'';
|
'';
|
||||||
firmwareImage = pkgs.runCommand "firmware-image" {} ''
|
firmwareImage = pkgs.runCommand "firmware-image" {} ''
|
||||||
cat ${paddedKernel} ${o.rootfs} > $out
|
cat ${paddedKernel} ${o.ubivolume} > $out
|
||||||
'';
|
'';
|
||||||
dts = pkgs.writeText "image.its" ''
|
dts = pkgs.writeText "image.its" ''
|
||||||
/dts-v1/;
|
/dts-v1/;
|
||||||
|
Loading…
Reference in New Issue
Block a user