lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

platforms.nix: Remove IntegratorCP and Versatile

These ARM boards are very old and quite likely used only for booting in
QEMU emulation. I'll focus on making the multiplatform image easy to
boot in QEMU instead.

-74
-74
pkgs/top-level/platforms.nix
··· 303 303 #kernelHeadersBaseConfig = "guruplug_defconfig"; 304 304 }; 305 305 306 - versatileARM = { 307 - name = "versatileARM"; 308 - kernelMajor = "2.6"; 309 - kernelHeadersBaseConfig = "versatile_defconfig"; 310 - kernelBaseConfig = "versatile_defconfig"; 311 - kernelArch = "arm"; 312 - kernelAutoModules = false; 313 - kernelTarget = "zImage"; 314 - kernelExtraConfig = 315 - '' 316 - MMC_ARMMMCI y 317 - #MMC_SDHCI y 318 - SERIO_AMBAKMI y 319 - 320 - AEABI y 321 - RTC_CLASS y 322 - RTC_DRV_PL031 y 323 - PCI y 324 - SCSI y 325 - SCSI_DMA y 326 - SCSI_ATA y 327 - BLK_DEV_SD y 328 - BLK_DEV_SR y 329 - SCSI_SYM53C8XX_2 y 330 - 331 - TMPFS y 332 - IPV6 m 333 - REISERFS_FS m 334 - EXT4_FS m 335 - 336 - IP_PNP y 337 - IP_PNP_DHCP y 338 - IP_PNP_BOOTP y 339 - ROOT_NFS y 340 - ''; 341 - uboot = null; 342 - }; 343 - 344 - integratorCP = { 345 - name = "integratorCP"; 346 - kernelMajor = "2.6"; 347 - kernelHeadersBaseConfig = "integrator_defconfig"; 348 - kernelBaseConfig = "integrator_defconfig"; 349 - kernelArch = "arm"; 350 - kernelAutoModules = false; 351 - kernelTarget = "zImage"; 352 - kernelExtraConfig = 353 - '' 354 - # needed for qemu integrator/cp 355 - SERIAL_AMBA_PL011 y 356 - SERIAL_AMBA_PL011_CONSOLE y 357 - SERIAL_AMBA_PL010 n 358 - SERIAL_AMBA_PL010_CONSOLE n 359 - 360 - MMC_ARMMMCI y 361 - MMC_SDHCI y 362 - SERIO_AMBAKMI y 363 - 364 - CPU_ARM926T y 365 - ARCH_INTEGRATOR_CP y 366 - VGA_CONSOLE n 367 - AEABI y 368 - ''; 369 - uboot = null; 370 - ubootConfig = "integratorcp_config"; 371 - }; 372 - 373 - integratorCPuboot = integratorCP // { 374 - name = "integratorCPuboot"; 375 - kernelTarget = "uImage"; 376 - uboot = "upstream"; 377 - ubootConfig = "integratorcp_config"; 378 - }; 379 - 380 306 fuloong2f_n32 = { 381 307 name = "fuloong2f_n32"; 382 308 kernelMajor = "2.6";