diff options
author | Andrew Robbins <contact@andrewrobbins.info> | 2017-09-16 02:58:54 -0400 |
---|---|---|
committer | Andrew Robbins <contact@andrewrobbins.info> | 2017-09-16 03:42:06 -0400 |
commit | 0e034cf65cbd48f6c24759e4f7a3c92256e00869 (patch) | |
tree | b959af0216d2c0c0c61fe2401348fcf6fc3245ae | |
parent | e87dba45a59e069b71d2ec994e47443357fe6b39 (diff) | |
download | librebootfr-0e034cf65cbd48f6c24759e4f7a3c92256e00869.tar.gz librebootfr-0e034cf65cbd48f6c24759e4f7a3c92256e00869.zip |
Rename SeaBIOS targets to less confusing names
'txtmode' isn't so much a configuration for textmode as it is a BIOS,
simply, and 'vga' is actually the VGABIOS which requires the BIOS
being present in order to function; this is contrary to what the
original target names may lead one to initially believe.
-rw-r--r-- | projects/seabios/configs/bios/config (renamed from projects/seabios/configs/txtmode/config) | 0 | ||||
-rw-r--r-- | projects/seabios/configs/bios/install (renamed from projects/seabios/configs/txtmode/install) | 0 | ||||
-rw-r--r-- | projects/seabios/configs/targets | 4 | ||||
-rw-r--r-- | projects/seabios/configs/vgabios/config (renamed from projects/seabios/configs/vga/config) | 0 | ||||
-rw-r--r-- | projects/seabios/configs/vgabios/install (renamed from projects/seabios/configs/vga/install) | 0 | ||||
-rwxr-xr-x | projects/seabios/seabios | 4 |
6 files changed, 4 insertions, 4 deletions
diff --git a/projects/seabios/configs/txtmode/config b/projects/seabios/configs/bios/config index cd13ec77..cd13ec77 100644 --- a/projects/seabios/configs/txtmode/config +++ b/projects/seabios/configs/bios/config diff --git a/projects/seabios/configs/txtmode/install b/projects/seabios/configs/bios/install index 9189ec8f..9189ec8f 100644 --- a/projects/seabios/configs/txtmode/install +++ b/projects/seabios/configs/bios/install diff --git a/projects/seabios/configs/targets b/projects/seabios/configs/targets index ac8e49d0..98a59a61 100644 --- a/projects/seabios/configs/targets +++ b/projects/seabios/configs/targets @@ -1,2 +1,2 @@ -txtmode -vga +bios +vgabios diff --git a/projects/seabios/configs/vga/config b/projects/seabios/configs/vgabios/config index a2725409..a2725409 100644 --- a/projects/seabios/configs/vga/config +++ b/projects/seabios/configs/vgabios/config diff --git a/projects/seabios/configs/vga/install b/projects/seabios/configs/vgabios/install index ddc1571e..ddc1571e 100644 --- a/projects/seabios/configs/vga/install +++ b/projects/seabios/configs/vgabios/install diff --git a/projects/seabios/seabios b/projects/seabios/seabios index 0819e1ed..6fb21bee 100755 --- a/projects/seabios/seabios +++ b/projects/seabios/seabios @@ -76,9 +76,9 @@ build() { make -C "${sources_path}" -j"${TASKS}" - if [[ "${target}" == 'txtmode' ]]; then + if [[ "${target}" == 'bios' ]]; then cp "${sources_path}/out/bios.bin.elf" "${build_path}" - elif [[ "${target}" == 'vga' ]]; then + elif [[ "${target}" == 'vgabios' ]]; then cp "${sources_path}/out/vgabios.bin" "${build_path}" fi |