about summary refs log tree commit diff stats
path: root/gen_linux_iso
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-01 19:38:50 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-01 19:40:28 -0800
commitf4bef91bd97d7dee60a7718df7b77f8e24b24846 (patch)
tree9c91a254851e5335c891e8b224fdc70d54c84795 /gen_linux_iso
parent65409d2312e702a48d3cf5b32479d25266bda3c3 (diff)
downloadmu-f4bef91bd97d7dee60a7718df7b77f8e24b24846.tar.gz
5859
Move script to create a Linux-based boot image into a sub-directory.
Diffstat (limited to 'gen_linux_iso')
-rwxr-xr-xgen_linux_iso62
1 files changed, 0 insertions, 62 deletions
diff --git a/gen_linux_iso b/gen_linux_iso
deleted file mode 100755
index 6a3d6b10..00000000
--- a/gen_linux_iso
+++ /dev/null
@@ -1,62 +0,0 @@
-#!/bin/sh
-# Build one or more .subx files into an ELF binary, and package it up into a
-# bootable ISO image with a Linux kernel.
-#
-# Must be run on Linux.
-#
-# Dependencies:
-#   apt install build-essential flex bison wget libelf-dev libssl-dev xorriso
-#
-# Based on http://minimal.linux-bg.org (GPLv3)
-
-set -e
-
-if [ $# -eq 0 ]
-then
-  echo "Usage: `basename $0` file.subx ..."
-  exit 1
-fi
-
-echo "=== building SubX binary"
-./translate_subx $*
-mv a.elf init
-chmod +x init
-
-echo "=== constructing initramfs out of SubX binary"
-rm -rf tmp_linux/isoimage
-mkdir -p tmp_linux/isoimage/boot
-echo init | cpio -R root:root -H newc -o | xz -9 --check=none > tmp_linux/isoimage/boot/rootfs.xz
-
-if [ ! -d kernel.linux ]
-then
-  echo "=== cloning linux kernel"
-  git clone https://github.com/akkartik/kernel kernel.linux
-fi
-
-echo "=== building linux kernel"
-( cd kernel.linux
-  make bzImage -j $(grep ^processor /proc/cpuinfo | wc -l)
-)
-cp *.linux/arch/x86/boot/bzImage tmp_linux/isoimage/boot/kernel.xz
-
-echo "=== downloading syslinux"
-test -f tmp_linux/syslinux-6.03.tar.xz  ||  wget https://kernel.org/pub/linux/utils/boot/syslinux/syslinux-6.03.tar.xz -P tmp_linux
-echo "=== unpacking syslinux"
-tar xf tmp_linux/syslinux-*.tar.xz -C tmp_linux
-
-mkdir -p tmp_linux/isoimage/boot/syslinux
-cp syslinux.cfg \
-   tmp_linux/syslinux-*/bios/core/isolinux.bin \
-   tmp_linux/syslinux-*/bios/com32/elflink/ldlinux/ldlinux.c32 \
-   tmp_linux/isoimage/boot/syslinux
-
-echo "=== generating mu_linux.iso"
-# 'hybrid' ISO can also be used on non-optical media such as a disk or USB stick
-xorriso -as mkisofs \
-  -isohybrid-mbr tmp_linux/syslinux-*/bios/mbr/isohdpfx.bin \
-  -c boot/syslinux/boot.cat \
-  -b boot/syslinux/isolinux.bin \
-    -no-emul-boot \
-    -boot-load-size 4 \
-    -boot-info-table \
-  tmp_linux/isoimage -o mu_linux.iso
'#n211'>211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390